SnapDeploy for VS Code
io.github.somdip-2310/snapdeploy
Deploy and manage SnapDeploy apps from your AI assistant: builds, logs, env vars, add-ons, domains.
client:VS Code
transport:stdio
runtime:npm
Install SnapDeploy in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "snapdeploy-api-key",
"description": "SNAPDEPLOY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "snapdeploy-read-only",
"description": "SNAPDEPLOY_READ_ONLY",
"password": true
}
],
"servers": {
"snapdeploy": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@snapdeploy/mcp"
],
"env": {
"SNAPDEPLOY_API_KEY": "${input:snapdeploy-api-key}",
"SNAPDEPLOY_READ_ONLY": "${input:snapdeploy-read-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs