CodexSpot
T

Twilio MCP Server

Connects AI assistants to Twilio through MCP, enabling SMS sending, voice call initiation, and message history retrieval via the Twilio communications platform.

stdioLocalApiKeynpm

What This Server Exposes

Tools

send_smsmake_calllist_messages

Setup Instructions

  1. 1Log in to the Twilio Console and copy your Account SID and Auth Token
  2. 2Ensure you have a Twilio phone number with SMS and/or voice capabilities
  3. 3Add the Twilio server config to your Claude Desktop configuration
  4. 4Set TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN environment variables
  5. 5Restart Claude Desktop

Configuration

Claude Desktop Configuration

claude_desktop_config.json
{
  "mcpServers": {
    "twilio": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-twilio"
      ],
      "env": {
        "TWILIO_ACCOUNT_SID": "your-account-sid",
        "TWILIO_AUTH_TOKEN": "your-auth-token"
      }
    }
  }
}

Environment Variables

TWILIO_ACCOUNT_SID
Twilio Account SID found in the Twilio Console dashboard
Required
TWILIO_AUTH_TOKEN
Twilio Auth Token used to authenticate API requests — treat as a password
Required🔒 Secret

Server Manifest

No official server.json manifest found. Generate one with our MCP server.json Generator →

Compatibility

Claude DesktopClaude Code

Safety Notes

Your Twilio Auth Token grants the ability to send SMS and make calls, which incurs costs on your account. Never commit it to version control. Monitor usage and set spending limits in the Twilio Console.

This listing is for informational purposes only. CodexSpot is not affiliated with Twilio MCP Server.