PubMed Search
STDIOMCP server providing tools to search and retrieve academic papers from PubMed database.
MCP server providing tools to search and retrieve academic papers from PubMed database.
A Model Content Protocol server that provides tools to search and retrieve academic papers from PubMed database.
To install pubmed-search-mcp-server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @gradusnikov/pubmed-search-mcp-server --client claude
Clone this repository:
git clone <repository-url>
cd pubmed-search-mcp-server
Install dependencies:
pip install fastmcp requests python-dotenv
Create a .env
file in the project root (if needed for configuration)
Start the server in development mode:
mcp dev pubmed_search_mcp_server.py
or add the server to Claude Desktop app CLAUDE_DIRECTORY/claude_desktop_config.json. For example if you are using Windows Subsystem for Linux (WSL) it may look like this:
"pubmed-search": {
"command": "wsl.exe",
"args": [
"bash",
"-c",
"source /home/[user]/anaconda3/etc/profile.d/conda.sh && conda activate mcp && mcp run /home/[user]/pubmed-search-mpc-server/pubmed_search_mcp_server.py"
]
},