by biocontext-ai
BioContextAI Knowledgebase MCP — a standardized biomedical knowledgebase API for verified literature and gene/protein da
Provides standardized access to biomedical databases like bioRxiv, EuropePMC, and protein/gene databases through the Model Context Protocol. Enables AI systems to retrieve verified biomedical research data without custom integrations.
BioContextAI Knowledgebase MCP is an official MCP server published by biocontext-ai that provides AI assistants with tools and capabilities via the Model Context Protocol. BioContextAI Knowledgebase MCP — a standardized biomedical knowledgebase API for verified literature and gene/protein da It is categorized under developer tools, ai ml.
You can install BioContextAI Knowledgebase MCP in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
Apache-2.0
BioContextAI Knowledgebase MCP is released under the Apache-2.0 license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
BioContextAI Knowledgebase MCP is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
According to our notes, BioContextAI Knowledgebase MCP benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
BioContextAI Knowledgebase MCP has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Strong directory entry: BioContextAI Knowledgebase MCP surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Useful MCP listing: BioContextAI Knowledgebase MCP is the kind of server we cite when onboarding engineers to host + tool permissions.
Strong directory entry: BioContextAI Knowledgebase MCP surfaces stars and publisher context so we could sanity-check maintenance before adopting.
BioContextAI Knowledgebase MCP has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
BioContextAI Knowledgebase MCP is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
I recommend BioContextAI Knowledgebase MCP for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Useful MCP listing: BioContextAI Knowledgebase MCP is the kind of server we cite when onboarding engineers to host + tool permissions.
showing 1-10 of 74
A Model Context Protocol (MCP) server for biomedical research that provides a standardized connection layer between artificial intelligence systems and biomedical resources. Documentation and usage guides are available at: https://biocontext.ai
BioContextAI Knowledgebase MCP is an MCP server implementation for common biomedical resources, enabling agentic large language models (LLMs) to retrieve verified information and perform domain-specific tasks. Unlike previous approaches that required custom integration for each resource, BioContextAI KB MCP provides a unified access layer through the Model Context Protocol that enables interoperability between AI systems and domain-specific data sources.
The Knowledgebase MCP is available both as:
[!WARNING] If possible, we encourage you to run BioContextAI Knowledgebase MCP locally to avoid rate limits and ensure the service's availability for applications that rely on remote hosting.
The Knowledgebase MCP is part of the wider BioContextAI project. The BioContextAI Registry catalogues community servers that expose biomedical databases and analysis tools, providing the community with a resource for tool discovery and distribution. The registry index can be found at: https://biocontext.ai/registry.
BioContextAI Knowledgebase MCP exposes a number of external biomedical APIs. You can think of BioContextAI as a browser for your LLM that allows it to find relevant information across these knowledge bases. Please make sure to adhere to the usage limits (e.g., rate limits) of the respective services when using BioContextAI Knowledgebase MCP. If you use data from these services in your research, please make sure to cite both BioContextAI as well as the respective data source/tool.
[!WARNING] The data accessed through these APIs is not covered by the BioContextAI Knowledgebase MCP license. You are responsible for ensuring that your use of the data aligns with permitted practices.
FastMCP allows for easy conversion of REST endpoints following the OpenAPI specification into MCP servers. We have added code to automatically create such servers based on schemas provided through a configuration file, so that users deploying their own version of BioContextAI can easily extend the list of available tools. The configuration file is located at src/biocontext_kb/openapi/config.yaml. By default, no OpenAPI servers are included, but you can edit the configuration file to add services.
Edit your claude_desktop_config.json file. To find it, click on your name and then “Settings”. Next, click on “Developer” to see “Local MCP servers” and then click on “Edit Config”.
{
"mcpServers": {
"biocontext_kb": {
"command": "uvx", // On Mac, use "brew install uv"
"args": [
"biocontext_kb@latest"
],
"env": {
"UV_PYTHON": "3.12"
}
}
}
}
[!WARNING] Don't forget to restart Claude to apply the changes.
uvRun the server with streamable HTTP and uvicorn:
export MCP_ENVIRONMENT=PRODUCTION && export PORT=8000 && uvx biocontext_kb
Run the server with stdio transport:
export MCP_ENVIRONMENT=DEVELOPMENT && uvx biocontext_kb
Change the configuration file of your coding agents, e.g., VS Code (.vscode/mcp.json), Cursor (.cursor/mcp.json), or WindSurf (.codeium/windsurf/mcp_config.json):
{
// VS Code: Use "servers" instead of "mcpServers"
"mcpServers": {
"biocontext_kb": {
// if it doesn't work, replace with the `which uvx` path (installation via Homebrew recommended on macOS)
"command": "uvx",
"args": [
"biocontext_kb@latest"
],
}
}
}
When using Windows and WSL2 the above config needs to be adapted as follows:
{
// VS Code: "servers"
"mcpServers": {
"biocontext_kb": {
"command": "wsl",
"args": [
"~/.local/bin/uvx", // set to the path to your `uvx`
"biocontext_kb"
]
}
}
}
Clone the latest version of this repository:
git clone https://github.com/biocontext-ai/knowlegebase-mcp.git
cd knowlegebase-mcp
Then build the container, running gunicorn with multiple uvicorn workers:
# Build the docker container
docker build -t biocontext_kb:latest .
docker run -p 127.0.0.1:8000:8000 biocontext_kb:latest
This exposes your MCP server at: http://127.0.0.1:8000/mcp/
[!WARNING] For public deployments, you should disable unnecessary ports and access your MCP server through a reverse proxy, e.g., Nginx or Caddy. You may also want to configure the running user and the directory to have limited rights, use Docker or podman in a rootless setup and take additional security measures like DDOS protection with Cloudflare or fail2ban.
To develop your own agentic systems that make use of the MCP server, you may want to consider some of the following options:
You can find our Nature Biotechnology correspondence here: https://www.nature.com/articles/s41587-025-02900-9.
If our work is useful to your research, please cite it as below.
@article{BioContext_AI_Kuehl_Schaub_2025,
title={BioContextAI is a community hub for agentic biomedical systems},
url={http://dx.doi.org/10.1038/s41587-025-02900-9},
urldate = {2025-11-06},
doi={10.1038/s41587-025-02900-9},
year = {2025},
month = nov,
journal={Nature Biotechnology},
publisher={Springer Science and Business Media LLC},
author={Kuehl, Malte and Schaub, Darius P. and Carli, Francesco and Heumos, Lukas and Hellmig, Malte and Fernández-Zapata, Camila and Kaiser, Nico and Schaul, Jonathan and Kulaga, Anton and Usanov, Nikolay and Koutrouli, Mikaela and Ergen, Can and Palla, Giovanni and Krebs, Christian F. and Panzer, Ulf and Bonn, Stefan and Lobentanzer, Sebastian and Saez-Rodriguez, Julio and Puelles, Victor G.},
year={2025},
month=nov,
language={en},
}
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
[!WARNING] The Apache 2.0 License only applies to the code provided in this repository. For usage limitations and licenses of the individually integrated APIs, users should directly refer to the respective API providers. We provide an overview below.
| Data Source
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.