tooluniverse 0.2.0__tar.gz → 1.0.1__tar.gz

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 (202) hide show
  1. tooluniverse-1.0.1/PKG-INFO +387 -0
  2. tooluniverse-1.0.1/README.md +322 -0
  3. tooluniverse-1.0.1/pyproject.toml +103 -0
  4. tooluniverse-1.0.1/src/tooluniverse/__init__.py +353 -0
  5. tooluniverse-1.0.1/src/tooluniverse/admetai_tool.py +84 -0
  6. tooluniverse-1.0.1/src/tooluniverse/agentic_tool.py +563 -0
  7. tooluniverse-1.0.1/src/tooluniverse/alphafold_tool.py +96 -0
  8. tooluniverse-1.0.1/src/tooluniverse/base_tool.py +155 -0
  9. tooluniverse-1.0.1/src/tooluniverse/boltz_tool.py +207 -0
  10. tooluniverse-1.0.1/src/tooluniverse/chem_tool.py +192 -0
  11. tooluniverse-1.0.1/src/tooluniverse/compose_scripts/__init__.py +1 -0
  12. tooluniverse-1.0.1/src/tooluniverse/compose_scripts/biomarker_discovery.py +293 -0
  13. tooluniverse-1.0.1/src/tooluniverse/compose_scripts/comprehensive_drug_discovery.py +186 -0
  14. tooluniverse-1.0.1/src/tooluniverse/compose_scripts/drug_safety_analyzer.py +89 -0
  15. tooluniverse-1.0.1/src/tooluniverse/compose_scripts/literature_tool.py +34 -0
  16. tooluniverse-1.0.1/src/tooluniverse/compose_scripts/output_summarizer.py +279 -0
  17. tooluniverse-1.0.1/src/tooluniverse/compose_scripts/tool_description_optimizer.py +681 -0
  18. tooluniverse-1.0.1/src/tooluniverse/compose_scripts/tool_discover.py +705 -0
  19. tooluniverse-1.0.1/src/tooluniverse/compose_scripts/tool_graph_composer.py +448 -0
  20. tooluniverse-1.0.1/src/tooluniverse/compose_tool.py +371 -0
  21. tooluniverse-1.0.1/src/tooluniverse/ctg_tool.py +1002 -0
  22. tooluniverse-1.0.1/src/tooluniverse/custom_tool.py +81 -0
  23. tooluniverse-1.0.1/src/tooluniverse/dailymed_tool.py +108 -0
  24. tooluniverse-1.0.1/src/tooluniverse/data/admetai_tools.json +155 -0
  25. tooluniverse-1.0.1/src/tooluniverse/data/adverse_event_tools.json +108 -0
  26. tooluniverse-1.0.1/src/tooluniverse/data/agentic_tools.json +1156 -0
  27. tooluniverse-1.0.1/src/tooluniverse/data/alphafold_tools.json +87 -0
  28. tooluniverse-1.0.1/src/tooluniverse/data/boltz_tools.json +9 -0
  29. tooluniverse-1.0.1/src/tooluniverse/data/chembl_tools.json +16 -0
  30. tooluniverse-1.0.1/src/tooluniverse/data/clinicaltrials_gov_tools.json +326 -0
  31. tooluniverse-1.0.1/src/tooluniverse/data/compose_tools.json +202 -0
  32. tooluniverse-1.0.1/src/tooluniverse/data/dailymed_tools.json +70 -0
  33. tooluniverse-1.0.1/src/tooluniverse/data/dataset_tools.json +646 -0
  34. tooluniverse-1.0.1/src/tooluniverse/data/disease_target_score_tools.json +712 -0
  35. tooluniverse-1.0.1/src/tooluniverse/data/efo_tools.json +17 -0
  36. tooluniverse-1.0.1/src/tooluniverse/data/embedding_tools.json +319 -0
  37. tooluniverse-1.0.1/src/tooluniverse/data/enrichr_tools.json +31 -0
  38. tooluniverse-1.0.1/src/tooluniverse/data/europe_pmc_tools.json +22 -0
  39. tooluniverse-1.0.1/src/tooluniverse/data/expert_feedback_tools.json +10 -0
  40. tooluniverse-1.0.1/src/tooluniverse/data/fda_drug_adverse_event_tools.json +491 -0
  41. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/src/tooluniverse/data/fda_drug_labeling_tools.json +1 -1
  42. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/src/tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py +76929 -148860
  43. tooluniverse-1.0.1/src/tooluniverse/data/finder_tools.json +209 -0
  44. tooluniverse-1.0.1/src/tooluniverse/data/gene_ontology_tools.json +113 -0
  45. tooluniverse-1.0.1/src/tooluniverse/data/gwas_tools.json +1082 -0
  46. tooluniverse-1.0.1/src/tooluniverse/data/hpa_tools.json +333 -0
  47. tooluniverse-1.0.1/src/tooluniverse/data/humanbase_tools.json +47 -0
  48. tooluniverse-1.0.1/src/tooluniverse/data/idmap_tools.json +74 -0
  49. tooluniverse-1.0.1/src/tooluniverse/data/mcp_client_tools_example.json +113 -0
  50. tooluniverse-1.0.1/src/tooluniverse/data/mcpautoloadertool_defaults.json +28 -0
  51. tooluniverse-1.0.1/src/tooluniverse/data/medlineplus_tools.json +141 -0
  52. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/src/tooluniverse/data/monarch_tools.json +1 -1
  53. tooluniverse-1.0.1/src/tooluniverse/data/openalex_tools.json +36 -0
  54. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/src/tooluniverse/data/opentarget_tools.json +1 -1
  55. tooluniverse-1.0.1/src/tooluniverse/data/output_summarization_tools.json +101 -0
  56. tooluniverse-1.0.1/src/tooluniverse/data/packages/bioinformatics_core_tools.json +1756 -0
  57. tooluniverse-1.0.1/src/tooluniverse/data/packages/categorized_tools.txt +206 -0
  58. tooluniverse-1.0.1/src/tooluniverse/data/packages/cheminformatics_tools.json +347 -0
  59. tooluniverse-1.0.1/src/tooluniverse/data/packages/earth_sciences_tools.json +74 -0
  60. tooluniverse-1.0.1/src/tooluniverse/data/packages/genomics_tools.json +776 -0
  61. tooluniverse-1.0.1/src/tooluniverse/data/packages/image_processing_tools.json +38 -0
  62. tooluniverse-1.0.1/src/tooluniverse/data/packages/machine_learning_tools.json +789 -0
  63. tooluniverse-1.0.1/src/tooluniverse/data/packages/neuroscience_tools.json +62 -0
  64. tooluniverse-1.0.1/src/tooluniverse/data/packages/original_tools.txt +0 -0
  65. tooluniverse-1.0.1/src/tooluniverse/data/packages/physics_astronomy_tools.json +62 -0
  66. tooluniverse-1.0.1/src/tooluniverse/data/packages/scientific_computing_tools.json +560 -0
  67. tooluniverse-1.0.1/src/tooluniverse/data/packages/single_cell_tools.json +453 -0
  68. tooluniverse-1.0.1/src/tooluniverse/data/packages/structural_biology_tools.json +396 -0
  69. tooluniverse-1.0.1/src/tooluniverse/data/packages/visualization_tools.json +399 -0
  70. tooluniverse-1.0.1/src/tooluniverse/data/pubchem_tools.json +215 -0
  71. tooluniverse-1.0.1/src/tooluniverse/data/pubtator_tools.json +68 -0
  72. tooluniverse-1.0.1/src/tooluniverse/data/rcsb_pdb_tools.json +1332 -0
  73. tooluniverse-1.0.1/src/tooluniverse/data/reactome_tools.json +19 -0
  74. tooluniverse-1.0.1/src/tooluniverse/data/semantic_scholar_tools.json +26 -0
  75. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/src/tooluniverse/data/special_tools.json +2 -25
  76. tooluniverse-1.0.1/src/tooluniverse/data/tool_composition_tools.json +88 -0
  77. tooluniverse-1.0.1/src/tooluniverse/data/toolfinderkeyword_defaults.json +34 -0
  78. tooluniverse-1.0.1/src/tooluniverse/data/txagent_client_tools.json +9 -0
  79. tooluniverse-1.0.1/src/tooluniverse/data/uniprot_tools.json +211 -0
  80. tooluniverse-1.0.1/src/tooluniverse/data/url_fetch_tools.json +94 -0
  81. tooluniverse-1.0.1/src/tooluniverse/data/uspto_downloader_tools.json +9 -0
  82. tooluniverse-1.0.1/src/tooluniverse/data/uspto_tools.json +811 -0
  83. tooluniverse-1.0.1/src/tooluniverse/data/xml_tools.json +3275 -0
  84. tooluniverse-1.0.1/src/tooluniverse/dataset_tool.py +296 -0
  85. tooluniverse-1.0.1/src/tooluniverse/default_config.py +165 -0
  86. tooluniverse-1.0.1/src/tooluniverse/efo_tool.py +42 -0
  87. tooluniverse-1.0.1/src/tooluniverse/embedding_database.py +630 -0
  88. tooluniverse-1.0.1/src/tooluniverse/embedding_sync.py +396 -0
  89. tooluniverse-1.0.1/src/tooluniverse/enrichr_tool.py +266 -0
  90. tooluniverse-1.0.1/src/tooluniverse/europe_pmc_tool.py +52 -0
  91. tooluniverse-1.0.1/src/tooluniverse/execute_function.py +1903 -0
  92. tooluniverse-1.0.1/src/tooluniverse/extended_hooks.py +444 -0
  93. tooluniverse-1.0.1/src/tooluniverse/gene_ontology_tool.py +194 -0
  94. tooluniverse-1.0.1/src/tooluniverse/graphql_tool.py +244 -0
  95. tooluniverse-1.0.1/src/tooluniverse/gwas_tool.py +358 -0
  96. tooluniverse-1.0.1/src/tooluniverse/hpa_tool.py +1645 -0
  97. tooluniverse-1.0.1/src/tooluniverse/humanbase_tool.py +389 -0
  98. tooluniverse-1.0.1/src/tooluniverse/logging_config.py +254 -0
  99. tooluniverse-1.0.1/src/tooluniverse/mcp_client_tool.py +764 -0
  100. tooluniverse-1.0.1/src/tooluniverse/mcp_integration.py +413 -0
  101. tooluniverse-1.0.1/src/tooluniverse/mcp_tool_registry.py +925 -0
  102. tooluniverse-1.0.1/src/tooluniverse/medlineplus_tool.py +337 -0
  103. tooluniverse-1.0.1/src/tooluniverse/openalex_tool.py +228 -0
  104. tooluniverse-1.0.1/src/tooluniverse/openfda_adv_tool.py +283 -0
  105. tooluniverse-1.0.1/src/tooluniverse/openfda_tool.py +655 -0
  106. tooluniverse-1.0.1/src/tooluniverse/output_hook.py +1122 -0
  107. tooluniverse-1.0.1/src/tooluniverse/package_tool.py +195 -0
  108. tooluniverse-1.0.1/src/tooluniverse/pubchem_tool.py +158 -0
  109. tooluniverse-1.0.1/src/tooluniverse/pubtator_tool.py +168 -0
  110. tooluniverse-1.0.1/src/tooluniverse/rcsb_pdb_tool.py +38 -0
  111. tooluniverse-1.0.1/src/tooluniverse/reactome_tool.py +108 -0
  112. tooluniverse-1.0.1/src/tooluniverse/remote/boltz/boltz_mcp_server.py +50 -0
  113. tooluniverse-1.0.1/src/tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +442 -0
  114. tooluniverse-1.0.1/src/tooluniverse/remote/expert_feedback/human_expert_mcp_tools.py +2013 -0
  115. tooluniverse-1.0.1/src/tooluniverse/remote/expert_feedback/simple_test.py +23 -0
  116. tooluniverse-1.0.1/src/tooluniverse/remote/expert_feedback/start_web_interface.py +188 -0
  117. tooluniverse-1.0.1/src/tooluniverse/remote/expert_feedback/web_only_interface.py +0 -0
  118. tooluniverse-1.0.1/src/tooluniverse/remote/immune_compass/compass_tool.py +327 -0
  119. tooluniverse-1.0.1/src/tooluniverse/remote/pinnacle/pinnacle_tool.py +328 -0
  120. tooluniverse-1.0.1/src/tooluniverse/remote/transcriptformer/transcriptformer_tool.py +586 -0
  121. tooluniverse-1.0.1/src/tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +61 -0
  122. tooluniverse-1.0.1/src/tooluniverse/remote/uspto_downloader/uspto_downloader_tool.py +120 -0
  123. tooluniverse-1.0.1/src/tooluniverse/remote_tool.py +99 -0
  124. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/src/tooluniverse/restful_tool.py +53 -30
  125. tooluniverse-1.0.1/src/tooluniverse/scripts/generate_tool_graph.py +408 -0
  126. tooluniverse-1.0.1/src/tooluniverse/scripts/visualize_tool_graph.py +829 -0
  127. tooluniverse-1.0.1/src/tooluniverse/semantic_scholar_tool.py +62 -0
  128. tooluniverse-1.0.1/src/tooluniverse/smcp.py +2452 -0
  129. tooluniverse-1.0.1/src/tooluniverse/smcp_server.py +975 -0
  130. tooluniverse-1.0.1/src/tooluniverse/test/mcp_server_test.py +0 -0
  131. tooluniverse-1.0.1/src/tooluniverse/test/test_admetai_tool.py +370 -0
  132. tooluniverse-1.0.1/src/tooluniverse/test/test_agentic_tool.py +129 -0
  133. tooluniverse-1.0.1/src/tooluniverse/test/test_alphafold_tool.py +71 -0
  134. tooluniverse-1.0.1/src/tooluniverse/test/test_chem_tool.py +37 -0
  135. tooluniverse-1.0.1/src/tooluniverse/test/test_compose_lieraturereview.py +63 -0
  136. tooluniverse-1.0.1/src/tooluniverse/test/test_compose_tool.py +448 -0
  137. tooluniverse-1.0.1/src/tooluniverse/test/test_dailymed.py +69 -0
  138. tooluniverse-1.0.1/src/tooluniverse/test/test_dataset_tool.py +200 -0
  139. tooluniverse-1.0.1/src/tooluniverse/test/test_disease_target_score.py +56 -0
  140. tooluniverse-1.0.1/src/tooluniverse/test/test_drugbank_filter_examples.py +179 -0
  141. tooluniverse-1.0.1/src/tooluniverse/test/test_efo.py +31 -0
  142. tooluniverse-1.0.1/src/tooluniverse/test/test_enrichr_tool.py +21 -0
  143. tooluniverse-1.0.1/src/tooluniverse/test/test_europe_pmc_tool.py +20 -0
  144. tooluniverse-1.0.1/src/tooluniverse/test/test_fda_adv.py +95 -0
  145. tooluniverse-1.0.1/src/tooluniverse/test/test_fda_drug_labeling.py +91 -0
  146. tooluniverse-1.0.1/src/tooluniverse/test/test_gene_ontology_tools.py +66 -0
  147. tooluniverse-1.0.1/src/tooluniverse/test/test_gwas_tool.py +139 -0
  148. tooluniverse-1.0.1/src/tooluniverse/test/test_hpa.py +625 -0
  149. tooluniverse-1.0.1/src/tooluniverse/test/test_humanbase_tool.py +20 -0
  150. tooluniverse-1.0.1/src/tooluniverse/test/test_idmap_tools.py +61 -0
  151. tooluniverse-1.0.1/src/tooluniverse/test/test_mcp_server.py +211 -0
  152. tooluniverse-1.0.1/src/tooluniverse/test/test_mcp_tool.py +247 -0
  153. tooluniverse-1.0.1/src/tooluniverse/test/test_medlineplus.py +220 -0
  154. tooluniverse-1.0.1/src/tooluniverse/test/test_openalex_tool.py +32 -0
  155. tooluniverse-1.0.1/src/tooluniverse/test/test_opentargets.py +28 -0
  156. tooluniverse-1.0.1/src/tooluniverse/test/test_pubchem_tool.py +116 -0
  157. tooluniverse-1.0.1/src/tooluniverse/test/test_pubtator_tool.py +37 -0
  158. tooluniverse-1.0.1/src/tooluniverse/test/test_rcsb_pdb_tool.py +86 -0
  159. tooluniverse-1.0.1/src/tooluniverse/test/test_reactome.py +54 -0
  160. tooluniverse-1.0.1/src/tooluniverse/test/test_semantic_scholar_tool.py +24 -0
  161. tooluniverse-1.0.1/src/tooluniverse/test/test_software_tools.py +147 -0
  162. tooluniverse-1.0.1/src/tooluniverse/test/test_tool_description_optimizer.py +49 -0
  163. tooluniverse-1.0.1/src/tooluniverse/test/test_tool_finder.py +26 -0
  164. tooluniverse-1.0.1/src/tooluniverse/test/test_tool_finder_llm.py +252 -0
  165. tooluniverse-1.0.1/src/tooluniverse/test/test_tools_find.py +195 -0
  166. tooluniverse-1.0.1/src/tooluniverse/test/test_uniprot_tools.py +74 -0
  167. tooluniverse-1.0.1/src/tooluniverse/test/test_uspto_tool.py +72 -0
  168. tooluniverse-1.0.1/src/tooluniverse/test/test_xml_tool.py +113 -0
  169. tooluniverse-1.0.1/src/tooluniverse/tool_finder_embedding.py +267 -0
  170. tooluniverse-1.0.1/src/tooluniverse/tool_finder_keyword.py +693 -0
  171. tooluniverse-1.0.1/src/tooluniverse/tool_finder_llm.py +699 -0
  172. tooluniverse-1.0.1/src/tooluniverse/tool_graph_web_ui.py +955 -0
  173. tooluniverse-1.0.1/src/tooluniverse/tool_registry.py +416 -0
  174. tooluniverse-1.0.1/src/tooluniverse/uniprot_tool.py +155 -0
  175. tooluniverse-1.0.1/src/tooluniverse/url_tool.py +253 -0
  176. tooluniverse-1.0.1/src/tooluniverse/uspto_tool.py +240 -0
  177. tooluniverse-1.0.1/src/tooluniverse/utils.py +500 -0
  178. tooluniverse-1.0.1/src/tooluniverse/xml_tool.py +369 -0
  179. tooluniverse-1.0.1/src/tooluniverse.egg-info/PKG-INFO +387 -0
  180. tooluniverse-1.0.1/src/tooluniverse.egg-info/SOURCES.txt +185 -0
  181. tooluniverse-1.0.1/src/tooluniverse.egg-info/entry_points.txt +9 -0
  182. tooluniverse-1.0.1/src/tooluniverse.egg-info/requires.txt +58 -0
  183. tooluniverse-0.2.0/PKG-INFO +0 -139
  184. tooluniverse-0.2.0/README.md +0 -120
  185. tooluniverse-0.2.0/pyproject.toml +0 -37
  186. tooluniverse-0.2.0/src/tooluniverse/__init__.py +0 -17
  187. tooluniverse-0.2.0/src/tooluniverse/base_tool.py +0 -32
  188. tooluniverse-0.2.0/src/tooluniverse/execute_function.py +0 -223
  189. tooluniverse-0.2.0/src/tooluniverse/generate_mcp_tools.py +0 -113
  190. tooluniverse-0.2.0/src/tooluniverse/graphql_tool.py +0 -122
  191. tooluniverse-0.2.0/src/tooluniverse/mcp_server.py +0 -3340
  192. tooluniverse-0.2.0/src/tooluniverse/openfda_tool.py +0 -422
  193. tooluniverse-0.2.0/src/tooluniverse/utils.py +0 -172
  194. tooluniverse-0.2.0/src/tooluniverse.egg-info/PKG-INFO +0 -139
  195. tooluniverse-0.2.0/src/tooluniverse.egg-info/SOURCES.txt +0 -24
  196. tooluniverse-0.2.0/src/tooluniverse.egg-info/entry_points.txt +0 -4
  197. tooluniverse-0.2.0/src/tooluniverse.egg-info/requires.txt +0 -8
  198. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/LICENSE +0 -0
  199. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/setup.cfg +0 -0
  200. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/src/tooluniverse/data/__init__.py +0 -0
  201. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/src/tooluniverse.egg-info/dependency_links.txt +0 -0
  202. {tooluniverse-0.2.0 → tooluniverse-1.0.1}/src/tooluniverse.egg-info/top_level.txt +0 -0
@@ -0,0 +1,387 @@
1
+ Metadata-Version: 2.4
2
+ Name: tooluniverse
3
+ Version: 1.0.1
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
+ # Auto-setup pre-commit hooks
150
+ ./setup_precommit.sh
151
+ ```
152
+
153
+ **Pre-commit Hooks:**
154
+ Pre-commit hooks ensure code quality on every commit:
155
+ - **Code formatting** with Black
156
+ - **Linting** with flake8 and ruff
157
+ - **Import cleanup** with autoflake
158
+ - **File validation** (YAML, TOML, AST checks)
159
+
160
+ → **Complete Installation Tutorial**: [Installation Tutorial](https://zitniklab.hms.harvard.edu/bioagent/installation.html)
161
+
162
+ ## 🔧 Usage & Integration
163
+
164
+ ToolUniverse supports multiple integration methods for different use cases:
165
+
166
+ ### Python SDK Integration
167
+
168
+ ```python
169
+ from tooluniverse import ToolUniverse
170
+
171
+ # Initialize and load tools
172
+ tu = ToolUniverse()
173
+ tu.load_tools()
174
+
175
+ # Find relevant tools
176
+ tools = tu.run({
177
+ "name": "Tool_Finder_Keyword",
178
+ "arguments": {"query": "protein structure prediction"}
179
+ })
180
+
181
+ # Execute tools
182
+ result = tu.run({
183
+ "name": "UniProt_get_protein_info",
184
+ "arguments": {"gene_symbol": "BRCA1"}
185
+ })
186
+ ```
187
+
188
+ ### AI Assistant Integration
189
+
190
+ **🖥️ Claude Desktop**: Native integration with Claude AI assistant → [Setup Tutorial](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_desktop.html)
191
+ **💻 Claude Code**: Claude Code environment integration → [Setup Tutorial](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_code.html)
192
+ **🔮 Gemini CLI**: Google's AI agent integration → [Setup Tutorial](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/gemini_cli.html)
193
+ **🧠 Qwen Code**: AI scientist integration with Qwen Code environment → [Setup Tutorial](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/qwen_code.html)
194
+ **⚡ 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)
195
+ **🎯 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)
196
+
197
+ → **AI Assistant Setup Guides**: [Building AI Scientists](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/index.html)
198
+
199
+ ### MCP Server Integration
200
+
201
+ ```bash
202
+ # Start MCP server
203
+ python -m tooluniverse.smcp_server
204
+
205
+ # Or with CLI
206
+ tooluniverse-mcp --help
207
+ ```
208
+
209
+ ### Core Capabilities
210
+
211
+ - **🔍 Find Tool Operation**: Maps natural-language descriptions to tool specifications using semantic search
212
+ - **⚙️ Call Tool Operation**: Executes selected tools with structured arguments and returns text, embeddings, or JSON
213
+ - **🔗 Tool Composition**: Chains tools for sequential or parallel execution in self-directed workflows
214
+ - **🛠️ Tool Creation**: Automatically creates new tools from natural language descriptions
215
+ - **🔄 Iterative Optimization**: Refines tool interfaces and specifications for correct use by AI scientists
216
+ - **🌐 Shared Environment**: Unifies tools, data, and analysts into a common ecosystem for interoperability and reuse
217
+
218
+ → **Detailed Usage Tutorial**: [README_USAGE.md](README_USAGE.md)
219
+ → **Complete Getting Started**: [Getting Started Tutorial](https://zitniklab.hms.harvard.edu/bioagent/getting_started.html)
220
+
221
+
222
+ ## 📚 Documentation
223
+
224
+ Our comprehensive documentation covers everything from quick start to advanced workflows:
225
+
226
+ ### 🚀 Getting Started
227
+ - **[Quick Start Tutorial](https://zitniklab.hms.harvard.edu/bioagent/quickstart.html)**: 5-minute setup and first query
228
+ - **[Installation](https://zitniklab.hms.harvard.edu/bioagent/installation.html)**: Complete installation options
229
+ - **[Getting Started](https://zitniklab.hms.harvard.edu/bioagent/getting_started.html)**: Step-by-step tutorial
230
+ - **[AI-Tool Protocol](https://zitniklab.hms.harvard.edu/bioagent/guide/interaction_protocol.html)**: Understanding the interaction protocol
231
+
232
+ ### 📖 User Guides
233
+ - **[Loading Tools](https://zitniklab.hms.harvard.edu/bioagent/guide/loading_tools.html)**: Complete Tutorial to loading tools
234
+ - **[Tool Discovery](https://zitniklab.hms.harvard.edu/bioagent/tutorials/finding_tools.html)**: Find tools by keyword, LLM, and embedding search
235
+ - **[Tool Caller](https://zitniklab.hms.harvard.edu/bioagent/guide/tool_caller.html)**: Primary execution engine
236
+ - **[Tool Composition](https://zitniklab.hms.harvard.edu/bioagent/guide/tool_composition.html)**: Chain tools into workflows
237
+ - **[Scientific Workflows](https://zitniklab.hms.harvard.edu/bioagent/guide/scientific_workflows.html)**: Real-world research scenarios
238
+
239
+ ### 🤖 Building AI Scientists
240
+ - **[Overview](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/index.html)**: Create AI research assistants from any LLM
241
+ - **[Claude Desktop Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_desktop.html)**: Native MCP integration with Claude Desktop App
242
+ - **[Claude Code Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_code.html)**: AI scientist development in Claude Code environment
243
+ - **[Gemini CLI Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/gemini_cli.html)**: Command-line scientific research with Google Gemini
244
+ - **[Qwen Code Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/qwen_code.html)**: AI scientist workflows in Qwen Code environment
245
+ - **[GPT Codex CLI Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/codex_cli.html)**: Terminal-based research with OpenAI Codex
246
+ - **[ChatGPT API Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/chatgpt_api.html)**: Programmatic research with ChatGPT function calling
247
+
248
+ ### 🛠️ Advanced Features
249
+ - **[Hooks System](https://zitniklab.hms.harvard.edu/bioagent/guide/hooks/index.html)**: Intelligent output processing
250
+ - **[Expert Feedback](https://zitniklab.hms.harvard.edu/bioagent/tutorials/expert_feedback.html)**: Human-in-the-loop consultation
251
+ - **[Agentic Tools](https://zitniklab.hms.harvard.edu/bioagent/tutorials/agentic_tools_tutorial.html)**: AI-powered tool development
252
+ - **[Case Study](https://zitniklab.hms.harvard.edu/bioagent/tutorials/tooluniverse_case_study.html)**: End-to-end drug discovery workflow
253
+
254
+ ### 🔧 Expanding ToolUniverse
255
+ - **[Architecture](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/architecture.html)**: System architecture overview
256
+ - **[Local Tool Registration](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/local_tool_registration.html)**: Create custom tools
257
+ - **[Remote Tool Registration](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/remote_tool_registration.html)**: Integrate external services
258
+ - **[Contributing Tools](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/comprehensive_tool_guide.html)**: Complete contribution Tutorial
259
+
260
+ ### 📚 API Reference
261
+ - **[API Directory](https://zitniklab.hms.harvard.edu/bioagent/api_directory.html)**: Complete tool listing
262
+ - **[Tools Reference](https://zitniklab.hms.harvard.edu/bioagent/api/tools_complete_reference.html)**: Detailed API documentation
263
+ - **[Quick Reference](https://zitniklab.hms.harvard.edu/bioagent/api_quick_reference.html)**: Essential API Tutorial
264
+
265
+ ### 🆘 Help & Support
266
+ - **[FAQ](https://zitniklab.hms.harvard.edu/bioagent/faq.html)**: Frequently asked questions
267
+ - **[Troubleshooting](https://zitniklab.hms.harvard.edu/bioagent/troubleshooting.html)**: Common issues and solutions
268
+ - **[Help Index](https://zitniklab.hms.harvard.edu/bioagent/help/index.html)**: Support resources
269
+
270
+ → **Browse All Documentation**: [ToolUniverse Documentation](https://zitniklab.hms.harvard.edu/bioagent/)
271
+
272
+ ## 🚀 AI Scientists Projects Powered by ToolUniverse
273
+
274
+ ### TxAgent: AI Agent for Therapeutic Reasoning
275
+
276
+ **TxAgent** is an AI agent for therapeutic reasoning that leverages ToolUniverse's comprehensive scientific tool ecosystem to solve complex therapeutic reasoning tasks.
277
+
278
+ [![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)
279
+
280
+ ---
281
+
282
+ *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.*
283
+
284
+ ## 🌍 Ecosystem & Community
285
+
286
+ ### Democratizing AI Agents for Science
287
+
288
+ 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.
289
+
290
+ **Core Principles:**
291
+
292
+ - **🔓 Unified Ecosystem**: Integrates tools, data, and analysts into a common environment like omics platforms
293
+ - **📐 Standardized Protocol**: AI-tool interaction protocol analogous to HTTP for internet communication
294
+ - **🔗 Interoperability**: Tool specification schema that standardizes definitions and enables consistent inference
295
+ - **🌐 Collaborative Discovery**: Enables AI scientists to serve as computational partners in research
296
+ - **🚀 Scalable Construction**: Builds AI scientists at scale without bespoke implementation
297
+
298
+ ### Research Applications
299
+
300
+ **🧬 Drug Discovery & Development**
301
+ - Target identification and validation
302
+ - Compound screening and optimization
303
+ - Safety and toxicity assessment
304
+ - Clinical trial analysis and outcomes
305
+ - **Case Study**: Hypercholesterolemia research where ToolUniverse enabled an AI scientist to identify a potent drug analog with favorable predicted properties
306
+
307
+ **🔬 Molecular Biology Research**
308
+ - Gene function annotation and analysis
309
+ - Protein structure prediction and modeling
310
+ - Pathway analysis and network construction
311
+ - Disease association studies
312
+
313
+ **📊 Literature & Knowledge Mining**
314
+ - Automated systematic literature reviews
315
+ - Named entity recognition and extraction
316
+ - Citation network analysis and mapping
317
+ - Patent landscape analysis and IP research
318
+
319
+ **🤖 AI-Driven Research Automation**
320
+ - Hypothesis generation and testing
321
+ - Experimental design optimization
322
+ - Multi-modal data analysis and integration
323
+ - Results interpretation and reporting
324
+
325
+ ### Community & Support
326
+
327
+ **Get Involved:**
328
+ - 🐛 **Report Issues**: [GitHub Issues](https://github.com/mims-harvard/ToolUniverse/issues)
329
+ - 💬 **Join Discussions**: [GitHub Discussions](https://github.com/mims-harvard/ToolUniverse/discussions)
330
+ - 📧 **Contact**: Visit [aiscientist.tools](https://aiscientist.tools) for more information
331
+ - 🤝 **Contribute**: See our [Contributing Tutorial](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/comprehensive_tool_guide.html)
332
+
333
+ **Integrations & Extensions:**
334
+ - **Model Context Protocol (MCP)**: Full MCP server support for AI assistant integration
335
+ - **Claude Desktop**: Native integration with Anthropic's Claude Desktop App
336
+ - **OpenAI Function Calling**: Direct integration with ChatGPT and GPT models
337
+ - **Custom Agents**: Build domain-specific AI research assistants
338
+
339
+ ## Citation
340
+
341
+ ```
342
+ @misc{gao2025txagent,
343
+ title={TxAgent: An AI Agent for Therapeutic Reasoning Across a Universe of Tools},
344
+ author={Shanghua Gao and Richard Zhu and Zhenglun Kong and Ayush Noori and Xiaorui Su and Curtis Ginder and Theodoros Tsiligkaridis and Marinka Zitnik},
345
+ year={2025},
346
+ eprint={2503.10970},
347
+ archivePrefix={arXiv},
348
+ primaryClass={cs.AI},
349
+ url={https://arxiv.org/abs/2503.10970},
350
+ }
351
+ ```
352
+
353
+ ## Contact & Contributors
354
+
355
+ ### Contact
356
+
357
+ For questions, suggestions, or collaboration opportunities:
358
+
359
+ - **📧 Contact**: [Shanghua Gao](mailto:shanghuagao@gmail.com)
360
+ - **🌐 Web Platform**: [aiscientist.tools](https://aiscientist.tools)
361
+ - **💻 GitHub**: [github.com/mims-harvard/ToolUniverse](https://github.com/mims-harvard/ToolUniverse)
362
+
363
+ ### Contributors
364
+
365
+ - **[Shanghua Gao](https://shgao.site)**
366
+ - **[Richard Zhu](https://www.linkedin.com/in/richard-zhu-4236901a7/)**
367
+ - **[Pengwei Sui](mailto:pengwei_sui@hms.harvard.edu)**
368
+ - **[Zhenglun Kong](https://zlkong.github.io/homepage/)**
369
+ - **[Sufian Aldogom](mailto:saldogom@mit.edu)**
370
+ - **[Yepeng Huang](mailto:yepeng_huang@hms.harvard.edu)**
371
+ - **[Ayush Noori](https://www.ayushnoori.com/)**
372
+ - **[Reza Shamji](mailto:reza_shamji@hms.harvard.edu)**
373
+ - **[Krishna Parvataneni](mailto:krishna_parvataneni@hms.harvard.edu)**
374
+ - **[Theodoros Tsiligkaridis](https://sites.google.com/view/theo-t)**
375
+ - **[Marinka Zitnik](https://zitniklab.hms.harvard.edu/)**
376
+
377
+
378
+
379
+ ### Acknowledgments
380
+
381
+ 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.
382
+
383
+ ---
384
+
385
+ **🧬🤖🔬 Happy researching with ToolUniverse!**
386
+
387
+ *Democratizing AI agents for science - one tool at a time.*