pubmedmcp
by: grll
A MCP server for PubMed data
📌Overview
Purpose: To provide a server that enables users to search and retrieve biomedical literature articles from the PubMed database.
Overview: The PubMed MCP server leverages the pubmedclient Python package, facilitating efficient search and retrieval of over 35 million citations from various biomedical literature sources, including MEDLINE and life sciences journals.
Key Features:
-
Search Functionality: Allows users to perform comprehensive searches across a vast database of biomedical literature, making it easier to find relevant articles.
-
Fetch Articles: Enables the retrieval of full-text articles or citations directly from PubMed, streamlining the research process.
PubMed MCP
A MCP server that allows searching and fetching articles from PubMed.
PubMed is a database of over 35 million citations for biomedical literature from MEDLINE, life science journals, and online books.
This MCP server relies on the pubmedclient Python package to perform the search and fetch operations.
Usage
Add the following to your claude_desktop_config.json
file:
{
"mcpServers": {
"pubmedmcp": {
"command": "uvx",
"args": ["pubmedmcp@latest"],
"env": {
"UV_PRERELEASE": "allow",
"UV_PYTHON": "3.12"
}
}
}
}
Make sure uv
is installed on your system and uvx
is available in your PATH (Claude PATH sometimes differs from your system PATH).
You can add a PATH
key in your claude_desktop_config.json
file to ensure uv
is available in Claude PATH.