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"
}
}
}
}
}