Back to Browse

ToolUniverse MCP Server

Developer ToolsLow Risk9.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

2,500+ scientific tools for AI scientists: life science, research, literature, and more.

About

2,500+ scientific tools for AI scientists: life science, research, literature, and more.

Security Report

9.0
Low Risk9.0Low Risk

Valid MCP server (1 strong, 2 medium validity signals). 2 known CVEs in dependencies Package registry verified. Imported from the Official MCP Registry.

14 files analyzed · 3 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

What You'll Need

Set these up before or after installing:

OpenAI API key for LLM-based tool finding and embedding featuresRequired

Environment variable: OPENAI_API_KEY

Anthropic API key for Claude-based featuresRequired

Environment variable: ANTHROPIC_API_KEY

Google Gemini API key for Gemini-based featuresRequired

Environment variable: GEMINI_API_KEY

OpenRouter API key for accessing 100+ LLM modelsRequired

Environment variable: OPENROUTER_API_KEY

Azure OpenAI API key (alternative to OpenAI)Required

Environment variable: AZURE_OPENAI_API_KEY

HuggingFace token for accessing models and datasetsRequired

Environment variable: HF_TOKEN

NCBI/PubMed API key for higher rate limits (10 req/sec vs 3 req/sec). Register at https://www.ncbi.nlm.nih.gov/account/Required

Environment variable: NCBI_API_KEY

Semantic Scholar API key for higher rate limits (100 req/sec vs 1 req/sec). Register at https://www.semanticscholar.org/product/apiRequired

Environment variable: SEMANTIC_SCHOLAR_API_KEY

BioGRID API key for protein-protein interaction queries. Register free at https://webservice.thebiogrid.org/Required

Environment variable: BIOGRID_API_KEY

DisGeNET API key for gene-disease association data. Register free at https://www.disgenet.org/Required

Environment variable: DISGENET_API_KEY

OMIM API key for Mendelian disease data. Register at https://omim.org/apiRequired

Environment variable: OMIM_API_KEY

OncoKB API token for precision oncology annotations. Register at https://www.oncokb.org/apiAccessRequired

Environment variable: ONCOKB_API_TOKEN

NVIDIA NIM API key for AlphaFold2 structure prediction, molecular docking, and genomics tools. Get key at https://build.nvidia.comRequired

Environment variable: NVIDIA_API_KEY

USPTO API key for patent data access. Register at https://developer.uspto.gov/Required

Environment variable: USPTO_API_KEY

UMLS API key for medical terminology and concept mapping. Register at https://uts.nlm.nih.gov/uts/Required

Environment variable: UMLS_API_KEY

BRENDA enzyme database login email. Register at https://www.brenda-enzymes.org/Optional

Environment variable: BRENDA_EMAIL

BRENDA enzyme database login passwordRequired

Environment variable: BRENDA_PASSWORD

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-mims-harvard-tooluniverse": {
      "env": {
        "HF_TOKEN": "your-hf-token-here",
        "BRENDA_EMAIL": "your-brenda-email-here",
        "NCBI_API_KEY": "your-ncbi-api-key-here",
        "OMIM_API_KEY": "your-omim-api-key-here",
        "UMLS_API_KEY": "your-umls-api-key-here",
        "USPTO_API_KEY": "your-uspto-api-key-here",
        "GEMINI_API_KEY": "your-gemini-api-key-here",
        "NVIDIA_API_KEY": "your-nvidia-api-key-here",
        "OPENAI_API_KEY": "your-openai-api-key-here",
        "BIOGRID_API_KEY": "your-biogrid-api-key-here",
        "BRENDA_PASSWORD": "your-brenda-password-here",
        "DISGENET_API_KEY": "your-disgenet-api-key-here",
        "ONCOKB_API_TOKEN": "your-oncokb-api-token-here",
        "ANTHROPIC_API_KEY": "your-anthropic-api-key-here",
        "OPENROUTER_API_KEY": "your-openrouter-api-key-here",
        "AZURE_OPENAI_API_KEY": "your-azure-openai-api-key-here",
        "SEMANTIC_SCHOLAR_API_KEY": "your-semantic-scholar-api-key-here"
      },
      "args": [
        "tooluniverse"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

ToolUniverse: Democratizing AI scientists

Documentation Paper PyPI version MCP Registry Website Slack WeChat LinkedIn X PyPI Downloads

Install

AI agent (recommended) — open your AI agent and run:

Read https://aiscientist.tools/setup.md and set up ToolUniverse for me.

The agent will walk you through MCP configuration, API keys, skill installation, and validation.

Add to your MCP config file:

{
  "mcpServers": {
    "tooluniverse": {
      "command": "uvx",
      "args": ["--refresh", "tooluniverse"],
      "env": {"PYTHONIOENCODING": "utf-8"}
    }
  }
}

--refresh checks PyPI for the newest release on every launch. Drop it ("args": ["tooluniverse"]) to start faster from uv's cache — then upgrade with uv cache clean tooluniverse.

Install agent skills:

npx skills add mims-harvard/ToolUniverse

Claude Code users — one line, no config file:

claude plugin marketplace add mims-harvard/ToolUniverse
claude plugin install tooluniverse@tooluniverse

Python developers — install the SDK. Install uv first and do not use system pip: on a current Mac, pip install tooluniverse fails with externally-managed-environment (PEP 668) and python3 -m venv can fail at ensurepip. uv manages its own Python and avoids both.

curl -LsSf https://astral.sh/uv/install.sh | sh   # if you don't have uv
uv venv --python 3.12 && source .venv/bin/activate
uv pip install tooluniverse

The base install covers the API and database tools. Local ML, cheminformatics, and plotting tools need extras — uv pip install 'tooluniverse[all]', or a single group such as [ml], [visualization], [bioinformatics]. Note [all] excludes singlecell, smolagents, client, and build, which install by name. Run tooluniverse-doctor to see which groups are missing.

tu CLI — discover, inspect, run, and test tools from the terminal. Python SDK — programmatic access for building AI scientist systems.

Building AI Scientists with ToolUniverse

Click to watch the demo (YouTube) (Bilibili)

What is ToolUniverse?

ToolUniverse is an ecosystem for creating AI scientist systems from any large language model. Powered by the AI-Tool Interaction Protocol, it standardizes how LLMs identify and call tools, integrating more than 1000 machine learning models, datasets, APIs, and scientific packages for data analysis, knowledge retrieval, and experimental design.

Key features:

  • AI-Tool Interaction Protocol: Standardized interface governing how AI scientists issue tool requests and receive results
  • Universal AI Model Support: Works with Claude, GPT, Gemini, Qwen, Deepseek, and open models
  • MCP Integration: Native Model Context Protocol server with configurable transport and tool selection
  • Async Operations: Long-running tasks (protein docking, molecular simulations) with progress tracking and parallel execution
  • Tool Composition: Chain tools for sequential or parallel execution in self-directed workflows
  • Compact Mode: Reduces 1000+ tools to 4-5 core discovery tools, saving ~99% context window
  • CLI (tu): Discover, inspect, run, and test tools directly from the terminal — 9 subcommands for interactive and scripted workflows
  • Agent Skills: 68 pre-built research workflows for drug discovery, precision oncology, rare disease diagnosis, pharmacovigilance, and more
  • Literature Search: Unified search across PubMed, Semantic Scholar, ArXiv, BioRxiv, Europe PMC, and more
  • Two-Tier Result Caching: In-memory LRU + SQLite persistence with per-tool fingerprinting for 10x speedup, offline support, and reproducibility
  • Continuous Expansion: Register new tools locally or remotely without additional configuration

AI Scientists Powered by ToolUniverse

Building your project with ToolUniverse? Submit via GitHub Pull Request or contact us.

TxAgent: AI Agent for Therapeutic Reasoning [Project] [Paper] [PyPI] [GitHub] [HuggingFace]

TxAgent leverages ToolUniverse's scientific tool ecosystem to solve complex therapeutic reasoning tasks.


Medea: An Omics AI Agent for Therapeutic Discovery [Project] [Paper] [GitHub]

Medea integrates ToolUniverse tools for multi-omics analysis to identify therapeutic targets and predict drug responses across cancer, autoimmune, and other diseases.

Documentation

Full documentation: zitniklab.hms.harvard.edu/ToolUniverse

Community

Shanghua Gao, the lead creator of this project, is currently on the job market.

Slack · GitHub Issues · Shanghua Gao · Marinka Zitnik

Leaders: Shanghua Gao · Marinka Zitnik

Contributors: Shanghua Gao · Richard Zhu · Pengwei Sui · Zhenglun Kong · Sufian Aldogom · Yepeng Huang · Ayush Noori · Reza Shamji · Krishna Parvataneni · Theodoros Tsiligkaridis · Marinka Zitnik

Citation

@article{gao2025democratizingaiscientistsusing,
      title={Democratizing AI scientists using ToolUniverse}, 
      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},
      year={2025},
      eprint={2509.23426},
      archivePrefix={arXiv},
      primaryClass={cs.AI},
      url={https://arxiv.org/abs/2509.23426}, 
}

Reviews

No reviews yet

Be the first to review this server!

ToolUniverse MCP Server - 2,500+ scientific tools for AI scientists: life science, | MCP Marketplace