PandaDoc for VS Code
io.github.mindstone/mcp-server-pandadoc
PandaDoc document automation MCP server for Model Context Protocol hosts
client:VS Code
transport:stdio
runtime:npm
Install PandaDoc in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pandadoc-api-key",
"description": "PANDADOC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "mcp-workspace-path",
"description": "MCP_WORKSPACE_PATH",
"password": true
}
],
"servers": {
"mcp-server-pandadoc": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mindstone/mcp-server-pandadoc"
],
"env": {
"PANDADOC_API_KEY": "${input:pandadoc-api-key}",
"MCP_WORKSPACE_PATH": "${input:mcp-workspace-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs