Biomedical APIs MCP Server

Biomedical APIs MCP Server

Enables AI agents to query free biomedical and pharmaceutical APIs for clinical trials, drug data, molecular structures, adverse events, and research literature.

Category
Visit Server

README

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)

  1. ClinicalTrials.gov β†’ Search registered clinical trials worldwide
  2. ChEMBL β†’ Small molecules, bioactivity data, drug-like compounds
  3. PubChem β†’ Chemical compounds, molecular properties
  4. OpenFDA β†’ FDA adverse event reports (drug, device, food)
  5. Europe PMC β†’ Biomedical research articles and preprints

Restricted/Paid APIs (stubs only)

  1. dbGaP β†’ NIH genomic & clinical datasets (requires NIH credentials)
  2. PhysioNet β†’ Physiological signals (requires credentialed access)
  3. MIMIC-IV β†’ ICU records (PhysioNet credential + CITI training)
  4. UK Biobank β†’ Large-scale biomedical data (application required)
  5. DrugBank β†’ Structured drug data (academic/commercial license)
  6. BindingDB β†’ Protein-ligand binding affinities (bulk download)
  7. OpenTrials β†’ Merged trial data & sponsors (open access)
  8. Crunchbase β†’ Company & funding data (free tier limited)

πŸš€ Quick Start

1. Install Dependencies

npm install

2. Configure Environment (optional)

Copy .env.example to .env and add optional API keys:

cp .env.example .env

Edit .env:

OPENFDA_API_KEY=your_key_here  # Optional: increases OpenFDA rate limits
CRUNCHBASE_API_KEY=your_key_here  # Optional: enables Crunchbase free tier

3. Build the Server

npm run build

4. Run in Development Mode

npm run dev

5. Use in Production

npm start

πŸ§ͺ Testing with MCP Inspector

MCP Inspector lets you test your server interactively:

npx @modelcontextprotocol/inspector node dist/server.js

Once 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:

  1. Open this workspace in VS Code
  2. Restart VS Code (if needed)
  3. Open Copilot Chat and confirm the MCP server is listed
  4. 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.ts with 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

  1. Create a client function in src/clients/ (or add to existing file)
  2. 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 }
        };
      }
    );
    
  3. Rebuild: npm run build

Debugging

  • Use npm run dev for live TypeScript execution via tsx
  • Server 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/limit parameters to control result counts
  • Add exponential backoff for HTTP 429 errors
  • Consider caching responses for repeated queries

πŸ“– References


πŸ“ License

MIT (adjust as needed for your project)


🀝 Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/new-api)
  3. Add your client in src/clients/
  4. Register tools in src/server.ts
  5. Test with MCP Inspector
  6. Submit a pull request

πŸ› Troubleshooting

"Cannot find module" errors

npm install  # Reinstall dependencies
npm run build  # Rebuild after changes

VS Code doesn't recognize the MCP server

  1. Ensure .vscode/mcp.json exists
  2. Rebuild: npm run build
  3. Restart VS Code
  4. 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/limit parameters

Stub tools return placeholder messages

  • This is expected! Restricted APIs require credentials
  • Replace functions in src/clients/restrictedStubs.ts with 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

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured