tooluniverse 0.2.0__py3-none-any.whl → 1.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tooluniverse might be problematic. Click here for more details.
- tooluniverse/__init__.py +340 -4
- tooluniverse/admetai_tool.py +84 -0
- tooluniverse/agentic_tool.py +563 -0
- tooluniverse/alphafold_tool.py +96 -0
- tooluniverse/base_tool.py +129 -6
- tooluniverse/boltz_tool.py +207 -0
- tooluniverse/chem_tool.py +192 -0
- tooluniverse/compose_scripts/__init__.py +1 -0
- tooluniverse/compose_scripts/biomarker_discovery.py +293 -0
- tooluniverse/compose_scripts/comprehensive_drug_discovery.py +186 -0
- tooluniverse/compose_scripts/drug_safety_analyzer.py +89 -0
- tooluniverse/compose_scripts/literature_tool.py +34 -0
- tooluniverse/compose_scripts/output_summarizer.py +279 -0
- tooluniverse/compose_scripts/tool_description_optimizer.py +681 -0
- tooluniverse/compose_scripts/tool_discover.py +705 -0
- tooluniverse/compose_scripts/tool_graph_composer.py +448 -0
- tooluniverse/compose_tool.py +371 -0
- tooluniverse/ctg_tool.py +1002 -0
- tooluniverse/custom_tool.py +81 -0
- tooluniverse/dailymed_tool.py +108 -0
- tooluniverse/data/admetai_tools.json +155 -0
- tooluniverse/data/adverse_event_tools.json +108 -0
- tooluniverse/data/agentic_tools.json +1156 -0
- tooluniverse/data/alphafold_tools.json +87 -0
- tooluniverse/data/boltz_tools.json +9 -0
- tooluniverse/data/chembl_tools.json +16 -0
- tooluniverse/data/clinicaltrials_gov_tools.json +326 -0
- tooluniverse/data/compose_tools.json +202 -0
- tooluniverse/data/dailymed_tools.json +70 -0
- tooluniverse/data/dataset_tools.json +646 -0
- tooluniverse/data/disease_target_score_tools.json +712 -0
- tooluniverse/data/efo_tools.json +17 -0
- tooluniverse/data/embedding_tools.json +319 -0
- tooluniverse/data/enrichr_tools.json +31 -0
- tooluniverse/data/europe_pmc_tools.json +22 -0
- tooluniverse/data/expert_feedback_tools.json +10 -0
- tooluniverse/data/fda_drug_adverse_event_tools.json +491 -0
- tooluniverse/data/fda_drug_labeling_tools.json +1 -1
- tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py +76929 -148860
- tooluniverse/data/finder_tools.json +209 -0
- tooluniverse/data/gene_ontology_tools.json +113 -0
- tooluniverse/data/gwas_tools.json +1082 -0
- tooluniverse/data/hpa_tools.json +333 -0
- tooluniverse/data/humanbase_tools.json +47 -0
- tooluniverse/data/idmap_tools.json +74 -0
- tooluniverse/data/mcp_client_tools_example.json +113 -0
- tooluniverse/data/mcpautoloadertool_defaults.json +28 -0
- tooluniverse/data/medlineplus_tools.json +141 -0
- tooluniverse/data/monarch_tools.json +1 -1
- tooluniverse/data/openalex_tools.json +36 -0
- tooluniverse/data/opentarget_tools.json +1 -1
- tooluniverse/data/output_summarization_tools.json +101 -0
- tooluniverse/data/packages/bioinformatics_core_tools.json +1756 -0
- tooluniverse/data/packages/categorized_tools.txt +206 -0
- tooluniverse/data/packages/cheminformatics_tools.json +347 -0
- tooluniverse/data/packages/earth_sciences_tools.json +74 -0
- tooluniverse/data/packages/genomics_tools.json +776 -0
- tooluniverse/data/packages/image_processing_tools.json +38 -0
- tooluniverse/data/packages/machine_learning_tools.json +789 -0
- tooluniverse/data/packages/neuroscience_tools.json +62 -0
- tooluniverse/data/packages/original_tools.txt +0 -0
- tooluniverse/data/packages/physics_astronomy_tools.json +62 -0
- tooluniverse/data/packages/scientific_computing_tools.json +560 -0
- tooluniverse/data/packages/single_cell_tools.json +453 -0
- tooluniverse/data/packages/structural_biology_tools.json +396 -0
- tooluniverse/data/packages/visualization_tools.json +399 -0
- tooluniverse/data/pubchem_tools.json +215 -0
- tooluniverse/data/pubtator_tools.json +68 -0
- tooluniverse/data/rcsb_pdb_tools.json +1332 -0
- tooluniverse/data/reactome_tools.json +19 -0
- tooluniverse/data/semantic_scholar_tools.json +26 -0
- tooluniverse/data/special_tools.json +2 -25
- tooluniverse/data/tool_composition_tools.json +88 -0
- tooluniverse/data/toolfinderkeyword_defaults.json +34 -0
- tooluniverse/data/txagent_client_tools.json +9 -0
- tooluniverse/data/uniprot_tools.json +211 -0
- tooluniverse/data/url_fetch_tools.json +94 -0
- tooluniverse/data/uspto_downloader_tools.json +9 -0
- tooluniverse/data/uspto_tools.json +811 -0
- tooluniverse/data/xml_tools.json +3275 -0
- tooluniverse/dataset_tool.py +296 -0
- tooluniverse/default_config.py +165 -0
- tooluniverse/efo_tool.py +42 -0
- tooluniverse/embedding_database.py +630 -0
- tooluniverse/embedding_sync.py +396 -0
- tooluniverse/enrichr_tool.py +266 -0
- tooluniverse/europe_pmc_tool.py +52 -0
- tooluniverse/execute_function.py +1775 -95
- tooluniverse/extended_hooks.py +444 -0
- tooluniverse/gene_ontology_tool.py +194 -0
- tooluniverse/graphql_tool.py +158 -36
- tooluniverse/gwas_tool.py +358 -0
- tooluniverse/hpa_tool.py +1645 -0
- tooluniverse/humanbase_tool.py +389 -0
- tooluniverse/logging_config.py +254 -0
- tooluniverse/mcp_client_tool.py +764 -0
- tooluniverse/mcp_integration.py +413 -0
- tooluniverse/mcp_tool_registry.py +925 -0
- tooluniverse/medlineplus_tool.py +337 -0
- tooluniverse/openalex_tool.py +228 -0
- tooluniverse/openfda_adv_tool.py +283 -0
- tooluniverse/openfda_tool.py +393 -160
- tooluniverse/output_hook.py +1122 -0
- tooluniverse/package_tool.py +195 -0
- tooluniverse/pubchem_tool.py +158 -0
- tooluniverse/pubtator_tool.py +168 -0
- tooluniverse/rcsb_pdb_tool.py +38 -0
- tooluniverse/reactome_tool.py +108 -0
- tooluniverse/remote/boltz/boltz_mcp_server.py +50 -0
- tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +442 -0
- tooluniverse/remote/expert_feedback/human_expert_mcp_tools.py +2013 -0
- tooluniverse/remote/expert_feedback/simple_test.py +23 -0
- tooluniverse/remote/expert_feedback/start_web_interface.py +188 -0
- tooluniverse/remote/expert_feedback/web_only_interface.py +0 -0
- tooluniverse/remote/immune_compass/compass_tool.py +327 -0
- tooluniverse/remote/pinnacle/pinnacle_tool.py +328 -0
- tooluniverse/remote/transcriptformer/transcriptformer_tool.py +586 -0
- tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +61 -0
- tooluniverse/remote/uspto_downloader/uspto_downloader_tool.py +120 -0
- tooluniverse/remote_tool.py +99 -0
- tooluniverse/restful_tool.py +53 -30
- tooluniverse/scripts/generate_tool_graph.py +408 -0
- tooluniverse/scripts/visualize_tool_graph.py +829 -0
- tooluniverse/semantic_scholar_tool.py +62 -0
- tooluniverse/smcp.py +2452 -0
- tooluniverse/smcp_server.py +975 -0
- tooluniverse/test/mcp_server_test.py +0 -0
- tooluniverse/test/test_admetai_tool.py +370 -0
- tooluniverse/test/test_agentic_tool.py +129 -0
- tooluniverse/test/test_alphafold_tool.py +71 -0
- tooluniverse/test/test_chem_tool.py +37 -0
- tooluniverse/test/test_compose_lieraturereview.py +63 -0
- tooluniverse/test/test_compose_tool.py +448 -0
- tooluniverse/test/test_dailymed.py +69 -0
- tooluniverse/test/test_dataset_tool.py +200 -0
- tooluniverse/test/test_disease_target_score.py +56 -0
- tooluniverse/test/test_drugbank_filter_examples.py +179 -0
- tooluniverse/test/test_efo.py +31 -0
- tooluniverse/test/test_enrichr_tool.py +21 -0
- tooluniverse/test/test_europe_pmc_tool.py +20 -0
- tooluniverse/test/test_fda_adv.py +95 -0
- tooluniverse/test/test_fda_drug_labeling.py +91 -0
- tooluniverse/test/test_gene_ontology_tools.py +66 -0
- tooluniverse/test/test_gwas_tool.py +139 -0
- tooluniverse/test/test_hpa.py +625 -0
- tooluniverse/test/test_humanbase_tool.py +20 -0
- tooluniverse/test/test_idmap_tools.py +61 -0
- tooluniverse/test/test_mcp_server.py +211 -0
- tooluniverse/test/test_mcp_tool.py +247 -0
- tooluniverse/test/test_medlineplus.py +220 -0
- tooluniverse/test/test_openalex_tool.py +32 -0
- tooluniverse/test/test_opentargets.py +28 -0
- tooluniverse/test/test_pubchem_tool.py +116 -0
- tooluniverse/test/test_pubtator_tool.py +37 -0
- tooluniverse/test/test_rcsb_pdb_tool.py +86 -0
- tooluniverse/test/test_reactome.py +54 -0
- tooluniverse/test/test_semantic_scholar_tool.py +24 -0
- tooluniverse/test/test_software_tools.py +147 -0
- tooluniverse/test/test_tool_description_optimizer.py +49 -0
- tooluniverse/test/test_tool_finder.py +26 -0
- tooluniverse/test/test_tool_finder_llm.py +252 -0
- tooluniverse/test/test_tools_find.py +195 -0
- tooluniverse/test/test_uniprot_tools.py +74 -0
- tooluniverse/test/test_uspto_tool.py +72 -0
- tooluniverse/test/test_xml_tool.py +113 -0
- tooluniverse/tool_finder_embedding.py +267 -0
- tooluniverse/tool_finder_keyword.py +693 -0
- tooluniverse/tool_finder_llm.py +699 -0
- tooluniverse/tool_graph_web_ui.py +955 -0
- tooluniverse/tool_registry.py +416 -0
- tooluniverse/uniprot_tool.py +155 -0
- tooluniverse/url_tool.py +253 -0
- tooluniverse/uspto_tool.py +240 -0
- tooluniverse/utils.py +369 -41
- tooluniverse/xml_tool.py +369 -0
- tooluniverse-1.0.1.dist-info/METADATA +387 -0
- tooluniverse-1.0.1.dist-info/RECORD +182 -0
- tooluniverse-1.0.1.dist-info/entry_points.txt +9 -0
- tooluniverse/generate_mcp_tools.py +0 -113
- tooluniverse/mcp_server.py +0 -3340
- tooluniverse-0.2.0.dist-info/METADATA +0 -139
- tooluniverse-0.2.0.dist-info/RECORD +0 -21
- tooluniverse-0.2.0.dist-info/entry_points.txt +0 -4
- {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/WHEEL +0 -0
- {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/licenses/LICENSE +0 -0
- {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: tooluniverse
|
|
3
|
-
Version: 0.2.0
|
|
4
|
-
Summary: A comprehensive collection of biomedical tools for Agentic AI, offering integration with the ToolUniverse SDK and MCP Server to support advanced biomedical 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
|
|
11
|
-
Requires-Dist: numpy
|
|
12
|
-
Requires-Dist: graphql-core
|
|
13
|
-
Requires-Dist: fastapi
|
|
14
|
-
Requires-Dist: uvicorn
|
|
15
|
-
Requires-Dist: fastmcp
|
|
16
|
-
Requires-Dist: pydantic
|
|
17
|
-
Requires-Dist: pyyaml
|
|
18
|
-
Dynamic: license-file
|
|
19
|
-
|
|
20
|
-
# ToolUniverse
|
|
21
|
-
|
|
22
|
-
[](https://zitniklab.hms.harvard.edu/TxAgent)
|
|
23
|
-
[](https://arxiv.org/pdf/2503.10970)
|
|
24
|
-
[](https://pypi.org/project/txagent/)
|
|
25
|
-
[](https://pypi.org/project/tooluniverse/)
|
|
26
|
-
[](https://github.com/mims-harvard/TxAgent)
|
|
27
|
-
[](https://github.com/mims-harvard/ToolUniverse)
|
|
28
|
-
[](https://huggingface.co/collections/mims-harvard/txagent-67c8e54a9d03a429bb0c622c)
|
|
29
|
-
[_Supported-green)](README_USAGE.md#running-the-mcp-server)
|
|
30
|
-
|
|
31
|
-
<body>
|
|
32
|
-
<section class="hero">
|
|
33
|
-
<div class="hero-body">
|
|
34
|
-
<div class="container is-max-desktop">
|
|
35
|
-
<div class="columns is-centered">
|
|
36
|
-
<div class="column has-text-centered">
|
|
37
|
-
<h1 class="title is-1 publication-title">
|
|
38
|
-
</h1>
|
|
39
|
-
<div class="is-size-5 publication-authors">
|
|
40
|
-
<!-- Paper authors -->
|
|
41
|
-
<span class="author-block">
|
|
42
|
-
<a href="https://shgao.site" target="_blank">Shanghua Gao</a
|
|
43
|
-
>,</span
|
|
44
|
-
>
|
|
45
|
-
<span class="author-block">
|
|
46
|
-
<a
|
|
47
|
-
href="https://www.linkedin.com/in/richard-zhu-4236901a7/"
|
|
48
|
-
target="_blank"
|
|
49
|
-
>Richard Zhu</a
|
|
50
|
-
>,</span
|
|
51
|
-
>
|
|
52
|
-
<span class="author-block">
|
|
53
|
-
<a href="https://zlkong.github.io/homepage/" target="_blank"
|
|
54
|
-
>Zhenglun Kong</a
|
|
55
|
-
>,</span
|
|
56
|
-
>
|
|
57
|
-
<span class="author-block">
|
|
58
|
-
<a href="https://www.ayushnoori.com/" target="_blank"
|
|
59
|
-
>Ayush Noori</a
|
|
60
|
-
>,</span
|
|
61
|
-
>
|
|
62
|
-
<span class="author-block">
|
|
63
|
-
<a
|
|
64
|
-
href="https://scholar.google.com/citations?hl=zh-CN&user=Awdn73MAAAAJ"
|
|
65
|
-
target="_blank"
|
|
66
|
-
>Xiaorui Su</a
|
|
67
|
-
>,</span
|
|
68
|
-
>
|
|
69
|
-
<span class="author-block">
|
|
70
|
-
<a
|
|
71
|
-
href="https://www.linkedin.com/in/curtisginder/"
|
|
72
|
-
target="_blank"
|
|
73
|
-
>Curtis Ginder</a
|
|
74
|
-
>,</span
|
|
75
|
-
>
|
|
76
|
-
<span class="author-block">
|
|
77
|
-
<a href="https://sites.google.com/view/theo-t" target="_blank"
|
|
78
|
-
>Theodoros Tsiligkaridis</a
|
|
79
|
-
>,</span
|
|
80
|
-
>
|
|
81
|
-
<span class="author-block">
|
|
82
|
-
<a href="https://zitniklab.hms.harvard.edu/" target="_blank"
|
|
83
|
-
>Marinka Zitnik</a
|
|
84
|
-
>
|
|
85
|
-
</div>
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
ToolUniverse is a collection of biomedical tools designed for use by Agentic AI. It is a critical component of TxAgent, providing the agent with the ability to access and leverage a vast array of biomedical knowledge to solve complex therapeutic reasoning tasks. ToolUniverse includes 211 biomedical tools that address various aspects of drugs and diseases. These tools are linked to trusted sources, including all US FDA-approved drugs since 1939 and validated clinical insights from Open Targets and Monarch Initiative.
|
|
89
|
-
|
|
90
|
-

|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
# Install
|
|
94
|
-
|
|
95
|
-
### Install from source
|
|
96
|
-
|
|
97
|
-
```
|
|
98
|
-
python -m pip install . --no-cache-dir
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
### Install from Pypi
|
|
102
|
-
Pip page (https://pypi.org/project/tooluniverse)
|
|
103
|
-
|
|
104
|
-
```
|
|
105
|
-
pip install tooluniverse
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
# Usage
|
|
109
|
-
|
|
110
|
-
ToolUniverse supports both a Python SDK and an MCP server interface.
|
|
111
|
-
- You can use the Python SDK to interact with ToolUniverse programmatically in your Python projects.
|
|
112
|
-
- You can connect to the ToolUniverse MCP server for remote tool execution and integration with other agentic systems.
|
|
113
|
-
|
|
114
|
-
For more detailed usage examples, see the [README_USAGE](README_USAGE.md) page.
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
## Citation
|
|
118
|
-
|
|
119
|
-
```
|
|
120
|
-
@misc{gao2025txagent,
|
|
121
|
-
title={TxAgent: An AI Agent for Therapeutic Reasoning Across a Universe of Tools},
|
|
122
|
-
author={Shanghua Gao and Richard Zhu and Zhenglun Kong and Ayush Noori and Xiaorui Su and Curtis Ginder and Theodoros Tsiligkaridis and Marinka Zitnik},
|
|
123
|
-
year={2025},
|
|
124
|
-
eprint={2503.10970},
|
|
125
|
-
archivePrefix={arXiv},
|
|
126
|
-
primaryClass={cs.AI},
|
|
127
|
-
url={https://arxiv.org/abs/2503.10970},
|
|
128
|
-
}
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
## Contact
|
|
132
|
-
If you have any questions or suggestions, please email [Shanghua Gao](mailto:shanghuagao@gmail.com) and [Marinka Zitnik](mailto:marinka@hms.harvard.edu).
|
|
133
|
-
|
|
134
|
-
## Core contributors
|
|
135
|
-
|
|
136
|
-
[Shanghua Gao](https://shgao.site);
|
|
137
|
-
[Richard Zhu](https://www.linkedin.com/in/richard-zhu-4236901a7/);
|
|
138
|
-
[Zhenglun Kong](https://zlkong.github.io/homepage/);
|
|
139
|
-
[Sufian Aldogom](saldogom@mit.edu)
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
tooluniverse/__init__.py,sha256=j44hf13WM50HQJRi7aloeTG6y6872wJtfX8ydsaiJFI,652
|
|
2
|
-
tooluniverse/base_tool.py,sha256=WMGgr02lhEsVzHgt7NIeynXQ2wZtu97yZI-lQWOSoSs,1145
|
|
3
|
-
tooluniverse/execute_function.py,sha256=CmA8AIfyolkcooASD2_3pXgF1BqESU5_VUqdHSYiM_M,10139
|
|
4
|
-
tooluniverse/generate_mcp_tools.py,sha256=LXE6cZzkbuMZbqL5Z0OKfOOYGjttowYFIIXJzlPfv4U,3166
|
|
5
|
-
tooluniverse/graphql_tool.py,sha256=WU-9YAYbmfbfGwGDn7Y22DVju9t68CKuv_JNz_11NkM,5120
|
|
6
|
-
tooluniverse/mcp_server.py,sha256=9xlhWBCk0GLSwS6G4KPxvpeggSqFeqvBbMv6Q9zlXcA,75841
|
|
7
|
-
tooluniverse/openfda_tool.py,sha256=s4ctA7ckID7VA1wRceRGknFV5zu9sR7fqTJ8oa9U0q4,21056
|
|
8
|
-
tooluniverse/restful_tool.py,sha256=5HoTyCSd507D4Qjcqjd16o8Y4BFZ02Zm4cGuczIXWdw,4078
|
|
9
|
-
tooluniverse/utils.py,sha256=zh1IopojPBIJzK_8eGytTmWlPckluQQZTpiCQONw-pY,6416
|
|
10
|
-
tooluniverse/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
tooluniverse/data/fda_drug_labeling_tools.json,sha256=2mChXxdDaP4qo8GqRYm6rK-Gsazryewb4ark2IxaauQ,224727
|
|
12
|
-
tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py,sha256=Clb7kQpPaXPTT_rdDLoinfwF8JbrdRaBis-0TYcT0BU,6510589
|
|
13
|
-
tooluniverse/data/monarch_tools.json,sha256=I5KvamNZRvkKBaKbM6Ypo333m-RejQhqScX8h-uket4,3567
|
|
14
|
-
tooluniverse/data/opentarget_tools.json,sha256=vQQJsTGIoZWeqInUHmsdwp8kpqzx51f-VVaAVRmJdcU,67794
|
|
15
|
-
tooluniverse/data/special_tools.json,sha256=tOI0TFpdjZBEE5Af1Vc4CeXQ0gAkz39xho9hDVBYR70,1518
|
|
16
|
-
tooluniverse-0.2.0.dist-info/licenses/LICENSE,sha256=Unq9Y3buGL9J0vFop03FYZiVweytt1xdgLIh2n9ck2c,1115
|
|
17
|
-
tooluniverse-0.2.0.dist-info/METADATA,sha256=ZSkaURh0dRXEdXdZrMvewggnp3f9aZkBAgDhU73deKY,5729
|
|
18
|
-
tooluniverse-0.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
tooluniverse-0.2.0.dist-info/entry_points.txt,sha256=qDvySLz4M6uQDTwVvw-9zeLJ5jUir1aDdWbUrRqq6Bc,207
|
|
20
|
-
tooluniverse-0.2.0.dist-info/top_level.txt,sha256=zZ8YeCJ5FAkEwdd_mxsFtSCQMBDgBdxrrmHo3RNBiWs,13
|
|
21
|
-
tooluniverse-0.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|