SuprSend for VS Code
io.github.suprsend/cli
Manage SuprSend entities — workflows, templates, users, objects, tenants — from your AI assistant.
client:VS Code
transport:stdio
runtime:npm
Install SuprSend in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "suprsend-service-token",
"description": "SUPRSEND_SERVICE_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "suprsend-base-url",
"description": "SUPRSEND_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "suprsend-mgmnt-url",
"description": "SUPRSEND_MGMNT_URL",
"password": true
}
],
"servers": {
"cli": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"suprsend"
],
"env": {
"SUPRSEND_SERVICE_TOKEN": "${input:suprsend-service-token}",
"SUPRSEND_BASE_URL": "${input:suprsend-base-url}",
"SUPRSEND_MGMNT_URL": "${input:suprsend-mgmnt-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs