p

pubmed-mcp-server

@cyanheads/pubmed-mcp-server
Hosted
3 Stars 529 次浏览 cyanheads 更新于 2026-08-23

Comprehensive PubMed MCP Server to search, retrieve, and analyze biomedical literature from NCBI.

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

{
  "mcpServers": {
    "@cyanheads/pubmed-mcp-server": {
      "args": [
        "@cyanheads/pubmed-mcp-server@1.4.5"
      ],
      "command": "npx"
    }
  }
}

可用工具 (5 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

tavily_search 14 个参数 需填 1 项

Search the web for current information on any topic. Use for news, facts, or data beyond your knowledge cutoff. Returns snippets and source URLs.

必填参数:query

tavily_extract 6 个参数 需填 1 项

Extract content from URLs. Returns raw page content in markdown or text format.

必填参数:urls

tavily_crawl 11 个参数 需填 1 项

Crawl a website starting from a URL. Extracts content from pages with configurable depth and breadth.

必填参数:url

tavily_map 8 个参数 需填 1 项

Map a website's structure. Returns a list of URLs found starting from the base URL.

必填参数:url

tavily_research 2 个参数 需填 1 项

Perform comprehensive research on a given topic or question. Use this tool when you need to gather information from multiple sources to answer a question or complete a task. Returns a detailed response based on the research findings.

必填参数:input

服务介绍

pubmed-mcp-server

Empower your AI agents and research tools with seamless PubMed integration!

TypeScript
Model Context Protocol
Version
License
Status
GitHub

A production-grade Model Context Protocol (MCP) server that empowers AI agents and research tools with comprehensive access to PubMed. Enables advanced, automated workflows for searching, retrieving, analyzing, and visualizing biomedical and scientific literature via NCBI E-utilities.

Built on the cyanheads/mcp-ts-template, this server follows a modular architecture with robust error handling, logging, and security features.

# 🚀 Core Capabilities: PubMed Tools 🛠️

This server equips your AI with specialized tools to interact with PubMed:

| Tool Name | Description | Example |
| :- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | :- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - | :- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- |
| pubmed_search_articles | Searches PubMed for articles based on your query. | View Example |
| pubmed_fetch_contents | Retrieves detailed information for PubMed articles. | View Example |
| pubmed_article_connections | Finds related articles (cited by, similar, references) or formats citations for a PMID. | Ex. 1, Ex. 2 |
| pubmed_research_agent | Generates a standardized JSON research plan outline from component details. | View Example |
| pubmed_generate_chart | Generates a chart image (PNG) from given input data. | View Examples |


# Table of Contents

| [Overview](# overview) | [Features](# features) | [Installation](# installation) |
| :- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - | :- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | :- -- -- -- -- -- -- -- -- -- -- -- -- -- - |
| [Configuration](# configuration) | [Project Structure](# project-structure) |
| [Tools](# tools) | [Development & Testing](# development- -testing) | [License](# license) |

# Overview

The PubMed MCP Server acts as a bridge, allowing applications (MCP Clients) that understand the Model Context Protocol (MCP) – like advanced AI assistants (LLMs), IDE extensions, or custom research tools – to interact directly and efficiently with PubMed's vast biomedical literature database.

Instead of complex API integration or manual searches, your tools can leverage this server to:

  • Automate research workflows: Search literature, fetch full article metadata, track citations, and generate research plans programmatically.
  • Gain research insights: Access detailed publication data, author information, journal details, MeSH terms, and citation networks without leaving the host application.
  • Integrate PubMed into AI-driven research: Enable LLMs to conduct literature reviews, analyze research trends, and support evidence-based decision making.
  • Visualize research data: Generate charts and visualizations from publication metadata and search results.

Built on the robust mcp-ts-template, this server provides a standardized, secure, and efficient way to expose PubMed functionality via the MCP standard. It achieves this by integrating with NCBI's E-utilities API, ensuring compliance with rate limits and providing comprehensive error handling.

Developer Note: This repository includes a .clinerules file that serves as a developer cheat sheet for your LLM coding agent with quick reference for the codebase patterns, file locations, and code snippets.

# Features

# # Core Utilities

Leverages the robust utilities provided by the mcp-ts-template:

  • Logging: Structured, configurable logging (file rotation, stdout JSON, MCP notifications) with sensitive data redaction.
  • Error Handling: Centralized error processing, standardized error types (McpError), and automatic logging.
  • Configuration: Environment variable loading (dotenv) with comprehensive validation using Zod.
  • Input Validation/Sanitization: Uses zod for schema validation and custom sanitization logic.
  • Request Context: Tracking and correlation of operations via unique request IDs using AsyncLocalStorage.
  • Type Safety: Strong typing enforced by TypeScript and Zod schemas.
  • HTTP Transport: High-performance HTTP server using Hono, featuring session management and authentication support.
  • Authentication: Robust authentication layer supporting JWT and OAuth 2.1, with fine-grained scope enforcement.
  • Deployment: Multi-stage Dockerfile for creating small, secure production images with native dependency support.

# # PubMed Integration

  • NCBI E-utilities Integration: Comprehensive access to ESearch, EFetch, ELink, and ESummary APIs with automatic XML parsing.
  • Advanced Search Capabilities: Complex query construction with date ranges, publication types, author filters, and MeSH term support.
  • Full Article Metadata: Retrieve complete publication data including abstracts, authors, affiliations, journal information, DOIs, and citation data.
  • Citation Network Analysis: Find related articles, citing articles, and reference lists through ELink integration.
  • Research Planning: Generate structured research plans with automated literature search strategies.
  • Data Visualization: Create PNG charts from publication metadata (bar, line, scatter, pie, bubble, radar, polarArea).
  • Multiple Output Formats: Support for JSON, MEDLINE text, full XML, and formatted citations (RIS, BibTeX, APA, MLA).
  • Batch Processing: Efficient handling of multiple PMIDs with pagination support.

# Installation

# # Prerequisites

# # MCP Client Settings

Add the following to your MCP client's configuration file (e.g., cline_mcp_settings.json).
This configuration uses npx to run the server, which will automatically install the package if not already present.
All environment variables are optional, but recommended for production use. NCBI API key is recommended to avoid rate limiting issues.

{
  "mcpServers": {
    "pubmed-mcp-server": {
      "command": "npx",
      "args": ["@cyanheads/pubmed-mcp-server"],
      "env": {
        "MCP_LOG_LEVEL": "debug",
        "MCP_TRANSPORT_TYPE": "http",
        "MCP_HTTP_PORT": "3017",
        "NCBI_API_KEY": "YOUR_NCBI_API_KEY_HERE"
      }
    }
  }
}

# # If running manually (not via MCP client for development or testing)

# # # Install via npm

npm install @cyanheads/pubmed-mcp-server

# # # Alternatively Install from Source

  1. Clone the repository:
    git clone https://github.com/cyanheads/pubmed-mcp-server.git
    cd pubmed-mcp-server
    
  2. Install dependencies:
    npm install
    
  3. Build the project:
    npm run build
    

# Configuration

# # Environment Variables

Configure the server using environment variables. For local development, these can be set in a .env file at the project root or directly in your environment. Otherwise, you can set them in your MCP client configuration as shown above.

| Variable | Description | Default |
| :- -- -- -- -- -- -- -- -- -- - | :- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | :- -- -- -- -- -- - |
| MCP_TRANSPORT_TYPE | Transport mechanism: stdio or http. | stdio |
| MCP_HTTP_PORT | Port for the HTTP server (if MCP_TRANSPORT_TYPE=http). | 3017 |
| MCP_HTTP_HOST | Host address for the HTTP server (if MCP_TRANSPORT_TYPE=http). | 127.0.0.1 |
| MCP_ALLOWED_ORIGINS | Comma-separated list of allowed origins for CORS (if MCP_TRANSPORT_TYPE=http). | (none) |
| MCP_LOG_LEVEL | Logging level (debug, info, notice, warning, error, crit, alert, emerg). | debug |
| MCP_AUTH_MODE | Authentication mode for HTTP: jwt or oauth. | jwt |
| MCP_AUTH_SECRET_KEY | Required for jwt auth. Minimum 32-character secret key for JWT authentication. | (none) |
| NCBI_API_KEY | Recommended. Your NCBI API Key for higher rate limits and reliable access. | (none) |
| LOGS_DIR | Directory for log file storage. | logs/ |
| NODE_ENV | Runtime environment (development, production). | development |

# Project Structure

The codebase follows a modular structure within the src/ directory:

src/
├── index.ts              #  Entry point: Initializes and starts the server
├── config/               #  Configuration loading (env vars, package info)
│   └── index.ts
├── mcp-server/           #  Core MCP server logic and capability registration
│   ├── server.ts         #  Server setup, capability registration
│   ├── transports/       #  Transport handling (stdio, http)
│   └── tools/            #  MCP Tool implementations (subdirs per tool)
├── services/             #  External service integrations
│   └── NCBI/             #  NCBI E-utilities API client and parsing
├── types-global/         #  Shared TypeScript type definitions
└── utils/                #  Common utility functions (logger, error handler, etc.)

For a detailed file tree, run npm run tree or see docs/tree.md.

# Tools

The PubMed MCP Server provides a comprehensive suite of tools for biomedical literature research, callable via the Model Context Protocol.

| Tool Name | Description | Key Arguments |
| :- -- -- -- -- -- -- -- -- -- -- -- -- -- | :- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | :- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - |
| pubmed_search_articles | Searches PubMed for articles using queries, filters, and date ranges. | queryTerm, maxResults?, sortBy?, dateRange?, filterByPublicationTypes?, fetchBriefSummaries? |
| pubmed_fetch_contents | Fetches detailed article information using PMIDs or search history. | pmids?, queryKey?, webEnv?, detailLevel?, includeMeshTerms?, includeGrantInfo? |
| pubmed_article_connections | Finds related articles, citations, and references for a given PMID. | sourcePmid, relationshipType?, maxRelatedResults?, citationStyles? |
| pubmed_research_agent | Generates structured research plans with literature search strategies. | project_title_suggestion, primary_research_goal, research_keywords, organism_focus?, p1_*, etc. |
| pubmed_generate_chart | Creates customizable PNG charts from structured publication data. | chartType, dataValues, xField, yField, title?, seriesField?, sizeField? |

Note: All tools support comprehensive error handling and return structured JSON responses.

# Examples

Comprehensive usage examples for each tool are available in the examples/ directory.

# Development & Testing

# # Development Scripts

#  Build the project (compile TS to JS in dist/ and make executable)
npm run build

#  Clean build artifacts
npm run clean

#  Clean build artifacts and then rebuild the project
npm run rebuild

#  Lint the codebase
npm run lint

#  Format code with Prettier
npm run format

#  Generate a file tree representation for documentation
npm run tree

# # Running the Server

#  Start the server using stdio (default)
npm start
#  Or explicitly:
npm run start:stdio

#  Start the server using HTTP transport
npm run start:http

#  Test the server locally using the MCP inspector tool (stdio transport)
npm run inspector

#  Test the server locally using the MCP inspector tool (http transport)
npm run inspector:http

# License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.


相关 MCP 服务