zenodo mcp server for VS Code
io.github.cyanheads/zenodo-mcp-server
Search and resolve Zenodo datasets, software, and publications by DOI; trace versions and funding.
client:VS Code
transport:stdio
runtime:npm
Install zenodo mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mcp-log-level",
"description": "MCP_LOG_LEVEL",
"password": true
},
{
"type": "promptString",
"id": "zenodo-access-token",
"description": "ZENODO_ACCESS_TOKEN",
"password": true
}
],
"servers": {
"zenodo-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@cyanheads/zenodo-mcp-server"
],
"env": {
"MCP_LOG_LEVEL": "${input:mcp-log-level}",
"ZENODO_ACCESS_TOKEN": "${input:zenodo-access-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs