cadence for VS Code
com.cadencercs/cadence
Send RCS messages from your agent and get typed replies. Automatic SMS fallback.
client:VS Code
transport:stdio
runtime:npm
Install cadence in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cadence-api-key",
"description": "CADENCE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "cadence-allow-irreversible",
"description": "CADENCE_ALLOW_IRREVERSIBLE",
"password": true
},
{
"type": "promptString",
"id": "cadence-api-url",
"description": "CADENCE_API_URL",
"password": true
}
],
"servers": {
"cadence": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@cadencercs/mcp"
],
"env": {
"CADENCE_API_KEY": "${input:cadence-api-key}",
"CADENCE_ALLOW_IRREVERSIBLE": "${input:cadence-allow-irreversible}",
"CADENCE_API_URL": "${input:cadence-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs