Skip to content
VS Code

RCS Campaigns for VS Code

com.rcs-campaigns/campaigns

Send RCS & SMS campaigns: templates, audiences, surveys, inbox replies, delivery webhooks.

client:VS Code transport:stdio runtime:npm

Install RCS Campaigns in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rcs-gateway-url",
      "description": "RCS_GATEWAY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rcs-agent-key",
      "description": "RCS_AGENT_KEY",
      "password": true
    }
  ],
  "servers": {
    "campaigns": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@rcs-campaigns/agent-toolkit"
      ],
      "env": {
        "RCS_GATEWAY_URL": "${input:rcs-gateway-url}",
        "RCS_AGENT_KEY": "${input:rcs-agent-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

RCS Campaigns in other clients