Skip to content
VS Code

twilio mcp server for VS Code

io.github.mrfentmen/twilio-mcp-server

Send SMS, MMS, WhatsApp messages, make voice calls, and manage Twilio phone numbers.

client:VS Code transport:stdio runtime:npm

Install twilio mcp server 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
    }
  ],
  "servers": {
    "twilio-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "twilio-mcp-server"
      ],
      "env": {
        "TWILIO_ACCOUNT_SID": "${input:twilio-account-sid}",
        "TWILIO_AUTH_TOKEN": "${input:twilio-auth-token}"
      }
    }
  }
}

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

twilio mcp server in other clients