loading…
Search for a command to run...
loading…
MCP server for PubMed/NCBI E-utilities integration. Search articles, fetch metadata and open-access full text (PMC + Unpaywall), generate citations, explore MeS
MCP server for PubMed/NCBI E-utilities integration. Search articles, fetch metadata and open-access full text (PMC + Unpaywall), generate citations, explore MeSH terms, and discover related research.
MCP server for the NCBI E-utilities API. Search PubMed, fetch article metadata and full text, generate citations, explore MeSH terms, and discover related research. STDIO or Streamable HTTP.
Public Hosted Server: https://pubmed.caseyjhand.com/mcp
Nine tools for working with PubMed and NCBI data:
| Tool | Description |
|---|---|
pubmed_search_articles |
Search PubMed with full query syntax, field-specific filters, date ranges, pagination, and optional brief summaries |
pubmed_fetch_articles |
Fetch full article metadata by PMIDs — abstract, authors, journal, MeSH terms, grants |
pubmed_fetch_fulltext |
Fetch full-text articles from PubMed Central, with optional Unpaywall fallback for non-PMC DOIs (HTML → Markdown or PDF → text) |
pubmed_format_citations |
Generate formatted citations in APA 7th, MLA 9th, BibTeX, or RIS |
pubmed_find_related |
Find similar articles, citing articles, or references for a given PMID |
pubmed_spell_check |
Spell-check biomedical queries using NCBI's ESpell service |
pubmed_lookup_mesh |
Search and explore MeSH vocabulary — tree numbers, scope notes, entry terms |
pubmed_lookup_citation |
Resolve partial bibliographic references to PubMed IDs via ECitMatch |
pubmed_convert_ids |
Convert between DOI, PMID, and PMCID using the PMC ID Converter API |
pubmed_search_articlesSearch PubMed with full NCBI query syntax and filters.
pubmed_fetch_articlesFetch full article metadata by PubMed IDs.
pubmed_fetch_fulltextFetch full-text articles from PubMed Central (PMC), with an optional Unpaywall fallback for articles not in PMC.
UNPAYWALL_EMAIL) resolves DOIs to legal open-access copies hosted by publishers or institutional repositories; extracts HTML landing pages to Markdown via Defuddle or PDFs to text via unpdfsource: "pmc" (structured sections) or source: "unpaywall" (single body + contentFormat metadata: html-markdown or pdf-text)no-pmc-fallback-disabled, no-doi, no-oa, fetch-failed, parse-failed, service-error) so callers can retry or explain to users without parsing text["methods", "results"]) and configurable max sections apply to PMC outputpubmed_format_citationsGenerate formatted citations for articles.
pubmed_find_relatedFind articles related to a source article via ELink.
similar (content similarity), cited_by, referencessimilar relationship typepubmed_spell_checkSpell-check a biomedical query using NCBI's ESpell.
pubmed_lookup_meshSearch and explore the MeSH (Medical Subject Headings) vocabulary.
pubmed_lookup_citationResolve partial bibliographic references to PubMed IDs via NCBI ECitMatch.
matched, not_found, and ambiguous statuses with recovery detailpubmed_convert_idsConvert between article identifiers (DOI, PMID, PMCID) using the PMC ID Converter API.
| Type | Name | Description |
|---|---|---|
| Resource | pubmed://database/info |
PubMed database metadata via EInfo (field list, record count, last update) |
| Prompt | research_plan |
Generate a structured 4-phase biomedical research plan outline |
Built on @cyanheads/mcp-ts-core:
none, jwt, oauth)in-memory, filesystem, Supabase, Cloudflare KV/R2/D1PubMed-specific:
isArray hints for PubMed's inconsistent XML structureA public instance is available at https://pubmed.caseyjhand.com/mcp — no installation required. Point any MCP client at it via Streamable HTTP:
{
"mcpServers": {
"pubmed": {
"type": "streamable-http",
"url": "https://pubmed.caseyjhand.com/mcp"
}
}
}
Add the following to your MCP client configuration file.
{
"mcpServers": {
"pubmed": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/pubmed-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info",
"NCBI_API_KEY": "your-key-here"
}
}
}
}
Or with npx (no Bun required):
{
"mcpServers": {
"pubmed": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/pubmed-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info",
"NCBI_API_KEY": "your-key-here"
}
}
}
}
Or with Docker:
{
"mcpServers": {
"pubmed": {
"type": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/pubmed-mcp-server:latest"]
}
}
}
For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcp
git clone https://github.com/cyanheads/pubmed-mcp-server.git
cd pubmed-mcp-server
bun install
All configuration is validated at startup via Zod schemas in src/config/server-config.ts. Key environment variables:
| Variable | Description | Default |
|---|---|---|
MCP_TRANSPORT_TYPE |
Transport: stdio or http |
stdio |
MCP_HTTP_PORT |
HTTP server port | 3010 |
MCP_HTTP_ENDPOINT_PATH |
HTTP endpoint path where the MCP server is mounted | /mcp |
MCP_PUBLIC_URL |
Public origin override for TLS-terminating reverse-proxy deployments (landing page, Server Card, RFC 9728 metadata). | none |
MCP_AUTH_MODE |
Authentication: none, jwt, or oauth |
none |
MCP_LOG_LEVEL |
Log level (debug, info, warning, error, etc.) |
info |
LOGS_DIR |
Directory for log files (Node.js only). | <project-root>/logs |
STORAGE_PROVIDER_TYPE |
Storage backend: in-memory, filesystem, supabase, cloudflare-kv/r2/d1 |
in-memory |
NCBI_API_KEY |
NCBI API key for higher rate limits (10 req/s vs 3 req/s) | none |
NCBI_ADMIN_EMAIL |
Contact email sent with NCBI requests (recommended by NCBI) | none |
NCBI_REQUEST_DELAY_MS |
Delay between NCBI requests in ms | 334 (100 with key) |
NCBI_MAX_RETRIES |
Retry attempts for failed NCBI requests | 6 |
NCBI_TIMEOUT_MS |
Per-request HTTP timeout in ms | 30000 |
NCBI_TOTAL_DEADLINE_MS |
Total deadline across all retry attempts for one NCBI call, in ms | 60000 |
UNPAYWALL_EMAIL |
Contact email for Unpaywall. When set, pubmed_fetch_fulltext falls back to Unpaywall open-access copies for non-PMC DOIs |
none |
UNPAYWALL_TIMEOUT_MS |
Per-request HTTP timeout for Unpaywall lookups and content fetches, in ms | 20000 |
OTEL_ENABLED |
Enable OpenTelemetry | false |
Build and run the production version:
# One-time build
bun run rebuild
# Run the built server
bun run start:http
# or
bun run start:stdio
Run checks and tests:
bun run devcheck # Lints, formats, type-checks, and more
bun run test # Runs the test suite
| Directory | Purpose |
|---|---|
src/mcp-server/tools |
Tool definitions (*.tool.ts). Nine PubMed tools. |
src/mcp-server/resources |
Resource definitions. Database info resource. |
src/mcp-server/prompts |
Prompt definitions. Research plan prompt. |
src/services/ncbi |
NCBI E-utilities service layer — API client, queue, parser, formatter. |
src/services/unpaywall |
Unpaywall service — DOI → OA location resolution and content fetch (HTML/PDF). |
src/config |
Server-specific environment variable parsing and validation with Zod. |
tests/ |
Unit and integration tests, mirroring the src/ structure. |
See CLAUDE.md for development guidelines and architectural rules. The short version:
try/catch in tool logicctx.log for logging, ctx.state for storagecreateApp() arraysIssues and pull requests are welcome. Run checks and tests before submitting:
bun run devcheck
bun run test
This project is licensed under the Apache 2.0 License. See the LICENSE file for details.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"pubmed-mcp-server": {
"command": "npx",
"args": [
"-y",
"@cyanheads/pubmed-mcp-server"
]
}
}
}