tooluniverse 1.0.3__tar.gz → 1.0.5__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.
- tooluniverse-1.0.5/LICENSE +201 -0
- {tooluniverse-1.0.3/src/tooluniverse.egg-info → tooluniverse-1.0.5}/PKG-INFO +101 -74
- tooluniverse-1.0.5/README.md +271 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/pyproject.toml +13 -2
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/__init__.py +17 -5
- tooluniverse-1.0.5/src/tooluniverse/agentic_tool.py +501 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/output_summarizer.py +21 -15
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/agentic_tools.json +2 -2
- tooluniverse-1.0.5/src/tooluniverse/data/odphp_tools.json +354 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/output_summarization_tools.json +2 -2
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/default_config.py +1 -0
- tooluniverse-1.0.5/src/tooluniverse/llm_clients.py +570 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/mcp_tool_registry.py +3 -3
- tooluniverse-1.0.5/src/tooluniverse/odphp_tool.py +226 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/output_hook.py +92 -3
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/boltz/boltz_mcp_server.py +2 -2
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +2 -2
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/smcp.py +204 -112
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/smcp_server.py +23 -20
- tooluniverse-1.0.5/src/tooluniverse/test/list_azure_openai_models.py +210 -0
- tooluniverse-1.0.5/src/tooluniverse/test/test_agentic_tool_azure_models.py +91 -0
- tooluniverse-1.0.5/src/tooluniverse/test/test_api_key_validation_min.py +64 -0
- tooluniverse-1.0.5/src/tooluniverse/test/test_claude_sdk.py +86 -0
- tooluniverse-1.0.5/src/tooluniverse/test/test_global_fallback.py +288 -0
- tooluniverse-1.0.5/src/tooluniverse/test/test_hooks_direct.py +219 -0
- tooluniverse-1.0.5/src/tooluniverse/test/test_odphp_tool.py +166 -0
- tooluniverse-1.0.5/src/tooluniverse/test/test_openrouter_client.py +288 -0
- tooluniverse-1.0.5/src/tooluniverse/test/test_stdio_hooks.py +285 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_tool_finder.py +1 -1
- {tooluniverse-1.0.3 → tooluniverse-1.0.5/src/tooluniverse.egg-info}/PKG-INFO +101 -74
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse.egg-info/SOURCES.txt +12 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse.egg-info/requires.txt +11 -0
- tooluniverse-1.0.3/LICENSE +0 -21
- tooluniverse-1.0.3/README.md +0 -254
- tooluniverse-1.0.3/src/tooluniverse/agentic_tool.py +0 -563
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/setup.cfg +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/admetai_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/alphafold_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/base_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/boltz_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/chem_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/__init__.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/biomarker_discovery.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/comprehensive_drug_discovery.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/drug_safety_analyzer.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/literature_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/tool_description_optimizer.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/tool_discover.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/tool_graph_composer.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/tool_graph_generation.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_scripts/tool_metadata_generator.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/compose_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/ctg_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/custom_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/dailymed_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/__init__.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/admetai_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/adverse_event_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/alphafold_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/boltz_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/chembl_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/clinicaltrials_gov_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/compose_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/dailymed_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/dataset_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/disease_target_score_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/efo_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/embedding_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/enrichr_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/europe_pmc_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/expert_feedback_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/fda_drug_adverse_event_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/fda_drug_labeling_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/finder_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/gene_ontology_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/gwas_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/hpa_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/humanbase_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/idmap_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/mcp_client_tools_example.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/mcpautoloadertool_defaults.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/medlineplus_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/monarch_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/openalex_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/opentarget_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/bioinformatics_core_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/categorized_tools.txt +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/cheminformatics_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/earth_sciences_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/genomics_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/image_processing_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/machine_learning_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/neuroscience_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/original_tools.txt +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/physics_astronomy_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/scientific_computing_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/single_cell_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/structural_biology_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/packages/visualization_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/pubchem_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/pubtator_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/rcsb_pdb_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/reactome_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/semantic_scholar_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/special_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/tool_composition_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/toolfinderkeyword_defaults.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/txagent_client_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/uniprot_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/url_fetch_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/uspto_downloader_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/uspto_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/data/xml_tools.json +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/dataset_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/efo_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/embedding_database.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/embedding_sync.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/enrichr_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/europe_pmc_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/execute_function.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/extended_hooks.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/gene_ontology_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/graphql_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/gwas_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/hpa_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/humanbase_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/logging_config.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/mcp_client_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/mcp_integration.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/medlineplus_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/openalex_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/openfda_adv_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/openfda_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/package_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/pubchem_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/pubtator_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/rcsb_pdb_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/reactome_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/expert_feedback/human_expert_mcp_tools.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/expert_feedback/simple_test.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/expert_feedback/start_web_interface.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/expert_feedback/web_only_interface.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/immune_compass/compass_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/pinnacle/pinnacle_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/transcriptformer/transcriptformer_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote/uspto_downloader/uspto_downloader_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/remote_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/restful_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/scripts/filter_tool_files.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/scripts/generate_tool_graph.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/scripts/visualize_tool_graph.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/semantic_scholar_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/mcp_server_test.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_admetai_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_agentic_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_alphafold_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_chem_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_compose_lieraturereview.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_compose_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_dailymed.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_dataset_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_disease_target_score.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_drugbank_filter_examples.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_efo.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_enrichr_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_europe_pmc_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_fda_adv.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_fda_drug_labeling.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_gene_ontology_tools.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_gwas_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_hpa.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_humanbase_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_idmap_tools.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_list_built_in_tools.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_mcp_server.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_mcp_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_medlineplus.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_openalex_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_opentargets.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_pubchem_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_pubtator_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_rcsb_pdb_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_reactome.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_semantic_scholar_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_software_tools.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_tool_description_optimizer.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_tool_finder_llm.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_tools_find.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_uniprot_tools.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_uspto_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/test/test_xml_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/tool_finder_embedding.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/tool_finder_keyword.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/tool_finder_llm.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/tool_graph_web_ui.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/tool_registry.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/uniprot_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/url_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/uspto_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/utils.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse/xml_tool.py +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse.egg-info/dependency_links.txt +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/src/tooluniverse.egg-info/entry_points.txt +0 -0
- {tooluniverse-1.0.3 → tooluniverse-1.0.5}/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.
|
|
3
|
+
Version: 1.0.5
|
|
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/
|
|
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
|
|
@@ -18,6 +18,7 @@ Requires-Dist: networkx>=3.4.0
|
|
|
18
18
|
Requires-Dist: openai>=1.107.0
|
|
19
19
|
Requires-Dist: pyyaml>=6.0.0
|
|
20
20
|
Requires-Dist: google-genai>=1.36.0
|
|
21
|
+
Requires-Dist: google-generativeai>=0.7.2
|
|
21
22
|
Requires-Dist: mcp[cli]>=1.9.3
|
|
22
23
|
Requires-Dist: fastmcp>=2.12.0
|
|
23
24
|
Requires-Dist: xmltodict>=1.0.0
|
|
@@ -37,19 +38,28 @@ Requires-Dist: aiohttp
|
|
|
37
38
|
Provides-Extra: dev
|
|
38
39
|
Requires-Dist: pytest>=6.0; extra == "dev"
|
|
39
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"
|
|
40
44
|
Requires-Dist: black>=22.0; extra == "dev"
|
|
41
45
|
Requires-Dist: flake8>=4.0; extra == "dev"
|
|
42
46
|
Requires-Dist: pre-commit>=2.0; extra == "dev"
|
|
43
47
|
Provides-Extra: docs
|
|
44
48
|
Requires-Dist: sphinx>=4.0; extra == "docs"
|
|
49
|
+
Requires-Dist: furo>=2024.8.6; extra == "docs"
|
|
45
50
|
Requires-Dist: sphinx-rtd-theme>=1.0; extra == "docs"
|
|
46
51
|
Requires-Dist: myst-parser>=0.18; extra == "docs"
|
|
52
|
+
Requires-Dist: linkify-it-py>=2.0.0; extra == "docs"
|
|
47
53
|
Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
|
|
48
54
|
Requires-Dist: sphinx-copybutton>=0.5.0; extra == "docs"
|
|
49
55
|
Requires-Dist: sphinx-tabs>=3.2.0; extra == "docs"
|
|
50
56
|
Requires-Dist: sphinx-design>=0.3.0; extra == "docs"
|
|
51
57
|
Requires-Dist: sphinx-notfound-page>=0.8; extra == "docs"
|
|
52
58
|
Requires-Dist: sphinx-autodoc-typehints>=1.12.0; extra == "docs"
|
|
59
|
+
Provides-Extra: embedding
|
|
60
|
+
Requires-Dist: sentence-transformers>=5.1.0; extra == "embedding"
|
|
61
|
+
Requires-Dist: faiss-cpu>=1.12.0; extra == "embedding"
|
|
62
|
+
Requires-Dist: huggingface_hub>=0.34.0; extra == "embedding"
|
|
53
63
|
Provides-Extra: graph
|
|
54
64
|
Requires-Dist: flask>=2.0.0; extra == "graph"
|
|
55
65
|
Requires-Dist: matplotlib>=3.5.0; extra == "graph"
|
|
@@ -65,11 +75,12 @@ Dynamic: license-file
|
|
|
65
75
|
|
|
66
76
|
# <img src="docs/_static/logo.png" alt="ToolUniverse Logo" height="28" style="vertical-align: middle; margin-right: 8px;" /> ToolUniverse: Democratizing AI scientists
|
|
67
77
|
|
|
78
|
+
[](https://arxiv.org/abs/2509.23426)
|
|
68
79
|
[](https://pypi.org/project/tooluniverse/)
|
|
69
80
|
[](https://github.com/mims-harvard/ToolUniverse)
|
|
70
81
|
[_Supported-green)](README_USAGE.md#running-the-mcp-server)
|
|
71
|
-
[](https://zitniklab.hms.harvard.edu/
|
|
72
|
-
[](https://zitniklab.hms.harvard.edu/ToolUniverse/)
|
|
83
|
+
[](https://aiscientist.tools)
|
|
73
84
|
[](https://join.slack.com/t/tooluniversehq/shared_invite/zt-3dic3eoio-5xxoJch7TLNibNQn5_AREQ)
|
|
74
85
|
|
|
75
86
|
|
|
@@ -83,27 +94,34 @@ ToolUniverse is an ecosystem for creating AI scientist systems from any open or
|
|
|
83
94
|
[](https://aiscientist.tools)
|
|
84
95
|
|
|
85
96
|
[](https://join.slack.com/t/tooluniversehq/shared_invite/zt-3dic3eoio-5xxoJch7TLNibNQn5_AREQ)
|
|
86
|
-
[](https://
|
|
97
|
+
[](https://aiscientist.tools/wechat)
|
|
87
98
|
|
|
88
99
|
[](https://www.linkedin.com/in/tooluniverse-at-harvard-b9aa88385/)
|
|
89
100
|
[](https://x.com/ScientistTools)
|
|
90
101
|
|
|
91
102
|
</div>
|
|
103
|
+
<p align="center">
|
|
104
|
+
<img src="https://github.com/user-attachments/assets/13ddb54c-4fcc-4507-8695-1c58e7bc1e68" width="600" />
|
|
105
|
+
</p>
|
|
92
106
|
|
|
93
|
-
→ **Complete Tool List**: [Available Tools](https://zitniklab.hms.harvard.edu/
|
|
107
|
+
→ **Complete Tool List**: [Available Tools](https://zitniklab.hms.harvard.edu/ToolUniverse/tools/tools_config_index.html)
|
|
94
108
|
|
|
95
109
|
→ **Check our website for direct tool usage**: [AIScientist.Tools](https://aiscientist.tools/)
|
|
96
110
|
|
|
97
111
|
|
|
98
112
|
## 🤖 Building AI Scientists with ToolUniverse in 5 minutes
|
|
99
|
-
- **[Overview](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/index.html)**: Create AI scientists from any LLM
|
|
100
|
-
- **[Claude Desktop Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_desktop.html)**: Native MCP integration with Claude Desktop App
|
|
101
|
-
- **[Claude Code Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/claude_code.html)**: AI scientist development in Claude Code environment
|
|
102
|
-
- **[Gemini CLI Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/gemini_cli.html)**: Command-line scientific research with Google Gemini
|
|
103
|
-
- **[Qwen Code Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/qwen_code.html)**: AI scientist workflows in Qwen Code environment
|
|
104
|
-
- **[GPT Codex CLI Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/codex_cli.html)**: Terminal-based research with OpenAI Codex
|
|
105
|
-
- **[ChatGPT API Integration](https://zitniklab.hms.harvard.edu/bioagent/guide/building_ai_scientists/chatgpt_api.html)**: Programmatic research with ChatGPT function calling
|
|
106
113
|
|
|
114
|
+
[](https://www.youtube.com/watch?v=fManSJlSs60)
|
|
115
|
+
*Click the image above to watch the ToolUniverse demonstration*
|
|
116
|
+
[(Also in Bilibili)](https://www.bilibili.com/video/BV1GynhzjEos/?share_source=copy_web&vd_source=b398f13447281e748f5c41057a2c6858)
|
|
117
|
+
|
|
118
|
+
- **[Overview](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/index.html)**: Create AI scientists from any LLM
|
|
119
|
+
- **[Claude Desktop Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/claude_desktop.html)**: Native MCP integration with Claude Desktop App
|
|
120
|
+
- **[Claude Code Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/claude_code.html)**: AI scientist development in Claude Code environment
|
|
121
|
+
- **[Gemini CLI Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/gemini_cli.html)**: Command-line scientific research with Google Gemini
|
|
122
|
+
- **[Qwen Code Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/qwen_code.html)**: AI scientist workflows in Qwen Code environment
|
|
123
|
+
- **[GPT Codex CLI Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/codex_cli.html)**: Terminal-based research with OpenAI Codex
|
|
124
|
+
- **[ChatGPT API Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/building_ai_scientists/chatgpt_api.html)**: Programmatic research with ChatGPT function calling
|
|
107
125
|
|
|
108
126
|
## 🔬 What is ToolUniverse?
|
|
109
127
|
|
|
@@ -113,18 +131,19 @@ ToolUniverse addresses this challenge by providing a standardized ecosystem that
|
|
|
113
131
|
|
|
114
132
|
**Key Features:**
|
|
115
133
|
|
|
116
|
-
- [**AI-Tool Interaction Protocol**](https://zitniklab.hms.harvard.edu/
|
|
117
|
-
- [**Universal AI Model Support**](https://zitniklab.hms.harvard.edu/
|
|
118
|
-
- [**
|
|
119
|
-
- [**
|
|
120
|
-
- [**
|
|
121
|
-
- [**
|
|
122
|
-
|
|
134
|
+
- [**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
|
|
135
|
+
- [**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)
|
|
136
|
+
- [**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
|
|
137
|
+
- [**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
|
|
138
|
+
- [**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
|
|
139
|
+
- [**Continuous Expansion**](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/index.html): New tools can be easily registered locally or remotely without additional configuration
|
|
140
|
+
- [**Multi-Agent Tool Creation & Optimization**](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/scientific_workflows.html): Multi-agent powered tool construction and iterative tool optimization
|
|
123
141
|
|
|
142
|
+
<p align="center">
|
|
143
|
+
<img src="https://github.com/user-attachments/assets/eb15bd7c-4e73-464b-8d65-733877c96a51" width="888" />
|
|
144
|
+
</p>
|
|
124
145
|
|
|
125
146
|
|
|
126
|
-
<!--  -->
|
|
127
|
-
|
|
128
147
|
## 🚀 Quick Start
|
|
129
148
|
|
|
130
149
|
```python
|
|
@@ -142,17 +161,17 @@ tu.load_tools() # Load 600+ scientific tools
|
|
|
142
161
|
# 3. Use Find Tool operation to discover relevant tools
|
|
143
162
|
tools = tu.run({
|
|
144
163
|
"name": "Tool_Finder_Keyword",
|
|
145
|
-
"arguments": {"
|
|
164
|
+
"arguments": {"description": "disease target associations", "limit": 10}
|
|
146
165
|
})
|
|
147
166
|
|
|
148
167
|
# 4. Use Call Tool operation to execute selected tool
|
|
149
168
|
result = tu.run({
|
|
150
169
|
"name": "OpenTargets_get_associated_targets_by_disease_efoId",
|
|
151
|
-
"arguments": {"efoId": "
|
|
170
|
+
"arguments": {"efoId": "EFO_0000537"} # hypertension
|
|
152
171
|
})
|
|
153
172
|
```
|
|
154
173
|
|
|
155
|
-
→ **Complete Quick Start Tutorial**: [Quick Start Tutorial](https://zitniklab.hms.harvard.edu/
|
|
174
|
+
→ **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)
|
|
156
175
|
|
|
157
176
|
|
|
158
177
|
## 📦 Installation
|
|
@@ -163,7 +182,7 @@ result = tu.run({
|
|
|
163
182
|
uv pip install tooluniverse
|
|
164
183
|
```
|
|
165
184
|
|
|
166
|
-
→ **Complete Installation Tutorial**: [Installation Tutorial](https://zitniklab.hms.harvard.edu/
|
|
185
|
+
→ **Complete Installation Tutorial**: [Installation Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/installation.html)
|
|
167
186
|
|
|
168
187
|
## 🔧 Usage & Integration
|
|
169
188
|
|
|
@@ -181,17 +200,18 @@ tu.load_tools()
|
|
|
181
200
|
# Find relevant tools
|
|
182
201
|
tools = tu.run({
|
|
183
202
|
"name": "Tool_Finder_Keyword", # Tool_Finder (Embedding model, GPU required), Tool_Finder_LLM (LLM-based model)
|
|
184
|
-
"arguments": {"
|
|
203
|
+
"arguments": {"description": "protein structure prediction", "limit": 10}
|
|
185
204
|
})
|
|
186
205
|
|
|
187
206
|
# Execute tools
|
|
188
207
|
result = tu.run({
|
|
189
|
-
"name": "
|
|
190
|
-
"arguments": {"
|
|
208
|
+
"name": "UniProt_get_function_by_accession",
|
|
209
|
+
"arguments": {"accession": "P05067"}
|
|
191
210
|
})
|
|
211
|
+
|
|
192
212
|
```
|
|
193
213
|
|
|
194
|
-
→ **Complete Tutorials**: [Installation Tutorial](https://zitniklab.hms.harvard.edu/
|
|
214
|
+
→ **Complete Tutorials**: [Installation Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/installation.html)
|
|
195
215
|
|
|
196
216
|
### MCP Support
|
|
197
217
|
|
|
@@ -199,7 +219,7 @@ result = tu.run({
|
|
|
199
219
|
# run one command to launch the tooluniverse mcp server
|
|
200
220
|
tooluniverse-smcp
|
|
201
221
|
```
|
|
202
|
-
→ **Complete Tutorial**: [MCP Support](https://zitniklab.hms.harvard.edu/
|
|
222
|
+
→ **Complete Tutorial**: [MCP Support](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/mcp_support.html)
|
|
203
223
|
|
|
204
224
|
|
|
205
225
|
## 🚀 AI Scientists Projects Powered by ToolUniverse
|
|
@@ -212,9 +232,11 @@ tooluniverse-smcp
|
|
|
212
232
|
|
|
213
233
|
|
|
214
234
|
---
|
|
215
|
-
**Hypercholesterolemia Drug Discovery** [[Tutorial]](https://zitniklab.hms.harvard.edu/
|
|
235
|
+
**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)
|
|
236
|
+
<p align="center">
|
|
237
|
+
<img src="https://github.com/user-attachments/assets/cc53e9b0-94d3-407d-a015-71762ddb9836" width="600" />
|
|
238
|
+
</p>
|
|
216
239
|
|
|
217
|
-
---
|
|
218
240
|
|
|
219
241
|
|
|
220
242
|
## 🤝 Contribution and Community
|
|
@@ -227,7 +249,7 @@ Please join our [Slack Channel](https://join.slack.com/t/tooluniversehq/shared_i
|
|
|
227
249
|
- **Report Issues**: [GitHub Issues](https://github.com/mims-harvard/ToolUniverse/issues)
|
|
228
250
|
- **Join Discussions**: [Slack Channel](https://github.com/mims-harvard/ToolUniverse/discussions)
|
|
229
251
|
- **Contact**: Reach out to [Shanghua Gao](shanghuagao@gmail.com)/[Marinka Zitnik](marinka@hms.harvard.edu)
|
|
230
|
-
- **Contribute**: See our [Contributing Tutorial](https://zitniklab.hms.harvard.edu/
|
|
252
|
+
- **Contribute**: See our [Contributing Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/comprehensive_tool_guide.html)
|
|
231
253
|
|
|
232
254
|
|
|
233
255
|
|
|
@@ -235,10 +257,10 @@ Please join our [Slack Channel](https://join.slack.com/t/tooluniversehq/shared_i
|
|
|
235
257
|
|
|
236
258
|
- **[Shanghua Gao](https://shgao.site)**
|
|
237
259
|
- **[Richard Zhu](https://www.linkedin.com/in/richard-zhu-4236901a7/)**
|
|
238
|
-
- **[Pengwei Sui](
|
|
260
|
+
- **[Pengwei Sui](https://psui3905.github.io/)**
|
|
239
261
|
- **[Zhenglun Kong](https://zlkong.github.io/homepage/)**
|
|
240
262
|
- **[Sufian Aldogom](mailto:saldogom@mit.edu)**
|
|
241
|
-
- **[Yepeng Huang](
|
|
263
|
+
- **[Yepeng Huang](https://yepeng.notion.site/Yepeng-Huang-16ad8dd1740080c28d4bd3e3d7c1080c)**
|
|
242
264
|
- **[Ayush Noori](https://www.ayushnoori.com/)**
|
|
243
265
|
- **[Reza Shamji](mailto:reza_shamji@hms.harvard.edu)**
|
|
244
266
|
- **[Krishna Parvataneni](mailto:krishna_parvataneni@hms.harvard.edu)**
|
|
@@ -252,53 +274,63 @@ Please join our [Slack Channel](https://join.slack.com/t/tooluniversehq/shared_i
|
|
|
252
274
|
Our comprehensive documentation covers everything from quick start to advanced workflows:
|
|
253
275
|
|
|
254
276
|
### 🚀 Getting Started
|
|
255
|
-
- **[Quick Start Tutorial](https://zitniklab.hms.harvard.edu/
|
|
256
|
-
- **[Installation](https://zitniklab.hms.harvard.edu/
|
|
257
|
-
- **[Getting Started](https://zitniklab.hms.harvard.edu/
|
|
258
|
-
- **[AI-Tool Protocol](https://zitniklab.hms.harvard.edu/
|
|
277
|
+
- **[Quick Start Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/quickstart.html)**: 5-minute setup and first query
|
|
278
|
+
- **[Installation](https://zitniklab.hms.harvard.edu/ToolUniverse/installation.html)**: Complete installation options
|
|
279
|
+
- **[Getting Started](https://zitniklab.hms.harvard.edu/ToolUniverse/getting_started.html)**: Step-by-step tutorial
|
|
280
|
+
- **[AI-Tool Protocol](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/interaction_protocol.html)**: Understanding the interaction protocol
|
|
259
281
|
|
|
260
282
|
### 📖 User Guides
|
|
261
|
-
- **[Loading Tools](https://zitniklab.hms.harvard.edu/
|
|
262
|
-
- **[Tool Discovery](https://zitniklab.hms.harvard.edu/
|
|
263
|
-
- **[Tool Caller](https://zitniklab.hms.harvard.edu/
|
|
264
|
-
- **[Tool Composition](https://zitniklab.hms.harvard.edu/
|
|
265
|
-
- **[Scientific Workflows](https://zitniklab.hms.harvard.edu/
|
|
266
|
-
- **[MCP Support](https://zitniklab.hms.harvard.edu/
|
|
267
|
-
- **[Logging](https://zitniklab.hms.harvard.edu/
|
|
283
|
+
- **[Loading Tools](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/loading_tools.html)**: Complete Tutorial to loading tools
|
|
284
|
+
- **[Tool Discovery](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/finding_tools.html)**: Find tools by keyword, LLM, and embedding search
|
|
285
|
+
- **[Tool Caller](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/tool_caller.html)**: Primary execution engine
|
|
286
|
+
- **[Tool Composition](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/tool_composition.html)**: Chain tools into workflows
|
|
287
|
+
- **[Scientific Workflows](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/scientific_workflows.html)**: Real-world research scenarios
|
|
288
|
+
- **[MCP Support](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/mcp_support.html)**: Model Context Protocol integration
|
|
289
|
+
- **[Logging](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/logging.html)**: Comprehensive logging configuration
|
|
268
290
|
|
|
269
291
|
### 🛠️ Advanced Features
|
|
270
|
-
- **[Hooks System](https://zitniklab.hms.harvard.edu/
|
|
271
|
-
- **[Hook Configuration](https://zitniklab.hms.harvard.edu/
|
|
272
|
-
- **[File Save Hook](https://zitniklab.hms.harvard.edu/
|
|
273
|
-
- **[Summarization Hook](https://zitniklab.hms.harvard.edu/
|
|
274
|
-
- **[Server Stdio Hooks](https://zitniklab.hms.harvard.edu/
|
|
275
|
-
- **[Expert Feedback](https://zitniklab.hms.harvard.edu/
|
|
276
|
-
- **[Agentic Tools](https://zitniklab.hms.harvard.edu/
|
|
277
|
-
- **[Case Study](https://zitniklab.hms.harvard.edu/
|
|
278
|
-
- **[Tool Optimization](https://zitniklab.hms.harvard.edu/
|
|
292
|
+
- **[Hooks System](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/hooks/index.html)**: Intelligent output processing
|
|
293
|
+
- **[Hook Configuration](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/hooks/hook_configuration.html)**: Configure hooks for different outputs
|
|
294
|
+
- **[File Save Hook](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/hooks/file_save_hook.html)**: Save tool outputs to files
|
|
295
|
+
- **[Summarization Hook](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/hooks/summarization_hook.html)**: Summarize tool outputs
|
|
296
|
+
- **[Server Stdio Hooks](https://zitniklab.hms.harvard.edu/ToolUniverse/guide/hooks/server_stdio_hooks.html)**: Server communication hooks
|
|
297
|
+
- **[Expert Feedback](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/expert_feedback.html)**: Human-in-the-loop consultation
|
|
298
|
+
- **[Agentic Tools](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/agentic_tools_tutorial.html)**: AI-powered tool development
|
|
299
|
+
- **[Case Study](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/tooluniverse_case_study.html)**: End-to-end drug discovery workflow
|
|
300
|
+
- **[Tool Optimization](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/optimization/Tool_Description_Optimizer_Tutorial.html)**: Optimize tool descriptions for better performance
|
|
279
301
|
|
|
280
302
|
### 🔧 Expanding ToolUniverse
|
|
281
|
-
- **[Architecture](https://zitniklab.hms.harvard.edu/
|
|
282
|
-
- **[Local Tool Registration](https://zitniklab.hms.harvard.edu/
|
|
283
|
-
- **[Remote Tool Registration](https://zitniklab.hms.harvard.edu/
|
|
284
|
-
- **[Contributing Tools](https://zitniklab.hms.harvard.edu/
|
|
285
|
-
- **[Adding Tools Tutorial](https://zitniklab.hms.harvard.edu/
|
|
286
|
-
- **[MCP Tool Registration](https://zitniklab.hms.harvard.edu/
|
|
303
|
+
- **[Architecture](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/architecture.html)**: System architecture overview
|
|
304
|
+
- **[Local Tool Registration](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/local_tool_registration.html)**: Create custom tools
|
|
305
|
+
- **[Remote Tool Registration](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/remote_tool_registration.html)**: Integrate external services
|
|
306
|
+
- **[Contributing Tools](https://zitniklab.hms.harvard.edu/ToolUniverse/expand_tooluniverse/comprehensive_tool_guide.html)**: Complete contribution guide
|
|
307
|
+
- **[Adding Tools Tutorial](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/addtools/Adding_Tools_Tutorial.html)**: Step-by-step tool addition guide
|
|
308
|
+
- **[MCP Tool Registration](https://zitniklab.hms.harvard.edu/ToolUniverse/tutorials/addtools/mcp_tool_registration_en.html)**: Register tools via MCP
|
|
287
309
|
|
|
288
310
|
### 📚 API Reference
|
|
289
|
-
- **[API Directory](https://zitniklab.hms.harvard.edu/
|
|
290
|
-
- **[Core Modules](https://zitniklab.hms.harvard.edu/
|
|
291
|
-
- **[Tool Classes](https://zitniklab.hms.harvard.edu/
|
|
292
|
-
- **[Compose Scripts](https://zitniklab.hms.harvard.edu/
|
|
293
|
-
- **[MCP Integration](https://zitniklab.hms.harvard.edu/
|
|
311
|
+
- **[API Directory](https://zitniklab.hms.harvard.edu/ToolUniverse/api/modules.html)**: Complete module listing
|
|
312
|
+
- **[Core Modules](https://zitniklab.hms.harvard.edu/ToolUniverse/api/tooluniverse.html)**: Main ToolUniverse class and utilities
|
|
313
|
+
- **[Tool Classes](https://zitniklab.hms.harvard.edu/ToolUniverse/api/tooluniverse.base_tool.html)**: Base tool classes and implementations
|
|
314
|
+
- **[Compose Scripts](https://zitniklab.hms.harvard.edu/ToolUniverse/api/tooluniverse.compose_scripts.html)**: Tool composition utilities
|
|
315
|
+
- **[MCP Integration](https://zitniklab.hms.harvard.edu/ToolUniverse/api/tooluniverse.mcp_integration.html)**: Model Context Protocol support
|
|
294
316
|
|
|
295
|
-
→ **Browse All Documentation**: [ToolUniverse Documentation](https://zitniklab.hms.harvard.edu/
|
|
317
|
+
→ **Browse All Documentation**: [ToolUniverse Documentation](https://zitniklab.hms.harvard.edu/ToolUniverse/)
|
|
296
318
|
|
|
297
319
|
|
|
298
320
|
### Citation
|
|
299
321
|
|
|
300
322
|
```
|
|
301
|
-
@
|
|
323
|
+
@article{gao2025democratizingaiscientistsusing,
|
|
324
|
+
title={Democratizing AI scientists using ToolUniverse},
|
|
325
|
+
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},
|
|
326
|
+
year={2025},
|
|
327
|
+
eprint={2509.23426},
|
|
328
|
+
archivePrefix={arXiv},
|
|
329
|
+
primaryClass={cs.AI},
|
|
330
|
+
url={https://arxiv.org/abs/2509.23426},
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
@article{gao2025txagent,
|
|
302
334
|
title={TxAgent: An AI Agent for Therapeutic Reasoning Across a Universe of Tools},
|
|
303
335
|
author={Shanghua Gao and Richard Zhu and Zhenglun Kong and Ayush Noori and Xiaorui Su and Curtis Ginder and Theodoros Tsiligkaridis and Marinka Zitnik},
|
|
304
336
|
year={2025},
|
|
@@ -309,11 +341,6 @@ Our comprehensive documentation covers everything from quick start to advanced w
|
|
|
309
341
|
}
|
|
310
342
|
```
|
|
311
343
|
|
|
312
|
-
|
|
313
|
-
### Acknowledgments
|
|
314
|
-
|
|
315
|
-
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.
|
|
316
|
-
|
|
317
344
|
---
|
|
318
345
|
|
|
319
346
|
*Democratizing AI agents for science with ToolUniverse.*
|