tooluniverse 1.0.4__tar.gz → 1.0.6__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 (238) hide show
  1. tooluniverse-1.0.6/LICENSE +201 -0
  2. {tooluniverse-1.0.4/src/tooluniverse.egg-info → tooluniverse-1.0.6}/PKG-INFO +101 -74
  3. tooluniverse-1.0.6/README.md +271 -0
  4. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/pyproject.toml +15 -2
  5. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/__init__.py +56 -5
  6. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/agentic_tool.py +90 -14
  7. tooluniverse-1.0.6/src/tooluniverse/arxiv_tool.py +113 -0
  8. tooluniverse-1.0.6/src/tooluniverse/biorxiv_tool.py +97 -0
  9. tooluniverse-1.0.6/src/tooluniverse/core_tool.py +153 -0
  10. tooluniverse-1.0.6/src/tooluniverse/crossref_tool.py +73 -0
  11. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/agentic_tools.json +2 -2
  12. tooluniverse-1.0.6/src/tooluniverse/data/arxiv_tools.json +87 -0
  13. tooluniverse-1.0.6/src/tooluniverse/data/biorxiv_tools.json +70 -0
  14. tooluniverse-1.0.6/src/tooluniverse/data/core_tools.json +105 -0
  15. tooluniverse-1.0.6/src/tooluniverse/data/crossref_tools.json +70 -0
  16. tooluniverse-1.0.6/src/tooluniverse/data/dblp_tools.json +73 -0
  17. tooluniverse-1.0.6/src/tooluniverse/data/doaj_tools.json +94 -0
  18. tooluniverse-1.0.6/src/tooluniverse/data/fatcat_tools.json +72 -0
  19. tooluniverse-1.0.6/src/tooluniverse/data/hal_tools.json +70 -0
  20. tooluniverse-1.0.6/src/tooluniverse/data/medrxiv_tools.json +70 -0
  21. tooluniverse-1.0.6/src/tooluniverse/data/odphp_tools.json +354 -0
  22. tooluniverse-1.0.6/src/tooluniverse/data/openaire_tools.json +85 -0
  23. tooluniverse-1.0.6/src/tooluniverse/data/osf_preprints_tools.json +77 -0
  24. tooluniverse-1.0.6/src/tooluniverse/data/pmc_tools.json +109 -0
  25. tooluniverse-1.0.6/src/tooluniverse/data/pubmed_tools.json +65 -0
  26. tooluniverse-1.0.6/src/tooluniverse/data/unpaywall_tools.json +86 -0
  27. tooluniverse-1.0.6/src/tooluniverse/data/wikidata_sparql_tools.json +42 -0
  28. tooluniverse-1.0.6/src/tooluniverse/data/zenodo_tools.json +82 -0
  29. tooluniverse-1.0.6/src/tooluniverse/dblp_tool.py +62 -0
  30. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/default_config.py +18 -0
  31. tooluniverse-1.0.6/src/tooluniverse/doaj_tool.py +124 -0
  32. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/execute_function.py +70 -9
  33. tooluniverse-1.0.6/src/tooluniverse/fatcat_tool.py +66 -0
  34. tooluniverse-1.0.6/src/tooluniverse/hal_tool.py +77 -0
  35. tooluniverse-1.0.6/src/tooluniverse/llm_clients.py +856 -0
  36. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/mcp_tool_registry.py +3 -3
  37. tooluniverse-1.0.6/src/tooluniverse/medrxiv_tool.py +97 -0
  38. tooluniverse-1.0.6/src/tooluniverse/odphp_tool.py +226 -0
  39. tooluniverse-1.0.6/src/tooluniverse/openaire_tool.py +145 -0
  40. tooluniverse-1.0.6/src/tooluniverse/osf_preprints_tool.py +67 -0
  41. tooluniverse-1.0.6/src/tooluniverse/pmc_tool.py +181 -0
  42. tooluniverse-1.0.6/src/tooluniverse/pubmed_tool.py +110 -0
  43. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/boltz/boltz_mcp_server.py +2 -2
  44. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +2 -2
  45. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/smcp.py +313 -191
  46. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/smcp_server.py +4 -7
  47. tooluniverse-1.0.6/src/tooluniverse/test/test_claude_sdk.py +93 -0
  48. tooluniverse-1.0.6/src/tooluniverse/test/test_odphp_tool.py +166 -0
  49. tooluniverse-1.0.6/src/tooluniverse/test/test_openrouter_client.py +288 -0
  50. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_stdio_hooks.py +1 -1
  51. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_tool_finder.py +1 -1
  52. tooluniverse-1.0.6/src/tooluniverse/unpaywall_tool.py +63 -0
  53. tooluniverse-1.0.6/src/tooluniverse/wikidata_sparql_tool.py +61 -0
  54. tooluniverse-1.0.6/src/tooluniverse/zenodo_tool.py +74 -0
  55. {tooluniverse-1.0.4 → tooluniverse-1.0.6/src/tooluniverse.egg-info}/PKG-INFO +101 -74
  56. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse.egg-info/SOURCES.txt +37 -0
  57. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse.egg-info/entry_points.txt +1 -0
  58. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse.egg-info/requires.txt +11 -0
  59. tooluniverse-1.0.4/LICENSE +0 -21
  60. tooluniverse-1.0.4/README.md +0 -254
  61. tooluniverse-1.0.4/src/tooluniverse/llm_clients.py +0 -369
  62. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/setup.cfg +0 -0
  63. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/admetai_tool.py +0 -0
  64. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/alphafold_tool.py +0 -0
  65. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/base_tool.py +0 -0
  66. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/boltz_tool.py +0 -0
  67. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/chem_tool.py +0 -0
  68. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/__init__.py +0 -0
  69. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/biomarker_discovery.py +0 -0
  70. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/comprehensive_drug_discovery.py +0 -0
  71. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/drug_safety_analyzer.py +0 -0
  72. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/literature_tool.py +0 -0
  73. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/output_summarizer.py +0 -0
  74. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/tool_description_optimizer.py +0 -0
  75. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/tool_discover.py +0 -0
  76. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/tool_graph_composer.py +0 -0
  77. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/tool_graph_generation.py +0 -0
  78. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_scripts/tool_metadata_generator.py +0 -0
  79. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/compose_tool.py +0 -0
  80. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/ctg_tool.py +0 -0
  81. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/custom_tool.py +0 -0
  82. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/dailymed_tool.py +0 -0
  83. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/__init__.py +0 -0
  84. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/admetai_tools.json +0 -0
  85. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/adverse_event_tools.json +0 -0
  86. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/alphafold_tools.json +0 -0
  87. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/boltz_tools.json +0 -0
  88. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/chembl_tools.json +0 -0
  89. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/clinicaltrials_gov_tools.json +0 -0
  90. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/compose_tools.json +0 -0
  91. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/dailymed_tools.json +0 -0
  92. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/dataset_tools.json +0 -0
  93. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/disease_target_score_tools.json +0 -0
  94. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/efo_tools.json +0 -0
  95. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/embedding_tools.json +0 -0
  96. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/enrichr_tools.json +0 -0
  97. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/europe_pmc_tools.json +0 -0
  98. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/expert_feedback_tools.json +0 -0
  99. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/fda_drug_adverse_event_tools.json +0 -0
  100. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/fda_drug_labeling_tools.json +0 -0
  101. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py +0 -0
  102. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/finder_tools.json +0 -0
  103. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/gene_ontology_tools.json +0 -0
  104. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/gwas_tools.json +0 -0
  105. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/hpa_tools.json +0 -0
  106. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/humanbase_tools.json +0 -0
  107. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/idmap_tools.json +0 -0
  108. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/mcp_client_tools_example.json +0 -0
  109. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/mcpautoloadertool_defaults.json +0 -0
  110. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/medlineplus_tools.json +0 -0
  111. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/monarch_tools.json +0 -0
  112. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/openalex_tools.json +0 -0
  113. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/opentarget_tools.json +0 -0
  114. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/output_summarization_tools.json +0 -0
  115. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/bioinformatics_core_tools.json +0 -0
  116. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/categorized_tools.txt +0 -0
  117. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/cheminformatics_tools.json +0 -0
  118. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/earth_sciences_tools.json +0 -0
  119. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/genomics_tools.json +0 -0
  120. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/image_processing_tools.json +0 -0
  121. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/machine_learning_tools.json +0 -0
  122. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/neuroscience_tools.json +0 -0
  123. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/original_tools.txt +0 -0
  124. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/physics_astronomy_tools.json +0 -0
  125. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/scientific_computing_tools.json +0 -0
  126. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/single_cell_tools.json +0 -0
  127. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/structural_biology_tools.json +0 -0
  128. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/packages/visualization_tools.json +0 -0
  129. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/pubchem_tools.json +0 -0
  130. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/pubtator_tools.json +0 -0
  131. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/rcsb_pdb_tools.json +0 -0
  132. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/reactome_tools.json +0 -0
  133. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/semantic_scholar_tools.json +0 -0
  134. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/special_tools.json +0 -0
  135. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/tool_composition_tools.json +0 -0
  136. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/toolfinderkeyword_defaults.json +0 -0
  137. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/txagent_client_tools.json +0 -0
  138. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/uniprot_tools.json +0 -0
  139. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/url_fetch_tools.json +0 -0
  140. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/uspto_downloader_tools.json +0 -0
  141. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/uspto_tools.json +0 -0
  142. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/data/xml_tools.json +0 -0
  143. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/dataset_tool.py +0 -0
  144. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/efo_tool.py +0 -0
  145. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/embedding_database.py +0 -0
  146. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/embedding_sync.py +0 -0
  147. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/enrichr_tool.py +0 -0
  148. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/europe_pmc_tool.py +0 -0
  149. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/extended_hooks.py +0 -0
  150. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/gene_ontology_tool.py +0 -0
  151. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/graphql_tool.py +0 -0
  152. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/gwas_tool.py +0 -0
  153. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/hpa_tool.py +0 -0
  154. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/humanbase_tool.py +0 -0
  155. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/logging_config.py +0 -0
  156. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/mcp_client_tool.py +0 -0
  157. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/mcp_integration.py +0 -0
  158. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/medlineplus_tool.py +0 -0
  159. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/openalex_tool.py +0 -0
  160. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/openfda_adv_tool.py +0 -0
  161. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/openfda_tool.py +0 -0
  162. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/output_hook.py +0 -0
  163. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/package_tool.py +0 -0
  164. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/pubchem_tool.py +0 -0
  165. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/pubtator_tool.py +0 -0
  166. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/rcsb_pdb_tool.py +0 -0
  167. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/reactome_tool.py +0 -0
  168. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +0 -0
  169. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/expert_feedback/human_expert_mcp_tools.py +0 -0
  170. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/expert_feedback/simple_test.py +0 -0
  171. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/expert_feedback/start_web_interface.py +0 -0
  172. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/expert_feedback/web_only_interface.py +0 -0
  173. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/immune_compass/compass_tool.py +0 -0
  174. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/pinnacle/pinnacle_tool.py +0 -0
  175. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/transcriptformer/transcriptformer_tool.py +0 -0
  176. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote/uspto_downloader/uspto_downloader_tool.py +0 -0
  177. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/remote_tool.py +0 -0
  178. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/restful_tool.py +0 -0
  179. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/scripts/filter_tool_files.py +0 -0
  180. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/scripts/generate_tool_graph.py +0 -0
  181. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/scripts/visualize_tool_graph.py +0 -0
  182. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/semantic_scholar_tool.py +0 -0
  183. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/list_azure_openai_models.py +0 -0
  184. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/mcp_server_test.py +0 -0
  185. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_admetai_tool.py +0 -0
  186. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_agentic_tool.py +0 -0
  187. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_agentic_tool_azure_models.py +0 -0
  188. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_alphafold_tool.py +0 -0
  189. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_api_key_validation_min.py +0 -0
  190. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_chem_tool.py +0 -0
  191. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_compose_lieraturereview.py +0 -0
  192. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_compose_tool.py +0 -0
  193. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_dailymed.py +0 -0
  194. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_dataset_tool.py +0 -0
  195. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_disease_target_score.py +0 -0
  196. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_drugbank_filter_examples.py +0 -0
  197. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_efo.py +0 -0
  198. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_enrichr_tool.py +0 -0
  199. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_europe_pmc_tool.py +0 -0
  200. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_fda_adv.py +0 -0
  201. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_fda_drug_labeling.py +0 -0
  202. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_gene_ontology_tools.py +0 -0
  203. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_global_fallback.py +0 -0
  204. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_gwas_tool.py +0 -0
  205. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_hooks_direct.py +0 -0
  206. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_hpa.py +0 -0
  207. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_humanbase_tool.py +0 -0
  208. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_idmap_tools.py +0 -0
  209. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_list_built_in_tools.py +0 -0
  210. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_mcp_server.py +0 -0
  211. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_mcp_tool.py +0 -0
  212. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_medlineplus.py +0 -0
  213. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_openalex_tool.py +0 -0
  214. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_opentargets.py +0 -0
  215. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_pubchem_tool.py +0 -0
  216. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_pubtator_tool.py +0 -0
  217. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_rcsb_pdb_tool.py +0 -0
  218. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_reactome.py +0 -0
  219. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_semantic_scholar_tool.py +0 -0
  220. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_software_tools.py +0 -0
  221. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_tool_description_optimizer.py +0 -0
  222. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_tool_finder_llm.py +0 -0
  223. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_tools_find.py +0 -0
  224. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_uniprot_tools.py +0 -0
  225. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_uspto_tool.py +0 -0
  226. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/test/test_xml_tool.py +0 -0
  227. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/tool_finder_embedding.py +0 -0
  228. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/tool_finder_keyword.py +0 -0
  229. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/tool_finder_llm.py +0 -0
  230. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/tool_graph_web_ui.py +0 -0
  231. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/tool_registry.py +0 -0
  232. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/uniprot_tool.py +0 -0
  233. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/url_tool.py +0 -0
  234. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/uspto_tool.py +0 -0
  235. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/utils.py +0 -0
  236. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse/xml_tool.py +0 -0
  237. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse.egg-info/dependency_links.txt +0 -0
  238. {tooluniverse-1.0.4 → tooluniverse-1.0.6}/src/tooluniverse.egg-info/top_level.txt +0 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [2025] [ToolUniverse team]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tooluniverse
3
- Version: 1.0.4
3
+ Version: 1.0.6
4
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
5
  Author-email: Shanghua Gao <shanghuagao@gmail.com>
6
- Project-URL: Homepage, https://github.com/mims-harvard/TxAgent
6
+ Project-URL: Homepage, https://github.com/mims-harvard/ToolUniverse
7
7
  Requires-Python: >=3.10
8
8
  Description-Content-Type: text/markdown
9
9
  License-File: LICENSE
@@ -38,19 +38,29 @@ Requires-Dist: aiohttp
38
38
  Provides-Extra: dev
39
39
  Requires-Dist: pytest>=6.0; extra == "dev"
40
40
  Requires-Dist: pytest-cov>=2.0; extra == "dev"
41
+ Requires-Dist: pytest-timeout>=2.3.1; extra == "dev"
42
+ Requires-Dist: pytest-mock>=3.14.0; extra == "dev"
43
+ Requires-Dist: requests-mock>=1.12.1; extra == "dev"
41
44
  Requires-Dist: black>=22.0; extra == "dev"
42
45
  Requires-Dist: flake8>=4.0; extra == "dev"
43
46
  Requires-Dist: pre-commit>=2.0; extra == "dev"
44
47
  Provides-Extra: docs
45
48
  Requires-Dist: sphinx>=4.0; extra == "docs"
49
+ Requires-Dist: furo>=2024.8.6; extra == "docs"
50
+ Requires-Dist: pydata-sphinx-theme>=0.15.0; extra == "docs"
46
51
  Requires-Dist: sphinx-rtd-theme>=1.0; extra == "docs"
47
52
  Requires-Dist: myst-parser>=0.18; extra == "docs"
53
+ Requires-Dist: linkify-it-py>=2.0.0; extra == "docs"
48
54
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
49
55
  Requires-Dist: sphinx-copybutton>=0.5.0; extra == "docs"
50
56
  Requires-Dist: sphinx-tabs>=3.2.0; extra == "docs"
51
57
  Requires-Dist: sphinx-design>=0.3.0; extra == "docs"
52
58
  Requires-Dist: sphinx-notfound-page>=0.8; extra == "docs"
53
59
  Requires-Dist: sphinx-autodoc-typehints>=1.12.0; extra == "docs"
60
+ Provides-Extra: embedding
61
+ Requires-Dist: sentence-transformers>=5.1.0; extra == "embedding"
62
+ Requires-Dist: faiss-cpu>=1.12.0; extra == "embedding"
63
+ Requires-Dist: huggingface_hub>=0.34.0; extra == "embedding"
54
64
  Provides-Extra: graph
55
65
  Requires-Dist: flask>=2.0.0; extra == "graph"
56
66
  Requires-Dist: matplotlib>=3.5.0; extra == "graph"
@@ -66,11 +76,12 @@ Dynamic: license-file
66
76
 
67
77
  # <img src="docs/_static/logo.png" alt="ToolUniverse Logo" height="28" style="vertical-align: middle; margin-right: 8px;" /> ToolUniverse: Democratizing AI scientists
68
78
 
79
+ [![Paper](https://img.shields.io/badge/Paper-Arxiv-blue)](https://arxiv.org/abs/2509.23426)
69
80
  [![ToolUniverse-PIP](https://img.shields.io/badge/PyPI-ToolUniverse-blue)](https://pypi.org/project/tooluniverse/)
70
81
  [![ToolUniverse](https://img.shields.io/badge/Code-ToolUniverse-purple)](https://github.com/mims-harvard/ToolUniverse)
71
82
  [![Model context protocol (MCP)](https://img.shields.io/badge/Model_Context_Protocol_(MCP)_Supported-green)](README_USAGE.md#running-the-mcp-server)
72
- [![Documentation](https://img.shields.io/badge/Documentation-Available-green)](https://zitniklab.hms.harvard.edu/bioagent/)
73
- [![🌐Web Service](https://img.shields.io/badge/Web_Service-aiscientist.tools-blue)](https://aiscientist.tools)
83
+ [![Documentation](https://img.shields.io/badge/Documentation-Available-green)](https://zitniklab.hms.harvard.edu/ToolUniverse/)
84
+ [![🌐Web](https://img.shields.io/badge/Website-aiscientist.tools-blue)](https://aiscientist.tools)
74
85
  [![Slack](https://img.shields.io/badge/Slack-Join_Community-orange)](https://join.slack.com/t/tooluniversehq/shared_invite/zt-3dic3eoio-5xxoJch7TLNibNQn5_AREQ)
75
86
 
76
87
 
@@ -84,27 +95,34 @@ ToolUniverse is an ecosystem for creating AI scientist systems from any open or
84
95
  [![Visit Website](https://img.shields.io/badge/Visit_Website-AIScientist.Tools-4285F4?style=for-the-badge&logo=google-chrome&logoColor=white)](https://aiscientist.tools)
85
96
 
86
97
  [![Join Slack Community](https://img.shields.io/badge/Join_Slack_Community-Get_Help_&_Connect-FF6B6B?style=for-the-badge&logo=slack&logoColor=white)](https://join.slack.com/t/tooluniversehq/shared_invite/zt-3dic3eoio-5xxoJch7TLNibNQn5_AREQ)
87
- [![Join WeChat Group](https://img.shields.io/badge/Join_WeChat_Group-Community_&_Discussion-07C160?style=for-the-badge&logo=wechat&logoColor=white)](https://zitniklab.hms.harvard.edu/bioagent/wechat_community.html)
98
+ [![Join WeChat Group](https://img.shields.io/badge/Join_WeChat_Group-Community_&_Discussion-07C160?style=for-the-badge&logo=wechat&logoColor=white)](https://aiscientist.tools/wechat)
88
99
 
89
100
  [![Follow on LinkedIn](https://img.shields.io/badge/Follow_on_LinkedIn-Professional_Updates-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/tooluniverse-at-harvard-b9aa88385/)
90
101
  [![Follow on X](https://img.shields.io/badge/Follow_on_X-Latest_Updates-000000?style=for-the-badge&logo=x&logoColor=white)](https://x.com/ScientistTools)
91
102
 
92
103
  </div>
104
+ <p align="center">
105
+ <img src="https://github.com/user-attachments/assets/13ddb54c-4fcc-4507-8695-1c58e7bc1e68" width="600" />
106
+ </p>
93
107
 
94
- → **Complete Tool List**: [Available Tools](https://zitniklab.hms.harvard.edu/bioagent/tools/tools_config_index.html)
108
+ → **Complete Tool List**: [Available Tools](https://zitniklab.hms.harvard.edu/ToolUniverse/tools/tools_config_index.html)
95
109
 
96
110
  → **Check our website for direct tool usage**: [AIScientist.Tools](https://aiscientist.tools/)
97
111
 
98
112
 
99
113
  ## 🤖 Building AI Scientists with ToolUniverse in 5 minutes
100
- - **[Overview](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/index.html)**: Create AI scientists from any LLM
101
- - **[Claude Desktop Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_desktop.html)**: Native MCP integration with Claude Desktop App
102
- - **[Claude Code Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_code.html)**: AI scientist development in Claude Code environment
103
- - **[Gemini CLI Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/gemini_cli.html)**: Command-line scientific research with Google Gemini
104
- - **[Qwen Code Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/qwen_code.html)**: AI scientist workflows in Qwen Code environment
105
- - **[GPT Codex CLI Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/codex_cli.html)**: Terminal-based research with OpenAI Codex
106
- - **[ChatGPT API Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/chatgpt_api.html)**: Programmatic research with ChatGPT function calling
107
114
 
115
+ [![YouTube Video](https://img.youtube.com/vi/fManSJlSs60/maxresdefault.jpg)](https://www.youtube.com/watch?v=fManSJlSs60)
116
+ *Click the image above to watch the ToolUniverse demonstration*
117
+ [(Also in Bilibili)](https://www.bilibili.com/video/BV1GynhzjEos/?share_source=copy_web&vd_source=b398f13447281e748f5c41057a2c6858)
118
+
119
+ - **[Overview](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/index.html)**: Create AI scientists from any LLM
120
+ - **[Claude Desktop Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/claude_desktop.html)**: Native MCP integration with Claude Desktop App
121
+ - **[Claude Code Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/claude_code.html)**: AI scientist development in Claude Code environment
122
+ - **[Gemini CLI Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/gemini_cli.html)**: Command-line scientific research with Google Gemini
123
+ - **[Qwen Code Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/qwen_code.html)**: AI scientist workflows in Qwen Code environment
124
+ - **[GPT Codex CLI Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/codex_cli.html)**: Terminal-based research with OpenAI Codex
125
+ - **[ChatGPT API Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/chatgpt_api.html)**: Programmatic research with ChatGPT function calling
108
126
 
109
127
  ## 🔬 What is ToolUniverse?
110
128
 
@@ -114,18 +132,19 @@ ToolUniverse addresses this challenge by providing a standardized ecosystem that
114
132
 
115
133
  **Key Features:**
116
134
 
117
- - [**AI-Tool Interaction Protocol**](https://zitniklab.hms.harvard.edu/bioagent/guide/interaction_protocol.html): Standardized interface governing how AI scientists issue tool requests and receive results
118
- - [**Universal AI Model Support**](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/index.html): Works with any LLM, AI agent, or large reasoning model (GPT5, Claude, Gemini, Qwen, Deepseek, open models)
119
- - [**Easy to Load & Find & Call Tool**](https://zitniklab.hms.harvard.edu/bioagent/guide/index.html) (*[WebService](https://aiscientist.tools/), [PythonAPI](https://zitniklab.hms.harvard.edu/bioagent/api/modules.html), [MCP](https://zitniklab.hms.harvard.edu/bioagent/guide/mcp_support.html)*): Maps natural-language descriptions to tool specifications and executes tools with structured results
120
- - [**Tool Composition & Scientific Workflows**](https://zitniklab.hms.harvard.edu/bioagent/guide/tool_composition.html): Chains tools for sequential or parallel execution in self-directed scientific workflows
121
- - [**Continuous Expansion**](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/index.html): New tools can be easily registered locally or remotely without additional configuration
122
- - [**Multi-Agent Tool Creation & Optimization**](https://zitniklab.hms.harvard.edu/bioagent/guide/scientific_workflows.html): Multi-agent powered tool construction and iterative tool optimization
123
-
135
+ - [**AI-Tool Interaction Protocol**](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/interaction_protocol.html): Standardized interface governing how AI scientists issue tool requests and receive results
136
+ - [**Universal AI Model Support**](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/index.html): Works with any LLM, AI agent, or large reasoning model (GPT5, Claude, Gemini, Qwen, Deepseek, open models)
137
+ - [**OpenRouter Integration**](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/openrouter_support.html): Access 100+ models from OpenAI, Anthropic, Google, Qwen, and more through a single API
138
+ - [**Easy to Load & Find & Call Tool**](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/index.html) (*[WebService](https://aiscientist.tools/), [PythonAPI](https://zitniklab.hms.harvard.edu/ToolUniverse/api/modules.html), [MCP](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/mcp_support.html)*): Maps natural-language descriptions to tool specifications and executes tools with structured results
139
+ - [**Tool Composition & Scientific Workflows**](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/tool_composition.html): Chains tools for sequential or parallel execution in self-directed scientific workflows
140
+ - [**Continuous Expansion**](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/index.html): New tools can be easily registered locally or remotely without additional configuration
141
+ - [**Multi-Agent Tool Creation & Optimization**](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/scientific_workflows.html): Multi-agent powered tool construction and iterative tool optimization
124
142
 
143
+ <p align="center">
144
+ <img src="https://github.com/user-attachments/assets/eb15bd7c-4e73-464b-8d65-733877c96a51" width="888" />
145
+ </p>
125
146
 
126
147
 
127
- <!-- ![TxAgent](img/TxAgent_ToolUniverse.jpg) -->
128
-
129
148
  ## 🚀 Quick Start
130
149
 
131
150
  ```python
@@ -143,17 +162,17 @@ tu.load_tools() # Load 600+ scientific tools
143
162
  # 3. Use Find Tool operation to discover relevant tools
144
163
  tools = tu.run({
145
164
  "name": "Tool_Finder_Keyword",
146
- "arguments": {"query": "disease target associations"}
165
+ "arguments": {"description": "disease target associations", "limit": 10}
147
166
  })
148
167
 
149
168
  # 4. Use Call Tool operation to execute selected tool
150
169
  result = tu.run({
151
170
  "name": "OpenTargets_get_associated_targets_by_disease_efoId",
152
- "arguments": {"efoId": "EFO_0000249"}
171
+ "arguments": {"efoId": "EFO_0000537"} # hypertension
153
172
  })
154
173
  ```
155
174
 
156
- → **Complete Quick Start Tutorial**: [Quick Start Tutorial](https://zitniklab.hms.harvard.edu/bioagent/quickstart.html) [Getting Started Tutorial](https://zitniklab.hms.harvard.edu/bioagent/getting_started.html)
175
+ → **Complete Quick Start Tutorial**: [Quick Start Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/quickstart.html) [Getting Started Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/getting_started.html)
157
176
 
158
177
 
159
178
  ## 📦 Installation
@@ -164,7 +183,7 @@ result = tu.run({
164
183
  uv pip install tooluniverse
165
184
  ```
166
185
 
167
- → **Complete Installation Tutorial**: [Installation Tutorial](https://zitniklab.hms.harvard.edu/bioagent/installation.html)
186
+ → **Complete Installation Tutorial**: [Installation Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/installation.html)
168
187
 
169
188
  ## 🔧 Usage & Integration
170
189
 
@@ -182,17 +201,18 @@ tu.load_tools()
182
201
  # Find relevant tools
183
202
  tools = tu.run({
184
203
  "name": "Tool_Finder_Keyword", # Tool_Finder (Embedding model, GPU required), Tool_Finder_LLM (LLM-based model)
185
- "arguments": {"query": "protein structure prediction"}
204
+ "arguments": {"description": "protein structure prediction", "limit": 10}
186
205
  })
187
206
 
188
207
  # Execute tools
189
208
  result = tu.run({
190
- "name": "UniProt_get_protein_info",
191
- "arguments": {"gene_symbol": "BRCA1"}
209
+ "name": "UniProt_get_function_by_accession",
210
+ "arguments": {"accession": "P05067"}
192
211
  })
212
+
193
213
  ```
194
214
 
195
- → **Complete Tutorials**: [Installation Tutorial](https://zitniklab.hms.harvard.edu/bioagent/installation.html)
215
+ → **Complete Tutorials**: [Installation Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/installation.html)
196
216
 
197
217
  ### MCP Support
198
218
 
@@ -200,7 +220,7 @@ result = tu.run({
200
220
  # run one command to launch the tooluniverse mcp server
201
221
  tooluniverse-smcp
202
222
  ```
203
- → **Complete Tutorial**: [MCP Support](https://zitniklab.hms.harvard.edu/bioagent/guide/mcp_support.html)
223
+ → **Complete Tutorial**: [MCP Support](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/mcp_support.html)
204
224
 
205
225
 
206
226
  ## 🚀 AI Scientists Projects Powered by ToolUniverse
@@ -213,9 +233,11 @@ tooluniverse-smcp
213
233
 
214
234
 
215
235
  ---
216
- **Hypercholesterolemia Drug Discovery** [[Tutorial]](https://zitniklab.hms.harvard.edu/bioagent/tutorials/tooluniverse_case_study.html) [[Code]](https://colab.research.google.com/drive/1UwJ6RwyUoqI5risKQ365EeFdDQWOeOCv?usp=sharing)
236
+ **Hypercholesterolemia Drug Discovery** [[Tutorial]](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/tooluniverse_case_study.html) [[Code]](https://colab.research.google.com/drive/1UwJ6RwyUoqI5risKQ365EeFdDQWOeOCv?usp=sharing)
237
+ <p align="center">
238
+ <img src="https://github.com/user-attachments/assets/cc53e9b0-94d3-407d-a015-71762ddb9836" width="600" />
239
+ </p>
217
240
 
218
- ---
219
241
 
220
242
 
221
243
  ## 🤝 Contribution and Community
@@ -228,7 +250,7 @@ Please join our [Slack Channel](https://join.slack.com/t/tooluniversehq/shared_i
228
250
  - **Report Issues**: [GitHub Issues](https://github.com/mims-harvard/ToolUniverse/issues)
229
251
  - **Join Discussions**: [Slack Channel](https://github.com/mims-harvard/ToolUniverse/discussions)
230
252
  - **Contact**: Reach out to [Shanghua Gao](shanghuagao@gmail.com)/[Marinka Zitnik](marinka@hms.harvard.edu)
231
- - **Contribute**: See our [Contributing Tutorial](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/comprehensive_tool_guide.html)
253
+ - **Contribute**: See our [Contributing Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/comprehensive_tool_guide.html)
232
254
 
233
255
 
234
256
 
@@ -236,10 +258,10 @@ Please join our [Slack Channel](https://join.slack.com/t/tooluniversehq/shared_i
236
258
 
237
259
  - **[Shanghua Gao](https://shgao.site)**
238
260
  - **[Richard Zhu](https://www.linkedin.com/in/richard-zhu-4236901a7/)**
239
- - **[Pengwei Sui](mailto:pengwei_sui@hms.harvard.edu)**
261
+ - **[Pengwei Sui](https://psui3905.github.io/)**
240
262
  - **[Zhenglun Kong](https://zlkong.github.io/homepage/)**
241
263
  - **[Sufian Aldogom](mailto:saldogom@mit.edu)**
242
- - **[Yepeng Huang](mailto:yepeng_huang@hms.harvard.edu)**
264
+ - **[Yepeng Huang](https://yepeng.notion.site/Yepeng-Huang-16ad8dd1740080c28d4bd3e3d7c1080c)**
243
265
  - **[Ayush Noori](https://www.ayushnoori.com/)**
244
266
  - **[Reza Shamji](mailto:reza_shamji@hms.harvard.edu)**
245
267
  - **[Krishna Parvataneni](mailto:krishna_parvataneni@hms.harvard.edu)**
@@ -253,53 +275,63 @@ Please join our [Slack Channel](https://join.slack.com/t/tooluniversehq/shared_i
253
275
  Our comprehensive documentation covers everything from quick start to advanced workflows:
254
276
 
255
277
  ### 🚀 Getting Started
256
- - **[Quick Start Tutorial](https://zitniklab.hms.harvard.edu/bioagent/quickstart.html)**: 5-minute setup and first query
257
- - **[Installation](https://zitniklab.hms.harvard.edu/bioagent/installation.html)**: Complete installation options
258
- - **[Getting Started](https://zitniklab.hms.harvard.edu/bioagent/getting_started.html)**: Step-by-step tutorial
259
- - **[AI-Tool Protocol](https://zitniklab.hms.harvard.edu/bioagent/guide/interaction_protocol.html)**: Understanding the interaction protocol
278
+ - **[Quick Start Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/quickstart.html)**: 5-minute setup and first query
279
+ - **[Installation](https://zitniklab.hms.harvard.edu/ToolUniverse/installation.html)**: Complete installation options
280
+ - **[Getting Started](https://zitniklab.hms.harvard.edu/ToolUniverse/getting_started.html)**: Step-by-step tutorial
281
+ - **[AI-Tool Protocol](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/interaction_protocol.html)**: Understanding the interaction protocol
260
282
 
261
283
  ### 📖 User Guides
262
- - **[Loading Tools](https://zitniklab.hms.harvard.edu/bioagent/guide/loading_tools.html)**: Complete Tutorial to loading tools
263
- - **[Tool Discovery](https://zitniklab.hms.harvard.edu/bioagent/tutorials/finding_tools.html)**: Find tools by keyword, LLM, and embedding search
264
- - **[Tool Caller](https://zitniklab.hms.harvard.edu/bioagent/guide/tool_caller.html)**: Primary execution engine
265
- - **[Tool Composition](https://zitniklab.hms.harvard.edu/bioagent/guide/tool_composition.html)**: Chain tools into workflows
266
- - **[Scientific Workflows](https://zitniklab.hms.harvard.edu/bioagent/guide/scientific_workflows.html)**: Real-world research scenarios
267
- - **[MCP Support](https://zitniklab.hms.harvard.edu/bioagent/guide/mcp_support.html)**: Model Context Protocol integration
268
- - **[Logging](https://zitniklab.hms.harvard.edu/bioagent/guide/logging.html)**: Comprehensive logging configuration
284
+ - **[Loading Tools](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/loading_tools.html)**: Complete Tutorial to loading tools
285
+ - **[Tool Discovery](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/finding_tools.html)**: Find tools by keyword, LLM, and embedding search
286
+ - **[Tool Caller](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/tool_caller.html)**: Primary execution engine
287
+ - **[Tool Composition](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/tool_composition.html)**: Chain tools into workflows
288
+ - **[Scientific Workflows](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/scientific_workflows.html)**: Real-world research scenarios
289
+ - **[MCP Support](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/mcp_support.html)**: Model Context Protocol integration
290
+ - **[Logging](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/logging.html)**: Comprehensive logging configuration
269
291
 
270
292
  ### 🛠️ Advanced Features
271
- - **[Hooks System](https://zitniklab.hms.harvard.edu/bioagent/guide/hooks/index.html)**: Intelligent output processing
272
- - **[Hook Configuration](https://zitniklab.hms.harvard.edu/bioagent/guide/hooks/hook_configuration.html)**: Configure hooks for different outputs
273
- - **[File Save Hook](https://zitniklab.hms.harvard.edu/bioagent/guide/hooks/file_save_hook.html)**: Save tool outputs to files
274
- - **[Summarization Hook](https://zitniklab.hms.harvard.edu/bioagent/guide/hooks/summarization_hook.html)**: Summarize tool outputs
275
- - **[Server Stdio Hooks](https://zitniklab.hms.harvard.edu/bioagent/guide/hooks/server_stdio_hooks.html)**: Server communication hooks
276
- - **[Expert Feedback](https://zitniklab.hms.harvard.edu/bioagent/tutorials/expert_feedback.html)**: Human-in-the-loop consultation
277
- - **[Agentic Tools](https://zitniklab.hms.harvard.edu/bioagent/tutorials/agentic_tools_tutorial.html)**: AI-powered tool development
278
- - **[Case Study](https://zitniklab.hms.harvard.edu/bioagent/tutorials/tooluniverse_case_study.html)**: End-to-end drug discovery workflow
279
- - **[Tool Optimization](https://zitniklab.hms.harvard.edu/bioagent/tutorials/optimization/Tool_Description_Optimizer_Tutorial.html)**: Optimize tool descriptions for better performance
293
+ - **[Hooks System](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/hooks/index.html)**: Intelligent output processing
294
+ - **[Hook Configuration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/hooks/hook_configuration.html)**: Configure hooks for different outputs
295
+ - **[File Save Hook](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/hooks/file_save_hook.html)**: Save tool outputs to files
296
+ - **[Summarization Hook](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/hooks/summarization_hook.html)**: Summarize tool outputs
297
+ - **[Server Stdio Hooks](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/hooks/server_stdio_hooks.html)**: Server communication hooks
298
+ - **[Expert Feedback](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/expert_feedback.html)**: Human-in-the-loop consultation
299
+ - **[Agentic Tools](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/agentic_tools_tutorial.html)**: AI-powered tool development
300
+ - **[Case Study](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/tooluniverse_case_study.html)**: End-to-end drug discovery workflow
301
+ - **[Tool Optimization](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/optimization/Tool_Description_Optimizer_Tutorial.html)**: Optimize tool descriptions for better performance
280
302
 
281
303
  ### 🔧 Expanding ToolUniverse
282
- - **[Architecture](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/architecture.html)**: System architecture overview
283
- - **[Local Tool Registration](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/local_tool_registration.html)**: Create custom tools
284
- - **[Remote Tool Registration](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/remote_tool_registration.html)**: Integrate external services
285
- - **[Contributing Tools](https://zitniklab.hms.harvard.edu/bioagent/expand_tooluniverse/comprehensive_tool_guide.html)**: Complete contribution guide
286
- - **[Adding Tools Tutorial](https://zitniklab.hms.harvard.edu/bioagent/tutorials/addtools/Adding_Tools_Tutorial.html)**: Step-by-step tool addition guide
287
- - **[MCP Tool Registration](https://zitniklab.hms.harvard.edu/bioagent/tutorials/addtools/mcp_tool_registration_en.html)**: Register tools via MCP
304
+ - **[Architecture](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/architecture.html)**: System architecture overview
305
+ - **[Local Tool Registration](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/local_tool_registration.html)**: Create custom tools
306
+ - **[Remote Tool Registration](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/remote_tool_registration.html)**: Integrate external services
307
+ - **[Contributing Tools](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/comprehensive_tool_guide.html)**: Complete contribution guide
308
+ - **[Adding Tools Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/addtools/Adding_Tools_Tutorial.html)**: Step-by-step tool addition guide
309
+ - **[MCP Tool Registration](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/addtools/mcp_tool_registration_en.html)**: Register tools via MCP
288
310
 
289
311
  ### 📚 API Reference
290
- - **[API Directory](https://zitniklab.hms.harvard.edu/bioagent/api/modules.html)**: Complete module listing
291
- - **[Core Modules](https://zitniklab.hms.harvard.edu/bioagent/api/tooluniverse.html)**: Main ToolUniverse class and utilities
292
- - **[Tool Classes](https://zitniklab.hms.harvard.edu/bioagent/api/tooluniverse.base_tool.html)**: Base tool classes and implementations
293
- - **[Compose Scripts](https://zitniklab.hms.harvard.edu/bioagent/api/tooluniverse.compose_scripts.html)**: Tool composition utilities
294
- - **[MCP Integration](https://zitniklab.hms.harvard.edu/bioagent/api/tooluniverse.mcp_integration.html)**: Model Context Protocol support
312
+ - **[API Directory](https://zitniklab.hms.harvard.edu/ToolUniverse/api/modules.html)**: Complete module listing
313
+ - **[Core Modules](https://zitniklab.hms.harvard.edu/ToolUniverse/api/tooluniverse.html)**: Main ToolUniverse class and utilities
314
+ - **[Tool Classes](https://zitniklab.hms.harvard.edu/ToolUniverse/api/tooluniverse.base_tool.html)**: Base tool classes and implementations
315
+ - **[Compose Scripts](https://zitniklab.hms.harvard.edu/ToolUniverse/api/tooluniverse.compose_scripts.html)**: Tool composition utilities
316
+ - **[MCP Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/api/tooluniverse.mcp_integration.html)**: Model Context Protocol support
295
317
 
296
- → **Browse All Documentation**: [ToolUniverse Documentation](https://zitniklab.hms.harvard.edu/bioagent/)
318
+ → **Browse All Documentation**: [ToolUniverse Documentation](https://zitniklab.hms.harvard.edu/ToolUniverse/)
297
319
 
298
320
 
299
321
  ### Citation
300
322
 
301
323
  ```
302
- @misc{gao2025txagent,
324
+ @article{gao2025democratizingaiscientistsusing,
325
+ title={Democratizing AI scientists using ToolUniverse},
326
+ author={Shanghua Gao and Richard Zhu and Pengwei Sui and Zhenglun Kong and Sufian Aldogom and Yepeng Huang and Ayush Noori and Reza Shamji and Krishna Parvataneni and Theodoros Tsiligkaridis and Marinka Zitnik},
327
+ year={2025},
328
+ eprint={2509.23426},
329
+ archivePrefix={arXiv},
330
+ primaryClass={cs.AI},
331
+ url={https://arxiv.org/abs/2509.23426},
332
+ }
333
+
334
+ @article{gao2025txagent,
303
335
  title={TxAgent: An AI Agent for Therapeutic Reasoning Across a Universe of Tools},
304
336
  author={Shanghua Gao and Richard Zhu and Zhenglun Kong and Ayush Noori and Xiaorui Su and Curtis Ginder and Theodoros Tsiligkaridis and Marinka Zitnik},
305
337
  year={2025},
@@ -310,11 +342,6 @@ Our comprehensive documentation covers everything from quick start to advanced w
310
342
  }
311
343
  ```
312
344
 
313
-
314
- ### Acknowledgments
315
-
316
- 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.
317
-
318
345
  ---
319
346
 
320
347
  *Democratizing AI agents for science with ToolUniverse.*