What is the io.github.nickjlamb/pubcrawl MCP server?
PubMed literature search and US/UK drug labelling for AI assistants.
How to install io.github.nickjlamb/pubcrawl
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
NCBI_API_KEYsecretNCBI API key for higher rate limits (10 req/s vs 3 req/s). Optional — get one free at https://www.ncbi.nlm.nih.gov/account/
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"pubcrawl": {
"command": "npx",
"args": [
"-y",
"@pharmatools/pubcrawl"
],
"env": {
"NCBI_API_KEY": "<YOUR_NCBI_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"pubcrawl": {
"command": "npx",
"args": [
"-y",
"@pharmatools/pubcrawl"
],
"env": {
"NCBI_API_KEY": "<YOUR_NCBI_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"pubcrawl": {
"command": "npx",
"args": [
"-y",
"@pharmatools/pubcrawl"
],
"env": {
"NCBI_API_KEY": "<YOUR_NCBI_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"pubcrawl": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@pharmatools/pubcrawl"
],
"env": {
"NCBI_API_KEY": "<YOUR_NCBI_API_KEY>"
}
}
}
}Claude Code
claude mcp add pubcrawl --env NCBI_API_KEY=<YOUR_NCBI_API_KEY> -- npx -y @pharmatools/pubcrawlRelated MCP servers
Pseudonymise and restore patient identifiers & PII in text — local, HIPAA Safe Harbor mode.
View repository →