Home/Servers/Twilio MCP Server

Twilio MCP Server

by Twilio Labs ยท โญ 654 stars ยท updated 2 months ago

Send SMS, make calls, and manage communications via Twilio. Send messages, check delivery status, manage phone numbers, and handle voice/SMS workflows through AI.

78
Good

Quality Score Breakdown

maintenance80/100
community76/100
documentation79/100
compatibility77/100

Use Cases

  • โœ“send SMS messages
  • โœ“make phone calls
  • โœ“manage phone numbers
  • โœ“check delivery status

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "twilio": {
      "command": "npx",
      "args": [
        "-y",
        "@twilio/mcp"
      ],
      "env": {
        "TWILIO_ACCOUNT_SID": "YOUR_ACCOUNT_SID",
        "TWILIO_AUTH_TOKEN": "YOUR_AUTH_TOKEN"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "twilio": {
      "command": "npx",
      "args": [
        "-y",
        "@twilio/mcp"
      ],
      "env": {
        "TWILIO_ACCOUNT_SID": "YOUR_ACCOUNT_SID",
        "TWILIO_AUTH_TOKEN": "YOUR_AUTH_TOKEN"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "twilio": {
        "command": "npx",
        "args": [
          "-y",
          "@twilio/mcp"
        ],
        "env": {
          "TWILIO_ACCOUNT_SID": "YOUR_ACCOUNT_SID",
          "TWILIO_AUTH_TOKEN": "YOUR_AUTH_TOKEN"
        }
      }
    }
  }
}
โ† Back to all servers