tooluniverse 0.2.0__py3-none-any.whl → 1.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tooluniverse might be problematic. Click here for more details.

Files changed (186) hide show
  1. tooluniverse/__init__.py +340 -4
  2. tooluniverse/admetai_tool.py +84 -0
  3. tooluniverse/agentic_tool.py +563 -0
  4. tooluniverse/alphafold_tool.py +96 -0
  5. tooluniverse/base_tool.py +129 -6
  6. tooluniverse/boltz_tool.py +207 -0
  7. tooluniverse/chem_tool.py +192 -0
  8. tooluniverse/compose_scripts/__init__.py +1 -0
  9. tooluniverse/compose_scripts/biomarker_discovery.py +293 -0
  10. tooluniverse/compose_scripts/comprehensive_drug_discovery.py +186 -0
  11. tooluniverse/compose_scripts/drug_safety_analyzer.py +89 -0
  12. tooluniverse/compose_scripts/literature_tool.py +34 -0
  13. tooluniverse/compose_scripts/output_summarizer.py +279 -0
  14. tooluniverse/compose_scripts/tool_description_optimizer.py +681 -0
  15. tooluniverse/compose_scripts/tool_discover.py +705 -0
  16. tooluniverse/compose_scripts/tool_graph_composer.py +448 -0
  17. tooluniverse/compose_tool.py +371 -0
  18. tooluniverse/ctg_tool.py +1002 -0
  19. tooluniverse/custom_tool.py +81 -0
  20. tooluniverse/dailymed_tool.py +108 -0
  21. tooluniverse/data/admetai_tools.json +155 -0
  22. tooluniverse/data/adverse_event_tools.json +108 -0
  23. tooluniverse/data/agentic_tools.json +1156 -0
  24. tooluniverse/data/alphafold_tools.json +87 -0
  25. tooluniverse/data/boltz_tools.json +9 -0
  26. tooluniverse/data/chembl_tools.json +16 -0
  27. tooluniverse/data/clinicaltrials_gov_tools.json +326 -0
  28. tooluniverse/data/compose_tools.json +202 -0
  29. tooluniverse/data/dailymed_tools.json +70 -0
  30. tooluniverse/data/dataset_tools.json +646 -0
  31. tooluniverse/data/disease_target_score_tools.json +712 -0
  32. tooluniverse/data/efo_tools.json +17 -0
  33. tooluniverse/data/embedding_tools.json +319 -0
  34. tooluniverse/data/enrichr_tools.json +31 -0
  35. tooluniverse/data/europe_pmc_tools.json +22 -0
  36. tooluniverse/data/expert_feedback_tools.json +10 -0
  37. tooluniverse/data/fda_drug_adverse_event_tools.json +491 -0
  38. tooluniverse/data/fda_drug_labeling_tools.json +1 -1
  39. tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py +76929 -148860
  40. tooluniverse/data/finder_tools.json +209 -0
  41. tooluniverse/data/gene_ontology_tools.json +113 -0
  42. tooluniverse/data/gwas_tools.json +1082 -0
  43. tooluniverse/data/hpa_tools.json +333 -0
  44. tooluniverse/data/humanbase_tools.json +47 -0
  45. tooluniverse/data/idmap_tools.json +74 -0
  46. tooluniverse/data/mcp_client_tools_example.json +113 -0
  47. tooluniverse/data/mcpautoloadertool_defaults.json +28 -0
  48. tooluniverse/data/medlineplus_tools.json +141 -0
  49. tooluniverse/data/monarch_tools.json +1 -1
  50. tooluniverse/data/openalex_tools.json +36 -0
  51. tooluniverse/data/opentarget_tools.json +1 -1
  52. tooluniverse/data/output_summarization_tools.json +101 -0
  53. tooluniverse/data/packages/bioinformatics_core_tools.json +1756 -0
  54. tooluniverse/data/packages/categorized_tools.txt +206 -0
  55. tooluniverse/data/packages/cheminformatics_tools.json +347 -0
  56. tooluniverse/data/packages/earth_sciences_tools.json +74 -0
  57. tooluniverse/data/packages/genomics_tools.json +776 -0
  58. tooluniverse/data/packages/image_processing_tools.json +38 -0
  59. tooluniverse/data/packages/machine_learning_tools.json +789 -0
  60. tooluniverse/data/packages/neuroscience_tools.json +62 -0
  61. tooluniverse/data/packages/original_tools.txt +0 -0
  62. tooluniverse/data/packages/physics_astronomy_tools.json +62 -0
  63. tooluniverse/data/packages/scientific_computing_tools.json +560 -0
  64. tooluniverse/data/packages/single_cell_tools.json +453 -0
  65. tooluniverse/data/packages/structural_biology_tools.json +396 -0
  66. tooluniverse/data/packages/visualization_tools.json +399 -0
  67. tooluniverse/data/pubchem_tools.json +215 -0
  68. tooluniverse/data/pubtator_tools.json +68 -0
  69. tooluniverse/data/rcsb_pdb_tools.json +1332 -0
  70. tooluniverse/data/reactome_tools.json +19 -0
  71. tooluniverse/data/semantic_scholar_tools.json +26 -0
  72. tooluniverse/data/special_tools.json +2 -25
  73. tooluniverse/data/tool_composition_tools.json +88 -0
  74. tooluniverse/data/toolfinderkeyword_defaults.json +34 -0
  75. tooluniverse/data/txagent_client_tools.json +9 -0
  76. tooluniverse/data/uniprot_tools.json +211 -0
  77. tooluniverse/data/url_fetch_tools.json +94 -0
  78. tooluniverse/data/uspto_downloader_tools.json +9 -0
  79. tooluniverse/data/uspto_tools.json +811 -0
  80. tooluniverse/data/xml_tools.json +3275 -0
  81. tooluniverse/dataset_tool.py +296 -0
  82. tooluniverse/default_config.py +165 -0
  83. tooluniverse/efo_tool.py +42 -0
  84. tooluniverse/embedding_database.py +630 -0
  85. tooluniverse/embedding_sync.py +396 -0
  86. tooluniverse/enrichr_tool.py +266 -0
  87. tooluniverse/europe_pmc_tool.py +52 -0
  88. tooluniverse/execute_function.py +1775 -95
  89. tooluniverse/extended_hooks.py +444 -0
  90. tooluniverse/gene_ontology_tool.py +194 -0
  91. tooluniverse/graphql_tool.py +158 -36
  92. tooluniverse/gwas_tool.py +358 -0
  93. tooluniverse/hpa_tool.py +1645 -0
  94. tooluniverse/humanbase_tool.py +389 -0
  95. tooluniverse/logging_config.py +254 -0
  96. tooluniverse/mcp_client_tool.py +764 -0
  97. tooluniverse/mcp_integration.py +413 -0
  98. tooluniverse/mcp_tool_registry.py +925 -0
  99. tooluniverse/medlineplus_tool.py +337 -0
  100. tooluniverse/openalex_tool.py +228 -0
  101. tooluniverse/openfda_adv_tool.py +283 -0
  102. tooluniverse/openfda_tool.py +393 -160
  103. tooluniverse/output_hook.py +1122 -0
  104. tooluniverse/package_tool.py +195 -0
  105. tooluniverse/pubchem_tool.py +158 -0
  106. tooluniverse/pubtator_tool.py +168 -0
  107. tooluniverse/rcsb_pdb_tool.py +38 -0
  108. tooluniverse/reactome_tool.py +108 -0
  109. tooluniverse/remote/boltz/boltz_mcp_server.py +50 -0
  110. tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +442 -0
  111. tooluniverse/remote/expert_feedback/human_expert_mcp_tools.py +2013 -0
  112. tooluniverse/remote/expert_feedback/simple_test.py +23 -0
  113. tooluniverse/remote/expert_feedback/start_web_interface.py +188 -0
  114. tooluniverse/remote/expert_feedback/web_only_interface.py +0 -0
  115. tooluniverse/remote/immune_compass/compass_tool.py +327 -0
  116. tooluniverse/remote/pinnacle/pinnacle_tool.py +328 -0
  117. tooluniverse/remote/transcriptformer/transcriptformer_tool.py +586 -0
  118. tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +61 -0
  119. tooluniverse/remote/uspto_downloader/uspto_downloader_tool.py +120 -0
  120. tooluniverse/remote_tool.py +99 -0
  121. tooluniverse/restful_tool.py +53 -30
  122. tooluniverse/scripts/generate_tool_graph.py +408 -0
  123. tooluniverse/scripts/visualize_tool_graph.py +829 -0
  124. tooluniverse/semantic_scholar_tool.py +62 -0
  125. tooluniverse/smcp.py +2452 -0
  126. tooluniverse/smcp_server.py +975 -0
  127. tooluniverse/test/mcp_server_test.py +0 -0
  128. tooluniverse/test/test_admetai_tool.py +370 -0
  129. tooluniverse/test/test_agentic_tool.py +129 -0
  130. tooluniverse/test/test_alphafold_tool.py +71 -0
  131. tooluniverse/test/test_chem_tool.py +37 -0
  132. tooluniverse/test/test_compose_lieraturereview.py +63 -0
  133. tooluniverse/test/test_compose_tool.py +448 -0
  134. tooluniverse/test/test_dailymed.py +69 -0
  135. tooluniverse/test/test_dataset_tool.py +200 -0
  136. tooluniverse/test/test_disease_target_score.py +56 -0
  137. tooluniverse/test/test_drugbank_filter_examples.py +179 -0
  138. tooluniverse/test/test_efo.py +31 -0
  139. tooluniverse/test/test_enrichr_tool.py +21 -0
  140. tooluniverse/test/test_europe_pmc_tool.py +20 -0
  141. tooluniverse/test/test_fda_adv.py +95 -0
  142. tooluniverse/test/test_fda_drug_labeling.py +91 -0
  143. tooluniverse/test/test_gene_ontology_tools.py +66 -0
  144. tooluniverse/test/test_gwas_tool.py +139 -0
  145. tooluniverse/test/test_hpa.py +625 -0
  146. tooluniverse/test/test_humanbase_tool.py +20 -0
  147. tooluniverse/test/test_idmap_tools.py +61 -0
  148. tooluniverse/test/test_mcp_server.py +211 -0
  149. tooluniverse/test/test_mcp_tool.py +247 -0
  150. tooluniverse/test/test_medlineplus.py +220 -0
  151. tooluniverse/test/test_openalex_tool.py +32 -0
  152. tooluniverse/test/test_opentargets.py +28 -0
  153. tooluniverse/test/test_pubchem_tool.py +116 -0
  154. tooluniverse/test/test_pubtator_tool.py +37 -0
  155. tooluniverse/test/test_rcsb_pdb_tool.py +86 -0
  156. tooluniverse/test/test_reactome.py +54 -0
  157. tooluniverse/test/test_semantic_scholar_tool.py +24 -0
  158. tooluniverse/test/test_software_tools.py +147 -0
  159. tooluniverse/test/test_tool_description_optimizer.py +49 -0
  160. tooluniverse/test/test_tool_finder.py +26 -0
  161. tooluniverse/test/test_tool_finder_llm.py +252 -0
  162. tooluniverse/test/test_tools_find.py +195 -0
  163. tooluniverse/test/test_uniprot_tools.py +74 -0
  164. tooluniverse/test/test_uspto_tool.py +72 -0
  165. tooluniverse/test/test_xml_tool.py +113 -0
  166. tooluniverse/tool_finder_embedding.py +267 -0
  167. tooluniverse/tool_finder_keyword.py +693 -0
  168. tooluniverse/tool_finder_llm.py +699 -0
  169. tooluniverse/tool_graph_web_ui.py +955 -0
  170. tooluniverse/tool_registry.py +416 -0
  171. tooluniverse/uniprot_tool.py +155 -0
  172. tooluniverse/url_tool.py +253 -0
  173. tooluniverse/uspto_tool.py +240 -0
  174. tooluniverse/utils.py +369 -41
  175. tooluniverse/xml_tool.py +369 -0
  176. tooluniverse-1.0.1.dist-info/METADATA +387 -0
  177. tooluniverse-1.0.1.dist-info/RECORD +182 -0
  178. tooluniverse-1.0.1.dist-info/entry_points.txt +9 -0
  179. tooluniverse/generate_mcp_tools.py +0 -113
  180. tooluniverse/mcp_server.py +0 -3340
  181. tooluniverse-0.2.0.dist-info/METADATA +0 -139
  182. tooluniverse-0.2.0.dist-info/RECORD +0 -21
  183. tooluniverse-0.2.0.dist-info/entry_points.txt +0 -4
  184. {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/WHEEL +0 -0
  185. {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/licenses/LICENSE +0 -0
  186. {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,17 @@
1
+ [
2
+ {
3
+ "type": "EFOTool",
4
+ "name": "OSL_get_efo_id_by_disease_name",
5
+ "description": "Tool to lookup Experimental Factor Ontology (EFO) IDs for diseases via the EMBL-EBI OLS API.",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "disease": {
10
+ "type": "string",
11
+ "description": "Search query for diseases. Provide the disease name to lookup the corresponding EFO ID."
12
+ }
13
+ },
14
+ "required": ["disease"]
15
+ }
16
+ }
17
+ ]
@@ -0,0 +1,319 @@
1
+ [
2
+ {
3
+ "type": "EmbeddingDatabase",
4
+ "name": "embedding_database_create",
5
+ "description": "Create a new embedding database from a collection of documents. Generates embeddings using OpenAI or Azure OpenAI models and stores them in a searchable database with FAISS vector index and SQLite metadata storage.",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "action": {
10
+ "type": "string",
11
+ "const": "create_from_docs",
12
+ "description": "Action to create database from documents"
13
+ },
14
+ "database_name": {
15
+ "type": "string",
16
+ "description": "Name for the new database (must be unique)"
17
+ },
18
+ "documents": {
19
+ "type": "array",
20
+ "description": "List of document texts to embed and store",
21
+ "items": {"type": "string"},
22
+ "minItems": 1,
23
+ "maxItems": 10000
24
+ },
25
+ "metadata": {
26
+ "type": "array",
27
+ "description": "Optional metadata for each document (same length as documents)",
28
+ "items": {"type": "object"},
29
+ "default": []
30
+ },
31
+ "model": {
32
+ "type": "string",
33
+ "description": "OpenAI/Azure OpenAI embedding model to use",
34
+ "enum": ["text-embedding-3-small", "text-embedding-3-large", "text-embedding-ada-002"],
35
+ "default": "text-embedding-3-small"
36
+ },
37
+ "description": {
38
+ "type": "string",
39
+ "description": "Optional description for the database",
40
+ "default": ""
41
+ }
42
+ },
43
+ "required": ["database_name", "documents"]
44
+ },
45
+ "required_api_keys": [],
46
+ "optional_api_keys": ["OPENAI_API_KEY", "AZURE_OPENAI_API_KEY"],
47
+ "configs": {
48
+ "openai_config": {
49
+ "api_key": "${OPENAI_API_KEY}",
50
+ "base_url": "${OPENAI_BASE_URL:https://api.openai.com/v1}",
51
+ "timeout": 60,
52
+ "max_retries": 3
53
+ },
54
+ "azure_openai_config": {
55
+ "api_key": "${AZURE_OPENAI_API_KEY}",
56
+ "azure_endpoint": "${AZURE_OPENAI_ENDPOINT}",
57
+ "api_version": "${AZURE_OPENAI_API_VERSION:2024-02-01}",
58
+ "timeout": 120,
59
+ "max_retries": 5
60
+ },
61
+ "storage_config": {
62
+ "data_dir": "./data/embeddings",
63
+ "faiss_index_type": "IndexFlatIP"
64
+ }
65
+ }
66
+ },
67
+ {
68
+ "type": "EmbeddingDatabase",
69
+ "name": "embedding_database_add",
70
+ "description": "Add new documents to an existing embedding database. Generates embeddings for new documents using the same model as the original database and appends them to the existing FAISS index.",
71
+ "parameter": {
72
+ "type": "object",
73
+ "properties": {
74
+ "action": {
75
+ "type": "string",
76
+ "const": "add_docs",
77
+ "description": "Action to add documents to existing database"
78
+ },
79
+ "database_name": {
80
+ "type": "string",
81
+ "description": "Name of the existing database to add documents to"
82
+ },
83
+ "documents": {
84
+ "type": "array",
85
+ "description": "List of new document texts to embed and add",
86
+ "items": {"type": "string"},
87
+ "minItems": 1,
88
+ "maxItems": 10000
89
+ },
90
+ "metadata": {
91
+ "type": "array",
92
+ "description": "Optional metadata for each new document (same length as documents)",
93
+ "items": {"type": "object"},
94
+ "default": []
95
+ }
96
+ },
97
+ "required": ["database_name", "documents"]
98
+ },
99
+ "required_api_keys": [],
100
+ "optional_api_keys": ["OPENAI_API_KEY", "AZURE_OPENAI_API_KEY"],
101
+ "configs": {
102
+ "openai_config": {
103
+ "api_key": "${OPENAI_API_KEY}",
104
+ "base_url": "${OPENAI_BASE_URL:https://api.openai.com/v1}",
105
+ "timeout": 60,
106
+ "max_retries": 3
107
+ },
108
+ "azure_openai_config": {
109
+ "api_key": "${AZURE_OPENAI_API_KEY}",
110
+ "azure_endpoint": "${AZURE_OPENAI_ENDPOINT}",
111
+ "api_version": "${AZURE_OPENAI_API_VERSION:2024-02-01}",
112
+ "timeout": 120,
113
+ "max_retries": 5
114
+ },
115
+ "storage_config": {
116
+ "data_dir": "./data/embeddings",
117
+ "faiss_index_type": "IndexFlatIP"
118
+ }
119
+ }
120
+ },
121
+ {
122
+ "type": "EmbeddingDatabase",
123
+ "name": "embedding_database_search",
124
+ "description": "Search for semantically similar documents in an embedding database. Uses OpenAI embeddings to convert query text to vectors and performs similarity search using FAISS with optional metadata filtering.",
125
+ "parameter": {
126
+ "type": "object",
127
+ "properties": {
128
+ "action": {
129
+ "type": "string",
130
+ "const": "search",
131
+ "description": "Action to search the database"
132
+ },
133
+ "database_name": {
134
+ "type": "string",
135
+ "description": "Name of the database to search in"
136
+ },
137
+ "query": {
138
+ "type": "string",
139
+ "description": "Query text to find similar documents for"
140
+ },
141
+ "top_k": {
142
+ "type": "integer",
143
+ "description": "Number of most similar documents to return",
144
+ "minimum": 1,
145
+ "maximum": 1000,
146
+ "default": 5
147
+ },
148
+ "filters": {
149
+ "type": "object",
150
+ "description": "Optional metadata filters to apply to search results",
151
+ "additionalProperties": true,
152
+ "default": {}
153
+ }
154
+ },
155
+ "required": ["database_name", "query"]
156
+ },
157
+ "required_api_keys": [],
158
+ "optional_api_keys": ["OPENAI_API_KEY", "AZURE_OPENAI_API_KEY"],
159
+ "configs": {
160
+ "openai_config": {
161
+ "api_key": "${OPENAI_API_KEY}",
162
+ "base_url": "${OPENAI_BASE_URL:https://api.openai.com/v1}",
163
+ "timeout": 60,
164
+ "max_retries": 3
165
+ },
166
+ "azure_openai_config": {
167
+ "api_key": "${AZURE_OPENAI_API_KEY}",
168
+ "azure_endpoint": "${AZURE_OPENAI_ENDPOINT}",
169
+ "api_version": "${AZURE_OPENAI_API_VERSION:2024-02-01}",
170
+ "timeout": 120,
171
+ "max_retries": 5
172
+ },
173
+ "storage_config": {
174
+ "data_dir": "./data/embeddings",
175
+ "faiss_index_type": "IndexFlatIP"
176
+ }
177
+ }
178
+ },
179
+ {
180
+ "type": "EmbeddingDatabase",
181
+ "name": "embedding_database_load",
182
+ "description": "Load an existing embedding database from a local path or external source. Allows importing databases created elsewhere or backed up databases into the current ToolUniverse instance.",
183
+ "parameter": {
184
+ "type": "object",
185
+ "properties": {
186
+ "action": {
187
+ "type": "string",
188
+ "const": "load_database",
189
+ "description": "Action to load database from external source"
190
+ },
191
+ "database_path": {
192
+ "type": "string",
193
+ "description": "Path to the existing database directory or file"
194
+ },
195
+ "database_name": {
196
+ "type": "string",
197
+ "description": "Local name to assign to the loaded database"
198
+ },
199
+ "overwrite": {
200
+ "type": "boolean",
201
+ "description": "Whether to overwrite existing database with same name",
202
+ "default": false
203
+ }
204
+ },
205
+ "required": ["database_path", "database_name"]
206
+ },
207
+ "required_api_keys": [],
208
+ "optional_api_keys": ["OPENAI_API_KEY", "AZURE_OPENAI_API_KEY"],
209
+ "configs": {
210
+ "openai_config": {
211
+ "api_key": "${OPENAI_API_KEY}",
212
+ "base_url": "${OPENAI_BASE_URL:https://api.openai.com/v1}",
213
+ "timeout": 60,
214
+ "max_retries": 3
215
+ },
216
+ "azure_openai_config": {
217
+ "api_key": "${AZURE_OPENAI_API_KEY}",
218
+ "azure_endpoint": "${AZURE_OPENAI_ENDPOINT}",
219
+ "api_version": "${AZURE_OPENAI_API_VERSION:2024-02-01}",
220
+ "timeout": 120,
221
+ "max_retries": 5
222
+ },
223
+ "storage_config": {
224
+ "data_dir": "./data/embeddings",
225
+ "faiss_index_type": "IndexFlatIP"
226
+ }
227
+ }
228
+ },
229
+ {
230
+ "type": "EmbeddingSync",
231
+ "name": "embedding_sync_upload",
232
+ "description": "Upload a local embedding database to HuggingFace Hub for sharing and collaboration. Creates a dataset repository with the database files and metadata.",
233
+ "parameter": {
234
+ "type": "object",
235
+ "properties": {
236
+ "action": {
237
+ "type": "string",
238
+ "const": "upload",
239
+ "description": "Action to upload database to HuggingFace"
240
+ },
241
+ "database_name": {
242
+ "type": "string",
243
+ "description": "Name of the local database to upload"
244
+ },
245
+ "repository": {
246
+ "type": "string",
247
+ "description": "HuggingFace repository name (format: username/repo-name)"
248
+ },
249
+ "description": {
250
+ "type": "string",
251
+ "description": "Description for the HuggingFace dataset",
252
+ "default": ""
253
+ },
254
+ "private": {
255
+ "type": "boolean",
256
+ "description": "Whether to create a private repository",
257
+ "default": false
258
+ },
259
+ "commit_message": {
260
+ "type": "string",
261
+ "description": "Commit message for the upload",
262
+ "default": "Upload embedding database"
263
+ }
264
+ },
265
+ "required": ["database_name", "repository"]
266
+ },
267
+ "required_api_keys": ["HF_TOKEN"],
268
+ "configs": {
269
+ "huggingface_config": {
270
+ "token": "${HF_TOKEN}",
271
+ "endpoint": "https://huggingface.co"
272
+ },
273
+ "storage_config": {
274
+ "data_dir": "./data/embeddings",
275
+ "export_dir": "./exports"
276
+ }
277
+ }
278
+ },
279
+ {
280
+ "type": "EmbeddingSync",
281
+ "name": "embedding_sync_download",
282
+ "description": "Download an embedding database from HuggingFace Hub to local storage. Allows accessing databases shared by others or your own backups.",
283
+ "parameter": {
284
+ "type": "object",
285
+ "properties": {
286
+ "action": {
287
+ "type": "string",
288
+ "const": "download",
289
+ "description": "Action to download database from HuggingFace"
290
+ },
291
+ "repository": {
292
+ "type": "string",
293
+ "description": "HuggingFace repository to download from (format: username/repo-name)"
294
+ },
295
+ "local_name": {
296
+ "type": "string",
297
+ "description": "Local name for the downloaded database (optional, defaults to repo name)"
298
+ },
299
+ "overwrite": {
300
+ "type": "boolean",
301
+ "description": "Whether to overwrite existing local database with same name",
302
+ "default": false
303
+ }
304
+ },
305
+ "required": ["repository"]
306
+ },
307
+ "required_api_keys": ["HF_TOKEN"],
308
+ "configs": {
309
+ "huggingface_config": {
310
+ "token": "${HF_TOKEN}",
311
+ "endpoint": "https://huggingface.co"
312
+ },
313
+ "storage_config": {
314
+ "data_dir": "./data/embeddings",
315
+ "export_dir": "./exports"
316
+ }
317
+ }
318
+ }
319
+ ]
@@ -0,0 +1,31 @@
1
+ [
2
+ {
3
+ "type": "EnrichrTool",
4
+ "name": "enrichr_gene_enrichment_analysis",
5
+ "description": "Perform gene enrichment analysis using Enrichr to find biological pathways, processes, and molecular functions associated with a list of genes. Returns connectivity paths between genes and enrichment terms.",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "gene_list": {
10
+ "type": "array",
11
+ "items": {"type": "string"},
12
+ "description": "List of gene names or symbols to analyze. At least 2 genes are required for path ranking analysis.",
13
+ "minItems": 2
14
+ },
15
+ "libs": {
16
+ "type": "array",
17
+ "items": {"type": "string"},
18
+ "description": "List of enrichment libraries to use for analysis.",
19
+ "default": [
20
+ "WikiPathways_2024_Human",
21
+ "Reactome_Pathways_2024",
22
+ "MSigDB_Hallmark_2020",
23
+ "GO_Molecular_Function_2023",
24
+ "GO_Biological_Process_2023"
25
+ ]
26
+ }
27
+ },
28
+ "required": ["gene_list"]
29
+ }
30
+ }
31
+ ]
@@ -0,0 +1,22 @@
1
+ [
2
+ {
3
+ "type": "EuropePMCTool",
4
+ "name": "EuropePMC_search_articles",
5
+ "description": "Search for articles on Europe PMC including abstracts. The tool queries the Europe PMC web service using provided keywords and returns articles with details such as title, abstract, journal, publication year, and a URL to the full article.",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "query": {
10
+ "type": "string",
11
+ "description": "Search query for Europe PMC. Use keywords separated by spaces to refine your search."
12
+ },
13
+ "limit": {
14
+ "type": "integer",
15
+ "description": "Number of articles to return. This sets the maximum number of articles retrieved from Europe PMC.",
16
+ "default": 5
17
+ }
18
+ },
19
+ "required": ["query"]
20
+ }
21
+ }
22
+ ]
@@ -0,0 +1,10 @@
1
+ [
2
+ {
3
+ "name": "mcp_auto_loader_expert_feedback",
4
+ "description": "Automatically discover and load all tools from Human Expert Feedback MCP Server. Provides tools for consulting human experts on complex medical decisions.",
5
+ "type": "MCPAutoLoaderTool",
6
+ "tool_prefix": "expert_",
7
+ "server_url": "http://${EXPERT_FEEDBACK_MCP_SERVER_URL}/mcp",
8
+ "required_api_keys": ["EXPERT_FEEDBACK_MCP_SERVER_URL"]
9
+ }
10
+ ]