pubcrawl for VS Code
io.github.nickjlamb/pubcrawl
PubMed & Europe PMC literature search, US/UK drug labelling, and clinical trials for AI assistants.
client:VS Code
transport:stdio
runtime:npm
Install pubcrawl in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ncbi-api-key",
"description": "NCBI_API_KEY",
"password": true
}
],
"servers": {
"pubcrawl": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@pharmatools/pubcrawl"
],
"env": {
"NCBI_API_KEY": "${input:ncbi-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs