Biomedical APIs MCP Server
Provides tools for querying Crunchbase company and funding data (free tier limited; stub implementation requires real API key).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Biomedical APIs MCP ServerSearch ClinicalTrials.gov for epilepsy trials starting in 2023"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Biomedical APIs MCP Server
This Model Context Protocol (MCP) server exposes 14 tools to query free biomedical and pharmaceutical APIsβplus stubs for restricted/paid sourcesβenabling AI agents to access clinical trial data, drug information, molecular structures, adverse events, and research literature.
π― Available APIs
Free & Open APIs (fully functional)
ClinicalTrials.gov β Search registered clinical trials worldwide
ChEMBL β Small molecules, bioactivity data, drug-like compounds
PubChem β Chemical compounds, molecular properties
OpenFDA β FDA adverse event reports (drug, device, food)
Europe PMC β Biomedical research articles and preprints
Restricted/Paid APIs (stubs only)
dbGaP β NIH genomic & clinical datasets (requires NIH credentials)
PhysioNet β Physiological signals (requires credentialed access)
MIMIC-IV β ICU records (PhysioNet credential + CITI training)
UK Biobank β Large-scale biomedical data (application required)
DrugBank β Structured drug data (academic/commercial license)
BindingDB β Protein-ligand binding affinities (bulk download)
OpenTrials β Merged trial data & sponsors (open access)
Crunchbase β Company & funding data (free tier limited)
Related MCP server: GenomeMCP
π Quick Start
1. Install Dependencies
npm install2. Configure Environment (optional)
Copy .env.example to .env and add optional API keys:
cp .env.example .envEdit .env:
OPENFDA_API_KEY=your_key_here # Optional: increases OpenFDA rate limits
CRUNCHBASE_API_KEY=your_key_here # Optional: enables Crunchbase free tier3. Build the Server
npm run build4. Run in Development Mode
npm run dev5. Use in Production
npm startπ§ͺ Testing with MCP Inspector
MCP Inspector lets you test your server interactively:
npx @modelcontextprotocol/inspector node dist/server.jsOnce connected, you can:
List all 14 available tools
Test tool calls with custom inputs
View structured JSON responses
Debug errors and API rate limits
π Connecting to Clients
VS Code (Copilot Agent Mode)
The server is pre-configured in .vscode/mcp.json:
{
"servers": {
"biomed-apis": {
"type": "stdio",
"command": "node",
"args": ["dist/server.js"]
}
}
}To connect:
Open this workspace in VS Code
Restart VS Code (if needed)
Open Copilot Chat and confirm the MCP server is listed
Ask: "Search ClinicalTrials.gov for epilepsy trials started in 2023"
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"biomed-apis": {
"command": "node",
"args": ["C:\\For Me\\Projects\\mcp with DBs\\dist\\server.js"]
}
}
}Restart Claude Desktop. The tools will appear in the MCP panel.
Claude Code CLI
claude mcp add --transport stdio biomed-apis node "C:\\For Me\\Projects\\mcp with DBs\\dist\\server.js"π Example Tool Calls
1. Search Clinical Trials
{
"tool": "search_clinical_trials",
"input": {
"query": "epilepsy",
"filter": "AREA[StartDate]2020-01-01+TO+2023-12-31",
"pageSize": 5
}
}Returns: NCT IDs, titles, status, phases, conditions, interventions
2. Search ChEMBL Compounds
{
"tool": "search_chembl_compounds",
"input": {
"query": "aspirin",
"limit": 5
}
}Returns: ChEMBL IDs, molecular formulas, weights, max clinical phase
3. Get ChEMBL Bioactivity Data
{
"tool": "get_chembl_activities",
"input": {
"targetChemblId": "CHEMBL2",
"limit": 10
}
}Returns: Activity IDs, assay IDs, molecules, types (IC50, Ki, etc.), values, units
4. Get PubChem Compound by Name
{
"tool": "get_pubchem_compound",
"input": {
"name": "glucose"
}
}Returns: CID, molecular formula, weight, IUPAC name, SMILES
5. Search OpenFDA Drug Adverse Events
{
"tool": "search_openfda_drug_events",
"input": {
"search": "patient.drug.medicinalproduct:\"metformin\"",
"limit": 10
}
}Returns: Receive dates, patient ages, reactions, drug names
6. Search Europe PMC Articles
{
"tool": "search_europepmc_articles",
"input": {
"query": "CRISPR gene editing",
"pageSize": 10
}
}Returns: Article IDs, sources, titles, authors, journals, publication years
7. Query Restricted APIs (Stubs)
{
"tool": "query_dbgap",
"input": {
"query": "GWAS cardiovascular disease"
}
}Returns: [dbGaP stub] Querying: "GWAS cardiovascular disease". Access requires NIH credentials & dbGaP approval.
Note: Stubs for dbGaP, PhysioNet, MIMIC-IV, UK Biobank, DrugBank, BindingDB, OpenTrials, and Crunchbase return informational messages. Replace the stub functions in
src/clients/restrictedStubs.tswith real implementations once you have credentials.
π οΈ Project Structure
mcp-biomed-server/
βββ src/
β βββ server.ts # Main MCP server with all 14 tools
β βββ clients/
β βββ clinicalTrialsClient.ts # ClinicalTrials.gov
β βββ chemblClient.ts # ChEMBL
β βββ pubchemClient.ts # PubChem
β βββ openfdaClient.ts # OpenFDA
β βββ europePmcClient.ts # Europe PMC
β βββ restrictedStubs.ts # Stubs for restricted APIs
βββ dist/ # Compiled JavaScript (after build)
βββ .vscode/
β βββ mcp.json # VS Code MCP config
βββ .env.example # Environment variable template
βββ package.json
βββ tsconfig.json
βββ README.mdπ§ Development
Adding a New Tool
Create a client function in
src/clients/(or add to existing file)Register the tool in
src/server.ts:server.registerTool( 'my_tool_name', { title: 'My Tool', description: 'What it does', inputSchema: { param: z.string().describe('Parameter description') }, outputSchema: { result: z.string() } }, async ({ param }) => { const result = await myClientFunction(param); return { content: [{ type: 'text', text: JSON.stringify({ result }) }], structuredContent: { result } }; } );Rebuild:
npm run build
Debugging
Use
npm run devfor live TypeScript execution viatsxServer logs errors to
stderr(visible in MCP Inspector or client logs)Check rate limits if APIs return HTTP 429
βοΈ Rate Limits & Best Practices
API | Rate Limit | Notes |
ClinicalTrials.gov | ~1000 req/day | No key required; public access |
ChEMBL | Unknown (generous) | No key; community-supported |
PubChem | ~5 req/sec | No key; use delays for bulk requests |
OpenFDA | 240 req/min (1000/day without key) | API key increases to 240 req/min |
Europe PMC | Unknown (generous) | No key; rate-limited |
Tips:
Use
pageSize/limitparameters to control result countsAdd exponential backoff for HTTP 429 errors
Consider caching responses for repeated queries
π References
π License
MIT (adjust as needed for your project)
π€ Contributing
Fork the repository
Create a feature branch (
git checkout -b feature/new-api)Add your client in
src/clients/Register tools in
src/server.tsTest with MCP Inspector
Submit a pull request
π Troubleshooting
"Cannot find module" errors
npm install # Reinstall dependencies
npm run build # Rebuild after changesVS Code doesn't recognize the MCP server
Ensure
.vscode/mcp.jsonexistsRebuild:
npm run buildRestart VS Code
Check VS Code's MCP output panel for errors
API returns 429 (Too Many Requests)
Add delays between requests
Use optional API keys (OpenFDA, Crunchbase)
Reduce
pageSize/limitparameters
Stub tools return placeholder messages
This is expected! Restricted APIs require credentials
Replace functions in
src/clients/restrictedStubs.tswith real implementations
π Next Steps
Test all 14 tools with MCP Inspector
Connect to VS Code Copilot and try example queries
Replace stubs with real API implementations (if you have access)
Add rate limiting and caching for production use
Extend with more APIs: BindingDB real download, OpenTrials integration, etc.
Built with π using Model Context Protocol
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/KrithikVishal/mcp-with-dbs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server