-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mcp_config.json
More file actions
59 lines (55 loc) · 1.39 KB
/
.mcp_config.json
File metadata and controls
59 lines (55 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "chemsearch",
"description": "ChemSearch MCP Server - Query genomes for chemical synthetic potential",
"version": "1.0.0",
"author": "Semidán Robaina Estévez",
"license": "GPL-3.0",
"server": {
"command": "python",
"args": ["mcp_server.py"],
"env": {
"PYTHONPATH": "./src"
}
},
"capabilities": {
"resources": {
"provides": ["chemsearch://database-info"]
},
"tools": {
"provides": [
"search_compounds_by_smiles",
"search_compounds_by_chebi_ids",
"get_database_info"
]
}
},
"data_requirements": {
"description": "ChemSearch requires preprocessed biochemical databases",
"required_files": [
"tests/data/rhea-compounds.tsv",
"tests/data/rhea_fingerprints.h5"
],
"optional_files": [
"data/compound_ec_database_plus_rhea.tsv",
"data/genomes_ec/*.tsv"
]
},
"usage_examples": [
{
"description": "Search for organisms that can synthesize caffeine",
"tool": "search_compounds_by_smiles",
"parameters": {
"smiles": ["CN1C=NC2=C1C(=O)N(C(=O)N2C)C"],
"threshold": 0.7
}
},
{
"description": "Find genomes with potential to produce glucose",
"tool": "search_compounds_by_chebi_ids",
"parameters": {
"chebi_ids": ["CHEBI:17634"],
"include_similar_structures": true
}
}
]
}