mcp server zotero dev for VS Code
io.github.introfini/mcp-server-zotero-dev
MCP server enabling AI assistants to build, test, and debug Zotero plugins
client:VS Code
transport:stdio
runtime:npm
Install mcp server zotero dev in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "zotero-rdp-port",
"description": "ZOTERO_RDP_PORT",
"password": true
},
{
"type": "promptString",
"id": "zotero-rdp-host",
"description": "ZOTERO_RDP_HOST",
"password": true
}
],
"servers": {
"mcp-server-zotero-dev": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@introfini/mcp-server-zotero-dev"
],
"env": {
"ZOTERO_RDP_PORT": "${input:zotero-rdp-port}",
"ZOTERO_RDP_HOST": "${input:zotero-rdp-host}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs