tooluniverse 0.2.0__py3-none-any.whl → 1.0.0__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 (190) 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/agentic_tools.json +1156 -0
  23. tooluniverse/data/alphafold_tools.json +87 -0
  24. tooluniverse/data/boltz_tools.json +9 -0
  25. tooluniverse/data/chembl_tools.json +16 -0
  26. tooluniverse/data/clait_tools.json +108 -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/software_tools.json +4954 -0
  66. tooluniverse/data/packages/structural_biology_tools.json +396 -0
  67. tooluniverse/data/packages/visualization_tools.json +399 -0
  68. tooluniverse/data/pubchem_tools.json +215 -0
  69. tooluniverse/data/pubtator_tools.json +68 -0
  70. tooluniverse/data/rcsb_pdb_tools.json +1332 -0
  71. tooluniverse/data/reactome_tools.json +19 -0
  72. tooluniverse/data/semantic_scholar_tools.json +26 -0
  73. tooluniverse/data/special_tools.json +2 -25
  74. tooluniverse/data/tool_composition_tools.json +88 -0
  75. tooluniverse/data/toolfinderkeyword_defaults.json +34 -0
  76. tooluniverse/data/txagent_client_tools.json +9 -0
  77. tooluniverse/data/uniprot_tools.json +211 -0
  78. tooluniverse/data/url_fetch_tools.json +94 -0
  79. tooluniverse/data/uspto_downloader_tools.json +9 -0
  80. tooluniverse/data/uspto_tools.json +811 -0
  81. tooluniverse/data/xml_tools.json +3275 -0
  82. tooluniverse/dataset_tool.py +296 -0
  83. tooluniverse/default_config.py +165 -0
  84. tooluniverse/efo_tool.py +42 -0
  85. tooluniverse/embedding_database.py +630 -0
  86. tooluniverse/embedding_sync.py +396 -0
  87. tooluniverse/enrichr_tool.py +266 -0
  88. tooluniverse/europe_pmc_tool.py +52 -0
  89. tooluniverse/execute_function.py +1775 -95
  90. tooluniverse/extended_hooks.py +444 -0
  91. tooluniverse/gene_ontology_tool.py +194 -0
  92. tooluniverse/graphql_tool.py +158 -36
  93. tooluniverse/gwas_tool.py +358 -0
  94. tooluniverse/hpa_tool.py +1645 -0
  95. tooluniverse/humanbase_tool.py +389 -0
  96. tooluniverse/logging_config.py +254 -0
  97. tooluniverse/mcp_client_tool.py +764 -0
  98. tooluniverse/mcp_integration.py +413 -0
  99. tooluniverse/mcp_tool_registry.py +925 -0
  100. tooluniverse/medlineplus_tool.py +337 -0
  101. tooluniverse/openalex_tool.py +228 -0
  102. tooluniverse/openfda_adv_tool.py +283 -0
  103. tooluniverse/openfda_tool.py +393 -160
  104. tooluniverse/output_hook.py +1122 -0
  105. tooluniverse/package_tool.py +195 -0
  106. tooluniverse/pubchem_tool.py +158 -0
  107. tooluniverse/pubtator_tool.py +168 -0
  108. tooluniverse/rcsb_pdb_tool.py +38 -0
  109. tooluniverse/reactome_tool.py +108 -0
  110. tooluniverse/remote/boltz/boltz_mcp_server.py +50 -0
  111. tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +442 -0
  112. tooluniverse/remote/expert_feedback/human_expert_mcp_tools.py +2013 -0
  113. tooluniverse/remote/expert_feedback/simple_test.py +23 -0
  114. tooluniverse/remote/expert_feedback/start_web_interface.py +188 -0
  115. tooluniverse/remote/expert_feedback/web_only_interface.py +0 -0
  116. tooluniverse/remote/expert_feedback_mcp/human_expert_mcp_server.py +1611 -0
  117. tooluniverse/remote/expert_feedback_mcp/simple_test.py +34 -0
  118. tooluniverse/remote/expert_feedback_mcp/start_web_interface.py +91 -0
  119. tooluniverse/remote/immune_compass/compass_tool.py +327 -0
  120. tooluniverse/remote/pinnacle/pinnacle_tool.py +328 -0
  121. tooluniverse/remote/transcriptformer/transcriptformer_tool.py +586 -0
  122. tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +61 -0
  123. tooluniverse/remote/uspto_downloader/uspto_downloader_tool.py +120 -0
  124. tooluniverse/remote_tool.py +99 -0
  125. tooluniverse/restful_tool.py +53 -30
  126. tooluniverse/scripts/generate_tool_graph.py +408 -0
  127. tooluniverse/scripts/visualize_tool_graph.py +829 -0
  128. tooluniverse/semantic_scholar_tool.py +62 -0
  129. tooluniverse/smcp.py +2452 -0
  130. tooluniverse/smcp_server.py +975 -0
  131. tooluniverse/test/mcp_server_test.py +0 -0
  132. tooluniverse/test/test_admetai_tool.py +370 -0
  133. tooluniverse/test/test_agentic_tool.py +129 -0
  134. tooluniverse/test/test_alphafold_tool.py +71 -0
  135. tooluniverse/test/test_chem_tool.py +37 -0
  136. tooluniverse/test/test_compose_lieraturereview.py +63 -0
  137. tooluniverse/test/test_compose_tool.py +448 -0
  138. tooluniverse/test/test_dailymed.py +69 -0
  139. tooluniverse/test/test_dataset_tool.py +200 -0
  140. tooluniverse/test/test_disease_target_score.py +56 -0
  141. tooluniverse/test/test_drugbank_filter_examples.py +179 -0
  142. tooluniverse/test/test_efo.py +31 -0
  143. tooluniverse/test/test_enrichr_tool.py +21 -0
  144. tooluniverse/test/test_europe_pmc_tool.py +20 -0
  145. tooluniverse/test/test_fda_adv.py +95 -0
  146. tooluniverse/test/test_fda_drug_labeling.py +91 -0
  147. tooluniverse/test/test_gene_ontology_tools.py +66 -0
  148. tooluniverse/test/test_gwas_tool.py +139 -0
  149. tooluniverse/test/test_hpa.py +625 -0
  150. tooluniverse/test/test_humanbase_tool.py +20 -0
  151. tooluniverse/test/test_idmap_tools.py +61 -0
  152. tooluniverse/test/test_mcp_server.py +211 -0
  153. tooluniverse/test/test_mcp_tool.py +247 -0
  154. tooluniverse/test/test_medlineplus.py +220 -0
  155. tooluniverse/test/test_openalex_tool.py +32 -0
  156. tooluniverse/test/test_opentargets.py +28 -0
  157. tooluniverse/test/test_pubchem_tool.py +116 -0
  158. tooluniverse/test/test_pubtator_tool.py +37 -0
  159. tooluniverse/test/test_rcsb_pdb_tool.py +86 -0
  160. tooluniverse/test/test_reactome.py +54 -0
  161. tooluniverse/test/test_semantic_scholar_tool.py +24 -0
  162. tooluniverse/test/test_software_tools.py +147 -0
  163. tooluniverse/test/test_tool_description_optimizer.py +49 -0
  164. tooluniverse/test/test_tool_finder.py +26 -0
  165. tooluniverse/test/test_tool_finder_llm.py +252 -0
  166. tooluniverse/test/test_tools_find.py +195 -0
  167. tooluniverse/test/test_uniprot_tools.py +74 -0
  168. tooluniverse/test/test_uspto_tool.py +72 -0
  169. tooluniverse/test/test_xml_tool.py +113 -0
  170. tooluniverse/tool_finder_embedding.py +267 -0
  171. tooluniverse/tool_finder_keyword.py +693 -0
  172. tooluniverse/tool_finder_llm.py +699 -0
  173. tooluniverse/tool_graph_web_ui.py +955 -0
  174. tooluniverse/tool_registry.py +416 -0
  175. tooluniverse/uniprot_tool.py +155 -0
  176. tooluniverse/url_tool.py +253 -0
  177. tooluniverse/uspto_tool.py +240 -0
  178. tooluniverse/utils.py +369 -41
  179. tooluniverse/xml_tool.py +369 -0
  180. tooluniverse-1.0.0.dist-info/METADATA +377 -0
  181. tooluniverse-1.0.0.dist-info/RECORD +186 -0
  182. tooluniverse-1.0.0.dist-info/entry_points.txt +9 -0
  183. tooluniverse/generate_mcp_tools.py +0 -113
  184. tooluniverse/mcp_server.py +0 -3340
  185. tooluniverse-0.2.0.dist-info/METADATA +0 -139
  186. tooluniverse-0.2.0.dist-info/RECORD +0 -21
  187. tooluniverse-0.2.0.dist-info/entry_points.txt +0 -4
  188. {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.0.dist-info}/WHEEL +0 -0
  189. {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.0.dist-info}/licenses/LICENSE +0 -0
  190. {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,377 @@
1
+ Metadata-Version: 2.4
2
+ Name: tooluniverse
3
+ Version: 1.0.0
4
+ Summary: A comprehensive collection of scientific tools for Agentic AI, offering integration with the ToolUniverse SDK and MCP Server to support advanced scientific workflows.
5
+ Author-email: Shanghua Gao <shanghuagao@gmail.com>
6
+ Project-URL: Homepage, https://github.com/mims-harvard/TxAgent
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: requests>=2.32.0
11
+ Requires-Dist: numpy>=2.2.0
12
+ Requires-Dist: graphql-core>=3.2.0
13
+ Requires-Dist: fastapi>=0.116.0
14
+ Requires-Dist: uvicorn>=0.35.0
15
+ Requires-Dist: pydantic>=2.11.0
16
+ Requires-Dist: epam.indigo>=1.34.0
17
+ Requires-Dist: networkx>=3.4.0
18
+ Requires-Dist: openai>=1.107.0
19
+ Requires-Dist: pyyaml>=6.0.0
20
+ Requires-Dist: google-genai>=1.36.0
21
+ Requires-Dist: mcp[cli]>=1.9.3
22
+ Requires-Dist: fastmcp>=2.12.0
23
+ Requires-Dist: xmltodict>=1.0.0
24
+ Requires-Dist: lxml>=6.0.0
25
+ Requires-Dist: huggingface_hub>=0.34.0
26
+ Requires-Dist: rcsb-api>=1.4.0
27
+ Requires-Dist: sentence-transformers>=5.1.0
28
+ Requires-Dist: fitz>=0.0.1.dev2
29
+ Requires-Dist: pandas>=2.2.3
30
+ Requires-Dist: admet-ai>=1.2.0
31
+ Requires-Dist: pdfplumber>=0.11.0
32
+ Requires-Dist: playwright>=1.55.0
33
+ Requires-Dist: faiss-cpu>=1.12.0
34
+ Requires-Dist: flask>=2.0.0
35
+ Requires-Dist: chemprop==1.6.1
36
+ Requires-Dist: aiohttp
37
+ Provides-Extra: dev
38
+ Requires-Dist: pytest>=6.0; extra == "dev"
39
+ Requires-Dist: pytest-cov>=2.0; extra == "dev"
40
+ Requires-Dist: black>=22.0; extra == "dev"
41
+ Requires-Dist: flake8>=4.0; extra == "dev"
42
+ Requires-Dist: pre-commit>=2.0; extra == "dev"
43
+ Provides-Extra: docs
44
+ Requires-Dist: sphinx>=4.0; extra == "docs"
45
+ Requires-Dist: sphinx-rtd-theme>=1.0; extra == "docs"
46
+ Requires-Dist: myst-parser>=0.18; extra == "docs"
47
+ Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
48
+ Requires-Dist: sphinx-copybutton>=0.5.0; extra == "docs"
49
+ Requires-Dist: sphinx-tabs>=3.2.0; extra == "docs"
50
+ Requires-Dist: sphinx-design>=0.3.0; extra == "docs"
51
+ Requires-Dist: sphinx-notfound-page>=0.8; extra == "docs"
52
+ Requires-Dist: sphinx-autodoc-typehints>=1.12.0; extra == "docs"
53
+ Provides-Extra: graph
54
+ Requires-Dist: flask>=2.0.0; extra == "graph"
55
+ Requires-Dist: matplotlib>=3.5.0; extra == "graph"
56
+ Requires-Dist: plotly>=5.0.0; extra == "graph"
57
+ Requires-Dist: scipy>=1.7.0; extra == "graph"
58
+ Requires-Dist: pydot>=1.4.0; extra == "graph"
59
+ Requires-Dist: pygraphviz>=1.7; extra == "graph"
60
+ Requires-Dist: jinja2>=3.0.0; extra == "graph"
61
+ Requires-Dist: werkzeug>=2.0.0; extra == "graph"
62
+ Provides-Extra: all
63
+ Requires-Dist: tooluniverse[dev,docs,graph]; extra == "all"
64
+ Dynamic: license-file
65
+
66
+ # ToolUniverse
67
+
68
+ [![ToolUniverse-PIP](https://img.shields.io/badge/Pip-ToolUniverse-blue)](https://pypi.org/project/tooluniverse/)
69
+ [![ToolUniverse](https://img.shields.io/badge/Code-ToolUniverse-purple)](https://github.com/mims-harvard/ToolUniverse)
70
+ [![Model context protocol (MCP)](https://img.shields.io/badge/Model_Context_Protocol_(MCP)_Supported-green)](README_USAGE.md#running-the-mcp-server)
71
+ [![Documentation](https://img.shields.io/badge/Documentation-Available-green)](https://zitniklab.hms.harvard.edu/bioagent/)
72
+ [![Web Service](https://img.shields.io/badge/Web_Service-aiscientist.tools-blue)](https://aiscientist.tools)
73
+
74
+ **Democratizing AI Scientists for Collaborative Discovery** 🌐 [Web Service](https://aiscientist.tools) | 📦 [PyPI](https://pypi.org/project/tooluniverse) | 📚 [Documentation](https://zitniklab.hms.harvard.edu/bioagent/)
75
+
76
+
77
+ ToolUniverse is an ecosystem for creating AI scientist systems from any open or closed large language model (LLM). It standardizes how LLMs identify and call tools, integrating more than **600 machine learning models, datasets, APIs, and scientific packages** for data analysis, knowledge retrieval, and experimental design.
78
+
79
+ ## What is ToolUniverse?
80
+
81
+ AI scientists are emerging computational systems that serve as collaborative partners in discovery. However, these systems remain difficult to build because they are bespoke, tied to rigid workflows, and lack shared environments that unify tools, data, and analysts into a common ecosystem.
82
+
83
+ ToolUniverse addresses this challenge by providing a standardized ecosystem that transforms any AI model into a powerful research scientist. By abstracting capabilities behind a unified interface, ToolUniverse wraps around any AI model (LLM, AI agent, or large reasoning model) and enables users to create and refine entirely custom AI research assistants without additional training or finetuning.
84
+
85
+ **Key Features:**
86
+
87
+ - **AI-Tool Interaction Protocol**: Standardized interface governing how AI scientists issue tool requests and receive results
88
+ - **Universal AI Model Support**: Works with any LLM, AI agent, or large reasoning model (GPT, Claude, Gemini, open models)
89
+ - **Find Tool & Call Tool Operations**: Maps natural-language descriptions to tool specifications and executes tools with structured results
90
+ - **Tool Composition & Workflows**: Chains tools for sequential or parallel execution in self-directed workflows
91
+ - **Continuous Expansion**: New tools can be registered locally or remotely without additional configuration
92
+
93
+ <!-- ![TxAgent](img/TxAgent_ToolUniverse.jpg) -->
94
+
95
+ ## 🚀 Quick Start
96
+
97
+ **Build your first AI scientist in 5 minutes:**
98
+
99
+ ```python
100
+ # 1. Install ToolUniverse
101
+ pip install tooluniverse
102
+
103
+ # 2. Create AI scientist system
104
+ from tooluniverse import ToolUniverse
105
+
106
+ tu = ToolUniverse()
107
+ tu.load_tools() # Load 600+ scientific tools
108
+
109
+ # 3. Use Find Tool operation to discover relevant tools
110
+ tools = tu.run({
111
+ "name": "Tool_Finder_Keyword",
112
+ "arguments": {"query": "disease target associations"}
113
+ })
114
+
115
+ # 4. Use Call Tool operation to execute selected tool
116
+ result = tu.run({
117
+ "name": "OpenTargets_get_associated_targets_by_disease_efoId",
118
+ "arguments": {"efoId": "EFO_0000249"} # Alzheimer's disease
119
+ })
120
+ ```
121
+
122
+ **Success!** Your AI scientist can now reason, experiment, and collaborate in discovery using the AI-tool interaction protocol.
123
+
124
+ → **Complete Quick Start Tutorial**: [Quick Start Tutorial](https://zitniklab.hms.harvard.edu/bioagent/quickstart.html)
125
+
126
+
127
+ ## 📦 Installation
128
+
129
+ ### Recommended Installation (uv)
130
+
131
+ ```bash
132
+ uv add tooluniverse
133
+ ```
134
+
135
+ ### Standard Installation (pip)
136
+
137
+ ```bash
138
+ pip install tooluniverse
139
+ ```
140
+
141
+
142
+ ### Development Installation
143
+
144
+ ```bash
145
+ git clone https://github.com/mims-harvard/ToolUniverse.git
146
+ cd ToolUniverse
147
+ uv sync # or pip install -e .[dev]
148
+ ```
149
+
150
+ → **Complete Installation Tutorial**: [Installation Tutorial](https://zitniklab.hms.harvard.edu/bioagent/installation.html)
151
+
152
+ ## 🔧 Usage & Integration
153
+
154
+ ToolUniverse supports multiple integration methods for different use cases:
155
+
156
+ ### Python SDK Integration
157
+
158
+ ```python
159
+ from tooluniverse import ToolUniverse
160
+
161
+ # Initialize and load tools
162
+ tu = ToolUniverse()
163
+ tu.load_tools()
164
+
165
+ # Find relevant tools
166
+ tools = tu.run({
167
+ "name": "Tool_Finder_Keyword",
168
+ "arguments": {"query": "protein structure prediction"}
169
+ })
170
+
171
+ # Execute tools
172
+ result = tu.run({
173
+ "name": "UniProt_get_protein_info",
174
+ "arguments": {"gene_symbol": "BRCA1"}
175
+ })
176
+ ```
177
+
178
+ ### AI Assistant Integration
179
+
180
+ **🖥️ Claude Desktop**: Native integration with Claude AI assistant → [Setup Tutorial](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_desktop.html)
181
+ **💻 Claude Code**: Claude Code environment integration → [Setup Tutorial](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_code.html)
182
+ **🔮 Gemini CLI**: Google's AI agent integration → [Setup Tutorial](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/gemini_cli.html)
183
+ **🧠 Qwen Code**: AI scientist integration with Qwen Code environment → [Setup Tutorial](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/qwen_code.html)
184
+ **⚡ GPT Codex CLI**: Terminal-based AI scientist with Codex CLI → [Setup Tutorial](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/codex_cli.html)
185
+ **🎯 ChatGPT API**: OpenAI integration via MCP protocol and function calling → [Setup Tutorial](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/chatgpt_api.html)
186
+
187
+ → **AI Assistant Setup Guides**: [Building AI Scientists](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/index.html)
188
+
189
+ ### MCP Server Integration
190
+
191
+ ```bash
192
+ # Start MCP server
193
+ python -m tooluniverse.smcp_server
194
+
195
+ # Or with CLI
196
+ tooluniverse-mcp --help
197
+ ```
198
+
199
+ ### Core Capabilities
200
+
201
+ - **🔍 Find Tool Operation**: Maps natural-language descriptions to tool specifications using semantic search
202
+ - **⚙️ Call Tool Operation**: Executes selected tools with structured arguments and returns text, embeddings, or JSON
203
+ - **🔗 Tool Composition**: Chains tools for sequential or parallel execution in self-directed workflows
204
+ - **🛠️ Tool Creation**: Automatically creates new tools from natural language descriptions
205
+ - **🔄 Iterative Optimization**: Refines tool interfaces and specifications for correct use by AI scientists
206
+ - **🌐 Shared Environment**: Unifies tools, data, and analysts into a common ecosystem for interoperability and reuse
207
+
208
+ → **Detailed Usage Tutorial**: [README_USAGE.md](README_USAGE.md)
209
+ → **Complete Getting Started**: [Getting Started Tutorial](https://zitniklab.hms.harvard.edu/bioagent/getting_started.html)
210
+
211
+
212
+ ## 📚 Documentation
213
+
214
+ Our comprehensive documentation covers everything from quick start to advanced workflows:
215
+
216
+ ### 🚀 Getting Started
217
+ - **[Quick Start Tutorial](https://zitniklab.hms.harvard.edu/bioagent/quickstart.html)**: 5-minute setup and first query
218
+ - **[Installation](https://zitniklab.hms.harvard.edu/bioagent/installation.html)**: Complete installation options
219
+ - **[Getting Started](https://zitniklab.hms.harvard.edu/bioagent/getting_started.html)**: Step-by-step tutorial
220
+ - **[AI-Tool Protocol](https://zitniklab.hms.harvard.edu/bioagent/guide/interaction_protocol.html)**: Understanding the interaction protocol
221
+
222
+ ### 📖 User Guides
223
+ - **[Loading Tools](https://zitniklab.hms.harvard.edu/bioagent/guide/loading_tools.html)**: Complete Tutorial to loading tools
224
+ - **[Tool Discovery](https://zitniklab.hms.harvard.edu/bioagent/tutorials/finding_tools.html)**: Find tools by keyword, LLM, and embedding search
225
+ - **[Tool Caller](https://zitniklab.hms.harvard.edu/bioagent/guide/tool_caller.html)**: Primary execution engine
226
+ - **[Tool Composition](https://zitniklab.hms.harvard.edu/bioagent/guide/tool_composition.html)**: Chain tools into workflows
227
+ - **[Scientific Workflows](https://zitniklab.hms.harvard.edu/bioagent/guide/scientific_workflows.html)**: Real-world research scenarios
228
+
229
+ ### 🤖 Building AI Scientists
230
+ - **[Overview](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/index.html)**: Create AI research assistants from any LLM
231
+ - **[Claude Desktop Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_desktop.html)**: Native MCP integration with Claude Desktop App
232
+ - **[Claude Code Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_code.html)**: AI scientist development in Claude Code environment
233
+ - **[Gemini CLI Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/gemini_cli.html)**: Command-line scientific research with Google Gemini
234
+ - **[Qwen Code Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/qwen_code.html)**: AI scientist workflows in Qwen Code environment
235
+ - **[GPT Codex CLI Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/codex_cli.html)**: Terminal-based research with OpenAI Codex
236
+ - **[ChatGPT API Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/chatgpt_api.html)**: Programmatic research with ChatGPT function calling
237
+
238
+ ### 🛠️ Advanced Features
239
+ - **[Hooks System](https://zitniklab.hms.harvard.edu/bioagent/guide/hooks/index.html)**: Intelligent output processing
240
+ - **[Expert Feedback](https://zitniklab.hms.harvard.edu/bioagent/tutorials/expert_feedback.html)**: Human-in-the-loop consultation
241
+ - **[Agentic Tools](https://zitniklab.hms.harvard.edu/bioagent/tutorials/agentic_tools_tutorial.html)**: AI-powered tool development
242
+ - **[Case Study](https://zitniklab.hms.harvard.edu/bioagent/tutorials/tooluniverse_case_study.html)**: End-to-end drug discovery workflow
243
+
244
+ ### 🔧 Expanding ToolUniverse
245
+ - **[Architecture](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/architecture.html)**: System architecture overview
246
+ - **[Local Tool Registration](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/local_tool_registration.html)**: Create custom tools
247
+ - **[Remote Tool Registration](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/remote_tool_registration.html)**: Integrate external services
248
+ - **[Contributing Tools](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/comprehensive_tool_guide.html)**: Complete contribution Tutorial
249
+
250
+ ### 📚 API Reference
251
+ - **[API Directory](https://zitniklab.hms.harvard.edu/bioagent/api_directory.html)**: Complete tool listing
252
+ - **[Tools Reference](https://zitniklab.hms.harvard.edu/bioagent/api/tools_complete_reference.html)**: Detailed API documentation
253
+ - **[Quick Reference](https://zitniklab.hms.harvard.edu/bioagent/api_quick_reference.html)**: Essential API Tutorial
254
+
255
+ ### 🆘 Help & Support
256
+ - **[FAQ](https://zitniklab.hms.harvard.edu/bioagent/faq.html)**: Frequently asked questions
257
+ - **[Troubleshooting](https://zitniklab.hms.harvard.edu/bioagent/troubleshooting.html)**: Common issues and solutions
258
+ - **[Help Index](https://zitniklab.hms.harvard.edu/bioagent/help/index.html)**: Support resources
259
+
260
+ → **Browse All Documentation**: [ToolUniverse Documentation](https://zitniklab.hms.harvard.edu/bioagent/)
261
+
262
+ ## 🚀 AI Scientists Projects Powered by ToolUniverse
263
+
264
+ ### TxAgent: AI Agent for Therapeutic Reasoning
265
+
266
+ **TxAgent** is an AI agent for therapeutic reasoning that leverages ToolUniverse's comprehensive scientific tool ecosystem to solve complex therapeutic reasoning tasks.
267
+
268
+ [![ProjectPage](https://img.shields.io/badge/Page-TxAgent-red)](https://zitniklab.hms.harvard.edu/TxAgent) [![PaperLink](https://img.shields.io/badge/Arxiv-TxAgent-red)](https://arxiv.org/pdf/2503.10970) [![TxAgent-PIP](https://img.shields.io/badge/Pip-TxAgent-blue)](https://pypi.org/project/txagent/) [![TxAgent](https://img.shields.io/badge/Code-TxAgent-purple)](https://github.com/mims-harvard/TxAgent) [![HuggingFace](https://img.shields.io/badge/HuggingFace-TxAgentT1-yellow)](https://huggingface.co/collections/mims-harvard/txagent-67c8e54a9d03a429bb0c622c)
269
+
270
+ ---
271
+
272
+ *Building your own project with ToolUniverse? We'd love to feature it here! Submit your project via [GitHub Issues](https://github.com/mims-harvard/ToolUniverse/issues) or contact us.*
273
+
274
+ ## 🌍 Ecosystem & Community
275
+
276
+ ### Democratizing AI Agents for Science
277
+
278
+ ToolUniverse addresses the fundamental challenge that AI scientists remain difficult to build because they are bespoke, tied to rigid workflows, and lack shared environments. Drawing inspiration from how unified ecosystems have transformed omics research by enabling interoperability, reuse, and community-driven development, ToolUniverse provides comparable infrastructure for AI scientists.
279
+
280
+ **Core Principles:**
281
+
282
+ - **🔓 Unified Ecosystem**: Integrates tools, data, and analysts into a common environment like omics platforms
283
+ - **📐 Standardized Protocol**: AI-tool interaction protocol analogous to HTTP for internet communication
284
+ - **🔗 Interoperability**: Tool specification schema that standardizes definitions and enables consistent inference
285
+ - **🌐 Collaborative Discovery**: Enables AI scientists to serve as computational partners in research
286
+ - **🚀 Scalable Construction**: Builds AI scientists at scale without bespoke implementation
287
+
288
+ ### Research Applications
289
+
290
+ **🧬 Drug Discovery & Development**
291
+ - Target identification and validation
292
+ - Compound screening and optimization
293
+ - Safety and toxicity assessment
294
+ - Clinical trial analysis and outcomes
295
+ - **Case Study**: Hypercholesterolemia research where ToolUniverse enabled an AI scientist to identify a potent drug analog with favorable predicted properties
296
+
297
+ **🔬 Molecular Biology Research**
298
+ - Gene function annotation and analysis
299
+ - Protein structure prediction and modeling
300
+ - Pathway analysis and network construction
301
+ - Disease association studies
302
+
303
+ **📊 Literature & Knowledge Mining**
304
+ - Automated systematic literature reviews
305
+ - Named entity recognition and extraction
306
+ - Citation network analysis and mapping
307
+ - Patent landscape analysis and IP research
308
+
309
+ **🤖 AI-Driven Research Automation**
310
+ - Hypothesis generation and testing
311
+ - Experimental design optimization
312
+ - Multi-modal data analysis and integration
313
+ - Results interpretation and reporting
314
+
315
+ ### Community & Support
316
+
317
+ **Get Involved:**
318
+ - 🐛 **Report Issues**: [GitHub Issues](https://github.com/mims-harvard/ToolUniverse/issues)
319
+ - 💬 **Join Discussions**: [GitHub Discussions](https://github.com/mims-harvard/ToolUniverse/discussions)
320
+ - 📧 **Contact**: Visit [aiscientist.tools](https://aiscientist.tools) for more information
321
+ - 🤝 **Contribute**: See our [Contributing Tutorial](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/comprehensive_tool_guide.html)
322
+
323
+ **Integrations & Extensions:**
324
+ - **Model Context Protocol (MCP)**: Full MCP server support for AI assistant integration
325
+ - **Claude Desktop**: Native integration with Anthropic's Claude Desktop App
326
+ - **OpenAI Function Calling**: Direct integration with ChatGPT and GPT models
327
+ - **Custom Agents**: Build domain-specific AI research assistants
328
+
329
+ ## Citation
330
+
331
+ ```
332
+ @misc{gao2025txagent,
333
+ title={TxAgent: An AI Agent for Therapeutic Reasoning Across a Universe of Tools},
334
+ author={Shanghua Gao and Richard Zhu and Zhenglun Kong and Ayush Noori and Xiaorui Su and Curtis Ginder and Theodoros Tsiligkaridis and Marinka Zitnik},
335
+ year={2025},
336
+ eprint={2503.10970},
337
+ archivePrefix={arXiv},
338
+ primaryClass={cs.AI},
339
+ url={https://arxiv.org/abs/2503.10970},
340
+ }
341
+ ```
342
+
343
+ ## Contact & Contributors
344
+
345
+ ### Contact
346
+
347
+ For questions, suggestions, or collaboration opportunities:
348
+
349
+ - **📧 Contact**: [Shanghua Gao](mailto:shanghuagao@gmail.com)
350
+ - **🌐 Web Platform**: [aiscientist.tools](https://aiscientist.tools)
351
+ - **💻 GitHub**: [github.com/mims-harvard/ToolUniverse](https://github.com/mims-harvard/ToolUniverse)
352
+
353
+ ### Contributors
354
+
355
+ - **[Shanghua Gao](https://shgao.site)**
356
+ - **[Richard Zhu](https://www.linkedin.com/in/richard-zhu-4236901a7/)**
357
+ - **[Pengwei Sui](mailto:pengwei_sui@hms.harvard.edu)**
358
+ - **[Zhenglun Kong](https://zlkong.github.io/homepage/)**
359
+ - **[Sufian Aldogom](mailto:saldogom@mit.edu)**
360
+ - **[Yepeng Huang](mailto:yepeng_huang@hms.harvard.edu)**
361
+ - **[Ayush Noori](https://www.ayushnoori.com/)**
362
+ - **[Reza Shamji](mailto:reza_shamji@hms.harvard.edu)**
363
+ - **[Krishna Parvataneni](mailto:krishna_parvataneni@hms.harvard.edu)**
364
+ - **[Theodoros Tsiligkaridis](https://sites.google.com/view/theo-t)**
365
+ - **[Marinka Zitnik](https://zitniklab.hms.harvard.edu/)**
366
+
367
+
368
+
369
+ ### Acknowledgments
370
+
371
+ ToolUniverse is developed by the [Zitnik Lab](https://zitniklab.hms.harvard.edu/) at Harvard Medical School in collaboration with MIT Lincoln Laboratory. We thank the scientific community for their valuable feedback and contributions.
372
+
373
+ ---
374
+
375
+ **🧬🤖🔬 Happy researching with ToolUniverse!**
376
+
377
+ *Democratizing AI agents for science - one tool at a time.*
@@ -0,0 +1,186 @@
1
+ tooluniverse/__init__.py,sha256=uQtjC0aSwvfVxR_dxbvptPyoJ2BUQ1_kIm39dnJkUiU,13175
2
+ tooluniverse/admetai_tool.py,sha256=nEfq7dwvFqjDryKv3nivGoBSRap6LT7_m76iMu72Q6E,3009
3
+ tooluniverse/agentic_tool.py,sha256=6qMPrcwVAjSobgmeuez3Dy6ZMgJCIkVrBdcMPuE44cU,23166
4
+ tooluniverse/alphafold_tool.py,sha256=xvtFvj52UDXdnV9oPRj0XJLThLWyLshjmebQIqnWOq8,3467
5
+ tooluniverse/base_tool.py,sha256=uA-wGrs1drEJJbIp24YfWWWWfNGeMqEQo1tI6r3csEg,5664
6
+ tooluniverse/boltz_tool.py,sha256=Kfcymeu6FRRpWLw7dWhEON4PUBTsHuBiTAPJlYH5ZGs,7930
7
+ tooluniverse/chem_tool.py,sha256=tJusjamWNp0x8Ke-cvVgKB7-clvD6LXTaXA0Q0fqQv4,8336
8
+ tooluniverse/compose_tool.py,sha256=mK4yqo1rsxY9lWlGEyJfNqgEfjQN9ITDkW2telI1ZJM,13851
9
+ tooluniverse/ctg_tool.py,sha256=3nR_F-YGpxVmTa6u5xi-mrTmLSH7OBehP4EJo-CQS0Y,46053
10
+ tooluniverse/custom_tool.py,sha256=w2LMMRT82byxSNYPBKmuEJ2lbKktDJt_iW0Ew24M5VY,2701
11
+ tooluniverse/dailymed_tool.py,sha256=sxIs0xYwX0CVlkhHaPwvGV-Oo1OW2tvsWZypAWujt9k,3800
12
+ tooluniverse/dataset_tool.py,sha256=cmcCz_SFs7V78EZDNLesnQ2Qe9fVz1jOLghrpwe8hM8,11371
13
+ tooluniverse/default_config.py,sha256=OFQwgrO1SOHpbAErDvXxkfEsd1kAlxUPI9MO6EwqFvU,7287
14
+ tooluniverse/efo_tool.py,sha256=J4tjPFlNa9KhmQTEToBZN-m8jMuF1IKf2yQb1dyTeXI,1394
15
+ tooluniverse/embedding_database.py,sha256=ua-yIyv3dPq2GHdyZmiwZyaUlkKYyV3nslB4H9asvDo,24682
16
+ tooluniverse/embedding_sync.py,sha256=Cq3g64MjNXXpiImrzPMNsCTvGZeEI9009OlHOD3EloI,14669
17
+ tooluniverse/enrichr_tool.py,sha256=YXuHwoG_Hi-kUWK7cY_X21b5pbqoREdG7fJxKq050Jg,9472
18
+ tooluniverse/europe_pmc_tool.py,sha256=aYTkDE_KMnpkYYMG5ojYZQ1QYsYB_Msf3pvNwY1Zz6w,1645
19
+ tooluniverse/execute_function.py,sha256=kYmS-Efv1O-RtmeZaYL6TOq1yGtXRHX8KaYuQ8JYpyI,78094
20
+ tooluniverse/extended_hooks.py,sha256=1Cg0rETh6_D21YFVqD-FhL7y4inZAGyQ6vMtHyugueg,15376
21
+ tooluniverse/gene_ontology_tool.py,sha256=l89XYdBEBm3eN3dG0lR4oV01H16_9IUB6a2c7W_c7Lg,7180
22
+ tooluniverse/graphql_tool.py,sha256=y7ztNyb9hn4OdSGKhLsHev_snkNgbAwJZL8ZGHm0LEk,8980
23
+ tooluniverse/gwas_tool.py,sha256=hq4VhB93DhczZo0xRGjGS9AtdKWL0O_XQy3eoV_fi8E,12351
24
+ tooluniverse/hpa_tool.py,sha256=siRA0usQ0Rggloy3VL1b56QlytabndXS8Xzc9H3uWs8,64998
25
+ tooluniverse/humanbase_tool.py,sha256=xojNboYvFrW_LAzOzKaexp6tvyGSbUazpMfOvX5ETXY,15006
26
+ tooluniverse/logging_config.py,sha256=SWM8TCrv0RZJZbC8NNwy8h04V9BvqSVyzwJFcW43eFI,7212
27
+ tooluniverse/mcp_client_tool.py,sha256=R2WWAbnjzCFEKfeddTvtZTSZqtnvKRayV2ha2xdV9EU,28741
28
+ tooluniverse/mcp_integration.py,sha256=9VtFDFbcVIuKO_sd1gFrOd-R0r6uxlYRjdsOKiqV1zs,13912
29
+ tooluniverse/mcp_tool_registry.py,sha256=IoeEaLN7RoA7UZ_rCw4S63LGGvmXci0YmKkdvPPzvPA,31812
30
+ tooluniverse/medlineplus_tool.py,sha256=__D7W2Khl05WllMnoV4Owv3pyl5EXS1lzEJmAE7PbD0,13214
31
+ tooluniverse/openalex_tool.py,sha256=cR6K4ycFTarXxkNM_Rm2ULNu3K4QJX0ukK-7YVZiLcg,8066
32
+ tooluniverse/openfda_adv_tool.py,sha256=t5kffba0iNDVtFHYPtfLW8ql4dKLaWwdcFnE9cNmNWE,10168
33
+ tooluniverse/openfda_tool.py,sha256=AetafmFr1IygGAL8p1-URsNahVdN52tN0FvToTlkcMw,27425
34
+ tooluniverse/output_hook.py,sha256=kxb8BXgo_CH6J9n-bYtM3WfCDranUu0uG3lVt_nOCOg,42734
35
+ tooluniverse/package_tool.py,sha256=Ri-TPc_jTY3olHjPsMkEe2z45vknM7yynjtMXkh3Le8,8294
36
+ tooluniverse/pubchem_tool.py,sha256=14C_5uz0RNzv5HaSAXHlq13TZLtlkhmJhr7RrjI91Yk,6415
37
+ tooluniverse/pubtator_tool.py,sha256=WdFufeT3hY2lCq6vb9SLF44UYJ48PiZ1mf4bSfpI7mg,7151
38
+ tooluniverse/rcsb_pdb_tool.py,sha256=8N6bvlD2KIHfNum_FvbXwIa96mKvHorno5ZdjAHgmrc,1550
39
+ tooluniverse/reactome_tool.py,sha256=ngmJXCcQfsu5d8XcX258ZHW4DIBi45sSjYNwUBk8nxo,4481
40
+ tooluniverse/remote_tool.py,sha256=ywb5xaJBqOT38_r5FBVoF3QFQDcLvfOH5AQrT-g7Fcs,3368
41
+ tooluniverse/restful_tool.py,sha256=H7alq_vO3G4iVgZIZrrWh9vq2ForJN52Fl7_QOq7yaM,4409
42
+ tooluniverse/semantic_scholar_tool.py,sha256=3gMHF-ReyNsP74oV7LzphhkhjYOX44F4JpnvIafaWPY,1970
43
+ tooluniverse/smcp.py,sha256=D53npbXtNLN4snGpFyzU-jqyMVYt4MrpoA3DVNlStHo,99797
44
+ tooluniverse/smcp_server.py,sha256=YKzSsevK0NF_GpqeVANHBaq0kQm-llxYDeBG_qFdYMU,34361
45
+ tooluniverse/tool_finder_embedding.py,sha256=O0WMCT6z7a_pDDew04QtpyPk_qzfGCX_647rsrBs0ug,11239
46
+ tooluniverse/tool_finder_keyword.py,sha256=_Nt4-C1RranoywTk8vi6MePWPoNqFwOhafMDiTYl_SU,23480
47
+ tooluniverse/tool_finder_llm.py,sha256=W63BDow6ioWQJgkpuhS3f0f4lb48uT_Jzc_bTqhBKE8,27361
48
+ tooluniverse/tool_graph_web_ui.py,sha256=68s1MPXTcT6bzdFfuat9gvSNjSgwHxNC-TztfH3raeQ,27987
49
+ tooluniverse/tool_registry.py,sha256=1EUAUYwX0De9Ld2O020cEg1hDlAF-mTJ946datMOg5s,14558
50
+ tooluniverse/uniprot_tool.py,sha256=oIy8O0tHQWgb1rAtxTGZfXEVJLLRM5fFVe2SVc5OpNI,6231
51
+ tooluniverse/url_tool.py,sha256=8dY1Uoq0VHPwaBN7Z3Kw9ceNyCPO61FLexAmhHsKCUI,9018
52
+ tooluniverse/uspto_tool.py,sha256=lelrwFaMen_0O3U86UoY-xcZ5pLH9Cwk1kY5iYD1AcE,8992
53
+ tooluniverse/utils.py,sha256=T0rXjsqCfhz-yvRxKvSCzGCMLaKv7VcezFEhV9sN-18,16865
54
+ tooluniverse/xml_tool.py,sha256=ynv6NEU-QTSliB9P02qnHxoxIGeRu7Bb-KHOmR0pN24,14671
55
+ tooluniverse/compose_scripts/__init__.py,sha256=8e9aVruvvUQxLSuPEgcrljS-f1fJbnIwB6XKb4ZeWn0,41
56
+ tooluniverse/compose_scripts/biomarker_discovery.py,sha256=Im7SO1boySOVAcOz5JtuNw5Uo43i4SLBVgDRyXUke2k,13173
57
+ tooluniverse/compose_scripts/comprehensive_drug_discovery.py,sha256=k5aoTkC5bTneM9asOuYKz0dCwewVv2kWOXUdS_CAoOc,8588
58
+ tooluniverse/compose_scripts/drug_safety_analyzer.py,sha256=4lmGYY8a4T4WbeHIUG1aAtxowk3SFnJNEtndCTmnJfk,3164
59
+ tooluniverse/compose_scripts/literature_tool.py,sha256=8-NITTQHj6vdn-vo_d0W8l6Ed8bvDTkDOJ7yvhaE-lI,976
60
+ tooluniverse/compose_scripts/output_summarizer.py,sha256=P6wS5dRePJfWaU5Rh9S-uPenRK-_uvem26Em3xeq6FA,9945
61
+ tooluniverse/compose_scripts/tool_description_optimizer.py,sha256=L6Kd8e6Af8pD6dy8jrFzJq5jq-QNbg72gkQktn8IDBE,32175
62
+ tooluniverse/compose_scripts/tool_discover.py,sha256=RKzCmhDWzDCsAl2KCcEQRNH96mOf_2bTQOH2EVGvpC8,24976
63
+ tooluniverse/compose_scripts/tool_graph_composer.py,sha256=lmGeN94Mc9SZCeYo8ez55tKYLS1-dI3JDm-onKB5DZA,15566
64
+ tooluniverse/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ tooluniverse/data/admetai_tools.json,sha256=08LCNSCZJxL6ZuPF1mVfbdlh9f2X5tnEwIYU7RcLLSM,6497
66
+ tooluniverse/data/agentic_tools.json,sha256=er40nXt19HS4S3N6jbpRmTPhprBbAsWwRB2lhngFsAI,89865
67
+ tooluniverse/data/alphafold_tools.json,sha256=1q0nB2DXyAPQxLoRXWnkFKYBgLW9AGAGMP7qqOuOx7A,2678
68
+ tooluniverse/data/boltz_tools.json,sha256=_pMSRBkO3uj4vjYnQ7H6qbZFa4rzc9Looj6zHRyIkMg,303
69
+ tooluniverse/data/chembl_tools.json,sha256=aQfFyFlUNz_y9ZTO3dNje4QGhqt7rLv6j5YdMJR2-x8,747
70
+ tooluniverse/data/clait_tools.json,sha256=EDU_X8r4YtMnVt7SJpyimdo3FlcSNFSdvckWLShDODA,12752
71
+ tooluniverse/data/clinicaltrials_gov_tools.json,sha256=_3NphPP_9cLviktCNnfsoSo_EHIkKA4lDTmuSycQJ58,16102
72
+ tooluniverse/data/compose_tools.json,sha256=LyiugKvAzfCMs02ZkY7EHbk92UzaSdDcFocaGuVS8xU,7793
73
+ tooluniverse/data/dailymed_tools.json,sha256=F7zSeK6MM9eGKUXZpyeVNFD1UkOkd-0OoxmTlgnEffg,2059
74
+ tooluniverse/data/dataset_tools.json,sha256=MiJKlKTEFRILbhy2DPnhG_9upFu5GJ2-YCu9HarjcD8,29506
75
+ tooluniverse/data/disease_target_score_tools.json,sha256=xhU5bigeNa2FSn0bqVPArXVid6lkwfFBDpD2xbSGisc,23199
76
+ tooluniverse/data/efo_tools.json,sha256=qsEElKp1Z4EX09OD4r1ETcw6jT2t_w32SlDz-v8RyDc,564
77
+ tooluniverse/data/embedding_tools.json,sha256=7kTjEAfnVmvixfyk4rgJRXpq-ZDsvEKTZhi0VHanqfI,12979
78
+ tooluniverse/data/enrichr_tools.json,sha256=kouTYguewNXMSmGwvEDVU9aG8ka6Mg7bRMIVr0gNmN8,1312
79
+ tooluniverse/data/europe_pmc_tools.json,sha256=gEBy1j-VjUPs_tdfWhR-5JMrfc81iQuiR29SshHz-vU,959
80
+ tooluniverse/data/expert_feedback_tools.json,sha256=Uq3pit2dvffLWl01ycJiFh7NSMVE9Ol7qUMWjGwUvYw,453
81
+ tooluniverse/data/fda_drug_adverse_event_tools.json,sha256=uGeUs0cyHo1AXconRmS8djFsYJHNsAjJpbZW417Fj4I,24064
82
+ tooluniverse/data/fda_drug_labeling_tools.json,sha256=Shp6yf8C5YMIfUrweCmXJL5DH8ZndnM3gP519pY5iaI,224728
83
+ tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py,sha256=TlXXiMI1FUwXxX2pZW0G4vrZ5_10Jg03qDnL8BzUZXY,6009537
84
+ tooluniverse/data/finder_tools.json,sha256=e-3-yXL4R7sV6g4LOhIc9bSoiJLY53qx8w-guWe5eks,5974
85
+ tooluniverse/data/gene_ontology_tools.json,sha256=BG7E5sxXJy2XYbNjsELptk8J2iZf0CqlgzjyHtPX-XU,4252
86
+ tooluniverse/data/gwas_tools.json,sha256=G2Z7kKPK5UsqNot3sJnP8RmeEY2wjfOMonY19Bwf0zM,51777
87
+ tooluniverse/data/hpa_tools.json,sha256=mNpWuDQOlnJEbhDq4tDl_Nhq5PEXNSitx4Jjm09PkW0,17582
88
+ tooluniverse/data/humanbase_tools.json,sha256=WQ8rsNd0CdAg8UM2RAFs9u2lHO1rAXVQUi6Fs7JQGfk,2493
89
+ tooluniverse/data/idmap_tools.json,sha256=ROokr0F2Tws9GE6qG42BYAKxJ9md0xrQ-NgLoXNGYoA,3186
90
+ tooluniverse/data/mcp_client_tools_example.json,sha256=gnubP44yiaRp1LRHhREsa9t934svLzxBhB-vnH4hM_g,3986
91
+ tooluniverse/data/mcpautoloadertool_defaults.json,sha256=I1Z6Xnno6BRX7u9Ec4LlXlz-384GWpaBafPVHsqTr_c,998
92
+ tooluniverse/data/medlineplus_tools.json,sha256=Jxy4Mqw6l6VYKfQ1sS54iR5SdDJFqVSryPHAgUWV5MQ,7236
93
+ tooluniverse/data/monarch_tools.json,sha256=-uyhy-FlYBCmP0_biespZcuBHwcvOPmxX4gNYnTmgMU,3568
94
+ tooluniverse/data/openalex_tools.json,sha256=6y-1rqRAwR8dzxT3E5sroTdzfl4OVJMxdLSPcIBb-vQ,1736
95
+ tooluniverse/data/opentarget_tools.json,sha256=IZGLUbQWC--u_DSNoGGMtI9V9YFxucHB1ESqglJWCY8,67795
96
+ tooluniverse/data/output_summarization_tools.json,sha256=9NXb3MT3LnbjaIM6U5i2cQTdbNwukrF_zM4o5Xf7lwc,3942
97
+ tooluniverse/data/pubchem_tools.json,sha256=_q3sov5n2fGhBT43gzfqSjsjT1uc_itiF9HT2UV3jFU,12695
98
+ tooluniverse/data/pubtator_tools.json,sha256=WkcP3DFlC6EcL9zf2KMrDITC0_fYPNTu60by0RJBdVI,2511
99
+ tooluniverse/data/rcsb_pdb_tools.json,sha256=gKY8Y9QDN4-3ILc2KFLGdPFXG1M9LhXMAPFQtwnP7Bg,47767
100
+ tooluniverse/data/reactome_tools.json,sha256=h8Ubkllr4LMFc8UPUFQ8SZf_-wdWdh_NaHAKhx31Db0,557
101
+ tooluniverse/data/semantic_scholar_tools.json,sha256=e-gkWftA3MH4ep_WjT2tCncrsSX_x_Y9WtteowMkqRA,1116
102
+ tooluniverse/data/special_tools.json,sha256=2QSWknGvpB-t5RIv8NrhiveovxgN-PDmrx-Uea83o9o,937
103
+ tooluniverse/data/tool_composition_tools.json,sha256=kx9S7TSQqkQb4n13WuW204NL9Zqi8csA1Jmf_wSQ3p4,6323
104
+ tooluniverse/data/toolfinderkeyword_defaults.json,sha256=bydTVd0IUSDiilNQ6kZU-cn4lPqOfInfUAxhh8yMXqY,1050
105
+ tooluniverse/data/txagent_client_tools.json,sha256=GdQk5H6uP_Uj9Ejz3nMdzNhZJV42t75aiRW8oWtkzRw,409
106
+ tooluniverse/data/uniprot_tools.json,sha256=eiRlXBTB3jEboF2eDFFgvI14gDuHD0snOr-sm5ouQfo,8046
107
+ tooluniverse/data/url_fetch_tools.json,sha256=KgypHQxze95a04-BeFc36bgvthGBACwF5hYDCNf_-tc,3157
108
+ tooluniverse/data/uspto_downloader_tools.json,sha256=hMHwvP_hvuFg-upZAAXufywYKx031iQ0xuMyHfzu0uA,349
109
+ tooluniverse/data/uspto_tools.json,sha256=S6unaJGVrH6wRjXTOwTXvumzv4bCek1Kf07tSStZjLM,32073
110
+ tooluniverse/data/xml_tools.json,sha256=tt7SFQB8DIKAtPPTabJgQ4ccW-UcDyvKiy2mRtUO_k0,147637
111
+ tooluniverse/data/packages/bioinformatics_core_tools.json,sha256=ScG9555zR0caPiLlmCnBlsOM9s5sgYMKJrvWnf7niaY,164753
112
+ tooluniverse/data/packages/categorized_tools.txt,sha256=NweDa6MbgS_4480RuNk-sw9LaxyA05VkzSgIRfvYkLI,4823
113
+ tooluniverse/data/packages/cheminformatics_tools.json,sha256=aiyLjU9E4d2UaJ8A8AGxfcQ52TIMaO_79N1QVMHnes4,30845
114
+ tooluniverse/data/packages/earth_sciences_tools.json,sha256=qqzphH4QLfX5wEszxI33AfRmo1HjVKmpFJ3P5nXKFsc,1927
115
+ tooluniverse/data/packages/genomics_tools.json,sha256=tnCjhtjrncIxE0lLTNNHjjWvfKbas6c6R06tnZkklFU,48318
116
+ tooluniverse/data/packages/image_processing_tools.json,sha256=Kjpjwy2fAaTMM6mKEgRbtgE2-HUKCvJiqviIxgcTD5g,965
117
+ tooluniverse/data/packages/machine_learning_tools.json,sha256=btFgjUOzDExic2lZozRHrN6ZsJMnPbMNUm8GmJ8H3ZM,41645
118
+ tooluniverse/data/packages/neuroscience_tools.json,sha256=SzXmakL7GIldONBlV_kGMG_ov68lkVSY00Ux7Ggo4a0,1538
119
+ tooluniverse/data/packages/original_tools.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
+ tooluniverse/data/packages/physics_astronomy_tools.json,sha256=n0ovkqOXhUcDBUPDGNKrCs3NbYJOcnOEADXCafgI4SE,1527
121
+ tooluniverse/data/packages/scientific_computing_tools.json,sha256=YhGZIvllzmesF2Pm_OnIY6EVgVJ36nqvQN8Pvno-5BY,28300
122
+ tooluniverse/data/packages/single_cell_tools.json,sha256=HxHygdgtQM6kObnPdCqUTSwNI8Cux1LoOeYXuxxjjtw,36069
123
+ tooluniverse/data/packages/software_tools.json,sha256=y9wb3dts-aQW7RxBDL7EHLSl2vNBuw5LW8nL7VZ6IFU,460958
124
+ tooluniverse/data/packages/structural_biology_tools.json,sha256=tQw78Ot6i9PWGUX3yVsZOgeOqZOhqTeh9mQVahZaUec,31755
125
+ tooluniverse/data/packages/visualization_tools.json,sha256=yS-M_H3px6Ea-De-Km8v_gVMPa2Vdt6LmAPU-Zsai3c,25177
126
+ tooluniverse/remote/boltz/boltz_mcp_server.py,sha256=oAqO8j52M4ntn1Ihdjclj6nJwHxRTbyxIF6efi_G_jU,2088
127
+ tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py,sha256=6G_8MZuohXrt-jMmt8jVEsHHIPgL1IP5vcJHp4Coeb4,18994
128
+ tooluniverse/remote/expert_feedback/human_expert_mcp_tools.py,sha256=WeXuIjus7bsWmvRwhCwX6tPrzu_1Sjj-Ml_xqWIKomA,72921
129
+ tooluniverse/remote/expert_feedback/simple_test.py,sha256=rv_UN4oHH6BNmYVuPKRfPdIEjtdFvG0MXYoNOIHqXvg,535
130
+ tooluniverse/remote/expert_feedback/start_web_interface.py,sha256=_As-c4HRx9nBb_xjiO040HMj7v8RwIB2f9yT1W4f0Yo,6136
131
+ tooluniverse/remote/expert_feedback/web_only_interface.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
+ tooluniverse/remote/expert_feedback_mcp/human_expert_mcp_server.py,sha256=hsI7npDj142_YlLjPfCWE3RYzgrB6hCx_L26StoiDTE,59973
133
+ tooluniverse/remote/expert_feedback_mcp/simple_test.py,sha256=tBLjIUhULLBB_sKjf_2hsm9IQkMjcI4Tf4p34ZUen_w,913
134
+ tooluniverse/remote/expert_feedback_mcp/start_web_interface.py,sha256=OYnEhU_sHQlUKKxF6HJoJbn220HFws7eS47QVDF9ESg,2738
135
+ tooluniverse/remote/immune_compass/compass_tool.py,sha256=jpxfMNDH7UWF4FiFzLB-JyfQYNUB8ZA6somvqkEtDH0,14423
136
+ tooluniverse/remote/pinnacle/pinnacle_tool.py,sha256=Oprd2RyMCZF-NsMjkZMpPOB2apCfws7C3IWIn_U3JxQ,14632
137
+ tooluniverse/remote/transcriptformer/transcriptformer_tool.py,sha256=ZU_TT340LBwjTuowTaQV6QcANcsjYimA4CVSJHdU0c0,25229
138
+ tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py,sha256=gsfs-a3RZ7kwauO3uWNJjEOEi2ctHva3iRUtEYqjS6U,2352
139
+ tooluniverse/remote/uspto_downloader/uspto_downloader_tool.py,sha256=hkDmSVh2-KEc56YhmgtwrgIwkYMFXR2fN1jrIL9vVlk,4460
140
+ tooluniverse/scripts/generate_tool_graph.py,sha256=X_TpGcJ29CFH49Djzsz4gs8VvjDe0CcF6KFWU_hJHDI,12727
141
+ tooluniverse/scripts/visualize_tool_graph.py,sha256=4USGnUVdffJfOxourBKELldGhhk5HV7ZeHHREhyKqOc,25812
142
+ tooluniverse/test/mcp_server_test.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
+ tooluniverse/test/test_admetai_tool.py,sha256=Z_J-LjPgvqsdWpHvXwq24rt2e3Pg3IIp6t4XWUmBPoA,31991
144
+ tooluniverse/test/test_agentic_tool.py,sha256=vMU6uxU0rB6DaYL105XY4euU9VOWWXR3c-qGzMzhHkU,5803
145
+ tooluniverse/test/test_alphafold_tool.py,sha256=BSlAyXbnGS8eCocSeQ58KoCYKbj6mADPChxjrwrl-Q4,2236
146
+ tooluniverse/test/test_chem_tool.py,sha256=N_ARBvouWyJMgWL1yMXSg1w407fBB-CZxJysFVRE6uY,1589
147
+ tooluniverse/test/test_compose_lieraturereview.py,sha256=qNkgXHXJm7Ekiw9e0mcgtqs1z5c-MeE3qy0RoexF9Tg,1956
148
+ tooluniverse/test/test_compose_tool.py,sha256=reRhUWhSuWwuorWF0jbDQHhIEd14UTq_GDSe0Wwl0v4,16607
149
+ tooluniverse/test/test_dailymed.py,sha256=Dttqr6XNhFQaT34mg2TimQYaePN6aOn8BsOMj26Vm6w,2594
150
+ tooluniverse/test/test_dataset_tool.py,sha256=qwXg1SpflScUW1bL4AC-MLgApSr-RMRLdoBwe2XRTqI,6162
151
+ tooluniverse/test/test_disease_target_score.py,sha256=mud06LAtWJlQ2KLYI6rc4rACOqr9u8fVHDleyGhrs5c,1495
152
+ tooluniverse/test/test_drugbank_filter_examples.py,sha256=emBFJn33gZrJhjZ4D1e3Gj9n5NAR9PawTSo0QGYdnOA,5139
153
+ tooluniverse/test/test_efo.py,sha256=Ce3jo2mXuM3WtJpifAJzoZlIYX2rPqy9pw7crT0E_bY,888
154
+ tooluniverse/test/test_enrichr_tool.py,sha256=JZ3MVy5Xt1JschjQnyYyMGmdPLVrnaZuKw9eDCB6TbY,557
155
+ tooluniverse/test/test_europe_pmc_tool.py,sha256=zcd-1aTB25Vkm-FOfGXyqTRBPKoeVOn2k9LrdY5jE3M,575
156
+ tooluniverse/test/test_fda_adv.py,sha256=kP9YvZ1i8TzL-oDMwaQvvuryAEsp2yaD60ViAj0B3Sw,8141
157
+ tooluniverse/test/test_fda_drug_labeling.py,sha256=O655Pcvyx9_d_grHSIYqYVxprvqpy_Ih4Ax43tLM1Xc,7875
158
+ tooluniverse/test/test_gene_ontology_tools.py,sha256=b9adyK5s7EF3Ij_onp8RAfNH7UgC3vsVgZwbEBxQ8Ek,2364
159
+ tooluniverse/test/test_gwas_tool.py,sha256=_VXaf8K_1uO-oKlacJP6VTt4u5cjtX3w92G_eQBucvE,4961
160
+ tooluniverse/test/test_hpa.py,sha256=53lx0rXx0-aT1LRm9IEeBbV5cXaYlp3Ol5bmeRz10Hc,30006
161
+ tooluniverse/test/test_humanbase_tool.py,sha256=4KQnaehJwGtePEwb5my3yldZnMWQHfvCGEpzm-AWLH0,564
162
+ tooluniverse/test/test_idmap_tools.py,sha256=bP_AKhZG1lX9vQKrrrzuZ1iXIMWIWjAriB66pbFCE5M,1743
163
+ tooluniverse/test/test_mcp_server.py,sha256=n3C3UuU9D-E6m6PbooWUgWwshLzncXDEmn0U9ugapaY,6631
164
+ tooluniverse/test/test_mcp_tool.py,sha256=q6a9MCjFggK6KRy8F9h14tV2BezNVj63v6tDFaST-ys,8290
165
+ tooluniverse/test/test_medlineplus.py,sha256=hQ2QyeHmF8BkCXMn9vW0SNImAcqd5jkZz_FhaZbZS7A,7332
166
+ tooluniverse/test/test_openalex_tool.py,sha256=xZ2Mp54ci2nCs3eaA2OJVrbsShAytg5D-Wt2aEHw00o,862
167
+ tooluniverse/test/test_opentargets.py,sha256=WlFQiif8rph4GT-LABU9NOlSOc5vRCIG0gyp3nVRmy0,862
168
+ tooluniverse/test/test_pubchem_tool.py,sha256=gtYLmIlsFiWANallZwsftjnFdDeVpCSWglemjj6HVrI,4381
169
+ tooluniverse/test/test_pubtator_tool.py,sha256=cs-Gl7HlOY9jowCMJVzj1IY9VHBoy2J-Yj08Vy_mxsg,1212
170
+ tooluniverse/test/test_rcsb_pdb_tool.py,sha256=bLI5zSWSZiyTmG_yyLf3mkroI6MZVnnp9-2Gf9r66RI,3950
171
+ tooluniverse/test/test_reactome.py,sha256=X3lV4z5sjYnpO3ntH6wc9DluKHgB6GL0z5j7YavFrtA,1784
172
+ tooluniverse/test/test_semantic_scholar_tool.py,sha256=7ZQOIqivfIMc7yPCzGwWGrxNphvYHK_fZAlrdUAEzKE,705
173
+ tooluniverse/test/test_software_tools.py,sha256=fJeS_9k-cysYzsic75QrQAC_bNxWRVk_vazoldNz0KA,5781
174
+ tooluniverse/test/test_tool_description_optimizer.py,sha256=CuuxSYfb8kHjz9fHmJ8bGhpAIAmqIvUb6mYrt1H5F64,1320
175
+ tooluniverse/test/test_tool_finder.py,sha256=6piRAEMR-9dKr2zaurRZd4dqZLpDMbach4jrq1fgP-c,741
176
+ tooluniverse/test/test_tool_finder_llm.py,sha256=nZTYavGePiNt5Z2smmNLhkO3dz-_P_RcUTv8J1vDzVs,8997
177
+ tooluniverse/test/test_tools_find.py,sha256=vP9EV04iXXmejoY2rDhEM0Yc9uHEO2qEmd8s-YfvY4M,5797
178
+ tooluniverse/test/test_uniprot_tools.py,sha256=V0x7aQjjlE-wS5alFWviHNwC3saHiEE5pMMqAcbokaw,2582
179
+ tooluniverse/test/test_uspto_tool.py,sha256=y2VQBMbiHCTAmvXhBosHrc1innstUl9UMWNoPaBv-RY,2311
180
+ tooluniverse/test/test_xml_tool.py,sha256=tx-w_psZ801C2kM6aDbBzR8QV3Vgu1p2zP6zExhjpVs,3602
181
+ tooluniverse-1.0.0.dist-info/licenses/LICENSE,sha256=Unq9Y3buGL9J0vFop03FYZiVweytt1xdgLIh2n9ck2c,1115
182
+ tooluniverse-1.0.0.dist-info/METADATA,sha256=Np2joe8Nr0P2OclPRLMuoxZsR4G2eKnnX6S5XHE-Hfs,19452
183
+ tooluniverse-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
184
+ tooluniverse-1.0.0.dist-info/entry_points.txt,sha256=Z_znqzUc_XR9ZIXViavqNAwBkwM4XYfC9h7LoBbAAog,600
185
+ tooluniverse-1.0.0.dist-info/top_level.txt,sha256=zZ8YeCJ5FAkEwdd_mxsFtSCQMBDgBdxrrmHo3RNBiWs,13
186
+ tooluniverse-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,9 @@
1
+ [console_scripts]
2
+ generate-mcp-tools = tooluniverse.generate_mcp_tools:run_generate
3
+ tooluniverse-expert-feedback = tooluniverse.remote.expert_feedback.human_expert_mcp_tools:main
4
+ tooluniverse-expert-feedback-web = tooluniverse.remote.expert_feedback.start_web_interface:main
5
+ tooluniverse-mcp = tooluniverse.smcp_server:run_http_server
6
+ tooluniverse-mcp-claude = tooluniverse.smcp_server:run_stdio_server
7
+ tooluniverse-smcp = tooluniverse.smcp_server:run_smcp_server
8
+ tooluniverse-smcp-server = tooluniverse.smcp_server:run_http_server
9
+ tooluniverse-smcp-stdio = tooluniverse.smcp_server:run_stdio_server