tooluniverse 0.2.0__tar.gz → 1.0.0__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 (206) hide show
  1. tooluniverse-1.0.0/PKG-INFO +377 -0
  2. tooluniverse-1.0.0/README.md +312 -0
  3. tooluniverse-1.0.0/pyproject.toml +103 -0
  4. tooluniverse-1.0.0/src/tooluniverse/__init__.py +353 -0
  5. tooluniverse-1.0.0/src/tooluniverse/admetai_tool.py +84 -0
  6. tooluniverse-1.0.0/src/tooluniverse/agentic_tool.py +563 -0
  7. tooluniverse-1.0.0/src/tooluniverse/alphafold_tool.py +96 -0
  8. tooluniverse-1.0.0/src/tooluniverse/base_tool.py +155 -0
  9. tooluniverse-1.0.0/src/tooluniverse/boltz_tool.py +207 -0
  10. tooluniverse-1.0.0/src/tooluniverse/chem_tool.py +192 -0
  11. tooluniverse-1.0.0/src/tooluniverse/compose_scripts/__init__.py +1 -0
  12. tooluniverse-1.0.0/src/tooluniverse/compose_scripts/biomarker_discovery.py +293 -0
  13. tooluniverse-1.0.0/src/tooluniverse/compose_scripts/comprehensive_drug_discovery.py +186 -0
  14. tooluniverse-1.0.0/src/tooluniverse/compose_scripts/drug_safety_analyzer.py +89 -0
  15. tooluniverse-1.0.0/src/tooluniverse/compose_scripts/literature_tool.py +34 -0
  16. tooluniverse-1.0.0/src/tooluniverse/compose_scripts/output_summarizer.py +279 -0
  17. tooluniverse-1.0.0/src/tooluniverse/compose_scripts/tool_description_optimizer.py +681 -0
  18. tooluniverse-1.0.0/src/tooluniverse/compose_scripts/tool_discover.py +705 -0
  19. tooluniverse-1.0.0/src/tooluniverse/compose_scripts/tool_graph_composer.py +448 -0
  20. tooluniverse-1.0.0/src/tooluniverse/compose_tool.py +371 -0
  21. tooluniverse-1.0.0/src/tooluniverse/ctg_tool.py +1002 -0
  22. tooluniverse-1.0.0/src/tooluniverse/custom_tool.py +81 -0
  23. tooluniverse-1.0.0/src/tooluniverse/dailymed_tool.py +108 -0
  24. tooluniverse-1.0.0/src/tooluniverse/data/admetai_tools.json +155 -0
  25. tooluniverse-1.0.0/src/tooluniverse/data/agentic_tools.json +1156 -0
  26. tooluniverse-1.0.0/src/tooluniverse/data/alphafold_tools.json +87 -0
  27. tooluniverse-1.0.0/src/tooluniverse/data/boltz_tools.json +9 -0
  28. tooluniverse-1.0.0/src/tooluniverse/data/chembl_tools.json +16 -0
  29. tooluniverse-1.0.0/src/tooluniverse/data/clait_tools.json +108 -0
  30. tooluniverse-1.0.0/src/tooluniverse/data/clinicaltrials_gov_tools.json +326 -0
  31. tooluniverse-1.0.0/src/tooluniverse/data/compose_tools.json +202 -0
  32. tooluniverse-1.0.0/src/tooluniverse/data/dailymed_tools.json +70 -0
  33. tooluniverse-1.0.0/src/tooluniverse/data/dataset_tools.json +646 -0
  34. tooluniverse-1.0.0/src/tooluniverse/data/disease_target_score_tools.json +712 -0
  35. tooluniverse-1.0.0/src/tooluniverse/data/efo_tools.json +17 -0
  36. tooluniverse-1.0.0/src/tooluniverse/data/embedding_tools.json +319 -0
  37. tooluniverse-1.0.0/src/tooluniverse/data/enrichr_tools.json +31 -0
  38. tooluniverse-1.0.0/src/tooluniverse/data/europe_pmc_tools.json +22 -0
  39. tooluniverse-1.0.0/src/tooluniverse/data/expert_feedback_tools.json +10 -0
  40. tooluniverse-1.0.0/src/tooluniverse/data/fda_drug_adverse_event_tools.json +491 -0
  41. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/src/tooluniverse/data/fda_drug_labeling_tools.json +1 -1
  42. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/src/tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py +76929 -148860
  43. tooluniverse-1.0.0/src/tooluniverse/data/finder_tools.json +209 -0
  44. tooluniverse-1.0.0/src/tooluniverse/data/gene_ontology_tools.json +113 -0
  45. tooluniverse-1.0.0/src/tooluniverse/data/gwas_tools.json +1082 -0
  46. tooluniverse-1.0.0/src/tooluniverse/data/hpa_tools.json +333 -0
  47. tooluniverse-1.0.0/src/tooluniverse/data/humanbase_tools.json +47 -0
  48. tooluniverse-1.0.0/src/tooluniverse/data/idmap_tools.json +74 -0
  49. tooluniverse-1.0.0/src/tooluniverse/data/mcp_client_tools_example.json +113 -0
  50. tooluniverse-1.0.0/src/tooluniverse/data/mcpautoloadertool_defaults.json +28 -0
  51. tooluniverse-1.0.0/src/tooluniverse/data/medlineplus_tools.json +141 -0
  52. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/src/tooluniverse/data/monarch_tools.json +1 -1
  53. tooluniverse-1.0.0/src/tooluniverse/data/openalex_tools.json +36 -0
  54. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/src/tooluniverse/data/opentarget_tools.json +1 -1
  55. tooluniverse-1.0.0/src/tooluniverse/data/output_summarization_tools.json +101 -0
  56. tooluniverse-1.0.0/src/tooluniverse/data/packages/bioinformatics_core_tools.json +1756 -0
  57. tooluniverse-1.0.0/src/tooluniverse/data/packages/categorized_tools.txt +206 -0
  58. tooluniverse-1.0.0/src/tooluniverse/data/packages/cheminformatics_tools.json +347 -0
  59. tooluniverse-1.0.0/src/tooluniverse/data/packages/earth_sciences_tools.json +74 -0
  60. tooluniverse-1.0.0/src/tooluniverse/data/packages/genomics_tools.json +776 -0
  61. tooluniverse-1.0.0/src/tooluniverse/data/packages/image_processing_tools.json +38 -0
  62. tooluniverse-1.0.0/src/tooluniverse/data/packages/machine_learning_tools.json +789 -0
  63. tooluniverse-1.0.0/src/tooluniverse/data/packages/neuroscience_tools.json +62 -0
  64. tooluniverse-1.0.0/src/tooluniverse/data/packages/original_tools.txt +0 -0
  65. tooluniverse-1.0.0/src/tooluniverse/data/packages/physics_astronomy_tools.json +62 -0
  66. tooluniverse-1.0.0/src/tooluniverse/data/packages/scientific_computing_tools.json +560 -0
  67. tooluniverse-1.0.0/src/tooluniverse/data/packages/single_cell_tools.json +453 -0
  68. tooluniverse-1.0.0/src/tooluniverse/data/packages/software_tools.json +4954 -0
  69. tooluniverse-1.0.0/src/tooluniverse/data/packages/structural_biology_tools.json +396 -0
  70. tooluniverse-1.0.0/src/tooluniverse/data/packages/visualization_tools.json +399 -0
  71. tooluniverse-1.0.0/src/tooluniverse/data/pubchem_tools.json +215 -0
  72. tooluniverse-1.0.0/src/tooluniverse/data/pubtator_tools.json +68 -0
  73. tooluniverse-1.0.0/src/tooluniverse/data/rcsb_pdb_tools.json +1332 -0
  74. tooluniverse-1.0.0/src/tooluniverse/data/reactome_tools.json +19 -0
  75. tooluniverse-1.0.0/src/tooluniverse/data/semantic_scholar_tools.json +26 -0
  76. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/src/tooluniverse/data/special_tools.json +2 -25
  77. tooluniverse-1.0.0/src/tooluniverse/data/tool_composition_tools.json +88 -0
  78. tooluniverse-1.0.0/src/tooluniverse/data/toolfinderkeyword_defaults.json +34 -0
  79. tooluniverse-1.0.0/src/tooluniverse/data/txagent_client_tools.json +9 -0
  80. tooluniverse-1.0.0/src/tooluniverse/data/uniprot_tools.json +211 -0
  81. tooluniverse-1.0.0/src/tooluniverse/data/url_fetch_tools.json +94 -0
  82. tooluniverse-1.0.0/src/tooluniverse/data/uspto_downloader_tools.json +9 -0
  83. tooluniverse-1.0.0/src/tooluniverse/data/uspto_tools.json +811 -0
  84. tooluniverse-1.0.0/src/tooluniverse/data/xml_tools.json +3275 -0
  85. tooluniverse-1.0.0/src/tooluniverse/dataset_tool.py +296 -0
  86. tooluniverse-1.0.0/src/tooluniverse/default_config.py +165 -0
  87. tooluniverse-1.0.0/src/tooluniverse/efo_tool.py +42 -0
  88. tooluniverse-1.0.0/src/tooluniverse/embedding_database.py +630 -0
  89. tooluniverse-1.0.0/src/tooluniverse/embedding_sync.py +396 -0
  90. tooluniverse-1.0.0/src/tooluniverse/enrichr_tool.py +266 -0
  91. tooluniverse-1.0.0/src/tooluniverse/europe_pmc_tool.py +52 -0
  92. tooluniverse-1.0.0/src/tooluniverse/execute_function.py +1903 -0
  93. tooluniverse-1.0.0/src/tooluniverse/extended_hooks.py +444 -0
  94. tooluniverse-1.0.0/src/tooluniverse/gene_ontology_tool.py +194 -0
  95. tooluniverse-1.0.0/src/tooluniverse/graphql_tool.py +244 -0
  96. tooluniverse-1.0.0/src/tooluniverse/gwas_tool.py +358 -0
  97. tooluniverse-1.0.0/src/tooluniverse/hpa_tool.py +1645 -0
  98. tooluniverse-1.0.0/src/tooluniverse/humanbase_tool.py +389 -0
  99. tooluniverse-1.0.0/src/tooluniverse/logging_config.py +254 -0
  100. tooluniverse-1.0.0/src/tooluniverse/mcp_client_tool.py +764 -0
  101. tooluniverse-1.0.0/src/tooluniverse/mcp_integration.py +413 -0
  102. tooluniverse-1.0.0/src/tooluniverse/mcp_tool_registry.py +925 -0
  103. tooluniverse-1.0.0/src/tooluniverse/medlineplus_tool.py +337 -0
  104. tooluniverse-1.0.0/src/tooluniverse/openalex_tool.py +228 -0
  105. tooluniverse-1.0.0/src/tooluniverse/openfda_adv_tool.py +283 -0
  106. tooluniverse-1.0.0/src/tooluniverse/openfda_tool.py +655 -0
  107. tooluniverse-1.0.0/src/tooluniverse/output_hook.py +1122 -0
  108. tooluniverse-1.0.0/src/tooluniverse/package_tool.py +195 -0
  109. tooluniverse-1.0.0/src/tooluniverse/pubchem_tool.py +158 -0
  110. tooluniverse-1.0.0/src/tooluniverse/pubtator_tool.py +168 -0
  111. tooluniverse-1.0.0/src/tooluniverse/rcsb_pdb_tool.py +38 -0
  112. tooluniverse-1.0.0/src/tooluniverse/reactome_tool.py +108 -0
  113. tooluniverse-1.0.0/src/tooluniverse/remote/boltz/boltz_mcp_server.py +50 -0
  114. tooluniverse-1.0.0/src/tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +442 -0
  115. tooluniverse-1.0.0/src/tooluniverse/remote/expert_feedback/human_expert_mcp_tools.py +2013 -0
  116. tooluniverse-1.0.0/src/tooluniverse/remote/expert_feedback/simple_test.py +23 -0
  117. tooluniverse-1.0.0/src/tooluniverse/remote/expert_feedback/start_web_interface.py +188 -0
  118. tooluniverse-1.0.0/src/tooluniverse/remote/expert_feedback/web_only_interface.py +0 -0
  119. tooluniverse-1.0.0/src/tooluniverse/remote/expert_feedback_mcp/human_expert_mcp_server.py +1611 -0
  120. tooluniverse-1.0.0/src/tooluniverse/remote/expert_feedback_mcp/simple_test.py +34 -0
  121. tooluniverse-1.0.0/src/tooluniverse/remote/expert_feedback_mcp/start_web_interface.py +91 -0
  122. tooluniverse-1.0.0/src/tooluniverse/remote/immune_compass/compass_tool.py +327 -0
  123. tooluniverse-1.0.0/src/tooluniverse/remote/pinnacle/pinnacle_tool.py +328 -0
  124. tooluniverse-1.0.0/src/tooluniverse/remote/transcriptformer/transcriptformer_tool.py +586 -0
  125. tooluniverse-1.0.0/src/tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +61 -0
  126. tooluniverse-1.0.0/src/tooluniverse/remote/uspto_downloader/uspto_downloader_tool.py +120 -0
  127. tooluniverse-1.0.0/src/tooluniverse/remote_tool.py +99 -0
  128. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/src/tooluniverse/restful_tool.py +53 -30
  129. tooluniverse-1.0.0/src/tooluniverse/scripts/generate_tool_graph.py +408 -0
  130. tooluniverse-1.0.0/src/tooluniverse/scripts/visualize_tool_graph.py +829 -0
  131. tooluniverse-1.0.0/src/tooluniverse/semantic_scholar_tool.py +62 -0
  132. tooluniverse-1.0.0/src/tooluniverse/smcp.py +2452 -0
  133. tooluniverse-1.0.0/src/tooluniverse/smcp_server.py +975 -0
  134. tooluniverse-1.0.0/src/tooluniverse/test/mcp_server_test.py +0 -0
  135. tooluniverse-1.0.0/src/tooluniverse/test/test_admetai_tool.py +370 -0
  136. tooluniverse-1.0.0/src/tooluniverse/test/test_agentic_tool.py +129 -0
  137. tooluniverse-1.0.0/src/tooluniverse/test/test_alphafold_tool.py +71 -0
  138. tooluniverse-1.0.0/src/tooluniverse/test/test_chem_tool.py +37 -0
  139. tooluniverse-1.0.0/src/tooluniverse/test/test_compose_lieraturereview.py +63 -0
  140. tooluniverse-1.0.0/src/tooluniverse/test/test_compose_tool.py +448 -0
  141. tooluniverse-1.0.0/src/tooluniverse/test/test_dailymed.py +69 -0
  142. tooluniverse-1.0.0/src/tooluniverse/test/test_dataset_tool.py +200 -0
  143. tooluniverse-1.0.0/src/tooluniverse/test/test_disease_target_score.py +56 -0
  144. tooluniverse-1.0.0/src/tooluniverse/test/test_drugbank_filter_examples.py +179 -0
  145. tooluniverse-1.0.0/src/tooluniverse/test/test_efo.py +31 -0
  146. tooluniverse-1.0.0/src/tooluniverse/test/test_enrichr_tool.py +21 -0
  147. tooluniverse-1.0.0/src/tooluniverse/test/test_europe_pmc_tool.py +20 -0
  148. tooluniverse-1.0.0/src/tooluniverse/test/test_fda_adv.py +95 -0
  149. tooluniverse-1.0.0/src/tooluniverse/test/test_fda_drug_labeling.py +91 -0
  150. tooluniverse-1.0.0/src/tooluniverse/test/test_gene_ontology_tools.py +66 -0
  151. tooluniverse-1.0.0/src/tooluniverse/test/test_gwas_tool.py +139 -0
  152. tooluniverse-1.0.0/src/tooluniverse/test/test_hpa.py +625 -0
  153. tooluniverse-1.0.0/src/tooluniverse/test/test_humanbase_tool.py +20 -0
  154. tooluniverse-1.0.0/src/tooluniverse/test/test_idmap_tools.py +61 -0
  155. tooluniverse-1.0.0/src/tooluniverse/test/test_mcp_server.py +211 -0
  156. tooluniverse-1.0.0/src/tooluniverse/test/test_mcp_tool.py +247 -0
  157. tooluniverse-1.0.0/src/tooluniverse/test/test_medlineplus.py +220 -0
  158. tooluniverse-1.0.0/src/tooluniverse/test/test_openalex_tool.py +32 -0
  159. tooluniverse-1.0.0/src/tooluniverse/test/test_opentargets.py +28 -0
  160. tooluniverse-1.0.0/src/tooluniverse/test/test_pubchem_tool.py +116 -0
  161. tooluniverse-1.0.0/src/tooluniverse/test/test_pubtator_tool.py +37 -0
  162. tooluniverse-1.0.0/src/tooluniverse/test/test_rcsb_pdb_tool.py +86 -0
  163. tooluniverse-1.0.0/src/tooluniverse/test/test_reactome.py +54 -0
  164. tooluniverse-1.0.0/src/tooluniverse/test/test_semantic_scholar_tool.py +24 -0
  165. tooluniverse-1.0.0/src/tooluniverse/test/test_software_tools.py +147 -0
  166. tooluniverse-1.0.0/src/tooluniverse/test/test_tool_description_optimizer.py +49 -0
  167. tooluniverse-1.0.0/src/tooluniverse/test/test_tool_finder.py +26 -0
  168. tooluniverse-1.0.0/src/tooluniverse/test/test_tool_finder_llm.py +252 -0
  169. tooluniverse-1.0.0/src/tooluniverse/test/test_tools_find.py +195 -0
  170. tooluniverse-1.0.0/src/tooluniverse/test/test_uniprot_tools.py +74 -0
  171. tooluniverse-1.0.0/src/tooluniverse/test/test_uspto_tool.py +72 -0
  172. tooluniverse-1.0.0/src/tooluniverse/test/test_xml_tool.py +113 -0
  173. tooluniverse-1.0.0/src/tooluniverse/tool_finder_embedding.py +267 -0
  174. tooluniverse-1.0.0/src/tooluniverse/tool_finder_keyword.py +693 -0
  175. tooluniverse-1.0.0/src/tooluniverse/tool_finder_llm.py +699 -0
  176. tooluniverse-1.0.0/src/tooluniverse/tool_graph_web_ui.py +955 -0
  177. tooluniverse-1.0.0/src/tooluniverse/tool_registry.py +416 -0
  178. tooluniverse-1.0.0/src/tooluniverse/uniprot_tool.py +155 -0
  179. tooluniverse-1.0.0/src/tooluniverse/url_tool.py +253 -0
  180. tooluniverse-1.0.0/src/tooluniverse/uspto_tool.py +240 -0
  181. tooluniverse-1.0.0/src/tooluniverse/utils.py +500 -0
  182. tooluniverse-1.0.0/src/tooluniverse/xml_tool.py +369 -0
  183. tooluniverse-1.0.0/src/tooluniverse.egg-info/PKG-INFO +377 -0
  184. tooluniverse-1.0.0/src/tooluniverse.egg-info/SOURCES.txt +189 -0
  185. tooluniverse-1.0.0/src/tooluniverse.egg-info/entry_points.txt +9 -0
  186. tooluniverse-1.0.0/src/tooluniverse.egg-info/requires.txt +58 -0
  187. tooluniverse-0.2.0/PKG-INFO +0 -139
  188. tooluniverse-0.2.0/README.md +0 -120
  189. tooluniverse-0.2.0/pyproject.toml +0 -37
  190. tooluniverse-0.2.0/src/tooluniverse/__init__.py +0 -17
  191. tooluniverse-0.2.0/src/tooluniverse/base_tool.py +0 -32
  192. tooluniverse-0.2.0/src/tooluniverse/execute_function.py +0 -223
  193. tooluniverse-0.2.0/src/tooluniverse/generate_mcp_tools.py +0 -113
  194. tooluniverse-0.2.0/src/tooluniverse/graphql_tool.py +0 -122
  195. tooluniverse-0.2.0/src/tooluniverse/mcp_server.py +0 -3340
  196. tooluniverse-0.2.0/src/tooluniverse/openfda_tool.py +0 -422
  197. tooluniverse-0.2.0/src/tooluniverse/utils.py +0 -172
  198. tooluniverse-0.2.0/src/tooluniverse.egg-info/PKG-INFO +0 -139
  199. tooluniverse-0.2.0/src/tooluniverse.egg-info/SOURCES.txt +0 -24
  200. tooluniverse-0.2.0/src/tooluniverse.egg-info/entry_points.txt +0 -4
  201. tooluniverse-0.2.0/src/tooluniverse.egg-info/requires.txt +0 -8
  202. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/LICENSE +0 -0
  203. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/setup.cfg +0 -0
  204. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/src/tooluniverse/data/__init__.py +0 -0
  205. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/src/tooluniverse.egg-info/dependency_links.txt +0 -0
  206. {tooluniverse-0.2.0 → tooluniverse-1.0.0}/src/tooluniverse.egg-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.*