Skip to content
VS Code

mcp twilio for VS Code

io.github.codespar/mcp-twilio

MCP server for Twilio — global SMS, WhatsApp, Voice, Verify, and Lookup across 180+ countries

client:VS Code transport:stdio runtime:npm

Install mcp twilio in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "twilio-account-sid",
      "description": "TWILIO_ACCOUNT_SID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "twilio-auth-token",
      "description": "TWILIO_AUTH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "twilio-messaging-service-sid",
      "description": "TWILIO_MESSAGING_SERVICE_SID",
      "password": true
    }
  ],
  "servers": {
    "mcp-twilio": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-twilio"
      ],
      "env": {
        "TWILIO_ACCOUNT_SID": "${input:twilio-account-sid}",
        "TWILIO_AUTH_TOKEN": "${input:twilio-auth-token}",
        "TWILIO_MESSAGING_SERVICE_SID": "${input:twilio-messaging-service-sid}"
      }
    }
  }
}

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

mcp twilio in other clients