Twilio MCP Server

Twilio MCP Server

Enables communication through Twilio's API including sending SMS/WhatsApp messages, making phone calls, and managing phone numbers and account settings. Provides comprehensive messaging and voice capabilities with proper authentication and rate limiting.

Category
访问服务器

README

Twilio MCP Server

MCP server for interacting with the Twilio communication API. Send SMS and WhatsApp messages, make phone calls, and manage your Twilio account.

Features

  • SMS Messaging: Send and manage SMS/MMS messages
  • WhatsApp Messaging: Send WhatsApp messages via Twilio
  • Voice Calls: Initiate and manage phone calls
  • Phone Number Management: List and lookup phone numbers
  • Account Management: Check balance and account status

Setup

Prerequisites

  • Twilio account (sign up at twilio.com)
  • Twilio phone number (for sending SMS/calls)
  • Account credentials from Twilio Console

Environment Variables

  • TWILIO_ACCOUNT_SID (required): Your Twilio Account SID
  • TWILIO_AUTH_TOKEN (required): Your Twilio Auth Token

How to get credentials:

  1. Go to console.twilio.com
  2. Find your Account SID and Auth Token in the dashboard
  3. Keep these secure - they provide full access to your Twilio account

Available Tools

Messaging Tools

send_sms

Send an SMS message.

Parameters:

  • to (string, required): Recipient phone number in E.164 format (e.g., +1234567890)
  • from_ (string, required): Your Twilio phone number in E.164 format
  • body (string, required): Message content (up to 1600 characters)
  • media_url (string, optional): URL of media to send (converts to MMS)

Example:

result = await send_sms(
    to="+1234567890",
    from_="+1987654321",
    body="Hello from Twilio MCP!",
    media_url="https://example.com/image.jpg"
)

send_whatsapp

Send a WhatsApp message via Twilio.

Parameters:

  • to (string, required): Recipient WhatsApp number (e.g., whatsapp:+1234567890)
  • from_ (string, required): Your Twilio WhatsApp number (e.g., whatsapp:+1987654321)
  • body (string, required): Message content
  • media_url (string, optional): URL of media to send

Example:

result = await send_whatsapp(
    to="whatsapp:+1234567890",
    from_="whatsapp:+1987654321",
    body="Hello from WhatsApp!",
    media_url="https://example.com/image.jpg"
)

list_messages

List sent and received messages with optional filters.

Parameters:

  • to (string, optional): Filter by recipient phone number
  • from_ (string, optional): Filter by sender phone number
  • date_sent (string, optional): Filter by date in YYYY-MM-DD format
  • page_size (int, optional): Number of results (default: 50, max: 1000)

Example:

messages = await list_messages(from_="+1987654321", page_size=20)

get_message

Get details of a specific message.

Parameters:

  • message_sid (string, required): The Twilio message SID (e.g., SMxxxxx)

Example:

message = await get_message(message_sid="SM1234567890abcdef")

Voice Call Tools

make_call

Initiate an outbound phone call.

Parameters:

  • to (string, required): Recipient phone number in E.164 format
  • from_ (string, required): Your Twilio phone number in E.164 format
  • url (string, required): URL that returns TwiML instructions for the call
  • method (string, optional): HTTP method (GET or POST, default: POST)
  • status_callback (string, optional): URL for call status updates

Example:

call = await make_call(
    to="+1234567890",
    from_="+1987654321",
    url="https://example.com/twiml",
    status_callback="https://example.com/status"
)

list_calls

List call logs with optional filters.

Parameters:

  • to (string, optional): Filter by recipient phone number
  • from_ (string, optional): Filter by caller phone number
  • status (string, optional): Filter by status (queued, ringing, in-progress, completed, etc.)
  • page_size (int, optional): Number of results (default: 50, max: 1000)

Example:

calls = await list_calls(status="completed", page_size=10)

get_call

Get details of a specific call.

Parameters:

  • call_sid (string, required): The Twilio call SID (e.g., CAxxxxx)

Example:

call = await get_call(call_sid="CA1234567890abcdef")

Account & Phone Number Tools

get_account_balance

Get your current Twilio account balance.

Example:

balance = await get_account_balance()
# Returns: {"balance": "100.00", "currency": "USD"}

list_phone_numbers

List phone numbers owned by your Twilio account.

Parameters:

  • page_size (int, optional): Number of results (default: 50, max: 1000)
  • phone_number (string, optional): Filter by specific phone number
  • friendly_name (string, optional): Filter by friendly name

Example:

numbers = await list_phone_numbers(page_size=10)

lookup_phone_number

Validate and get information about a phone number.

Parameters:

  • phone_number (string, required): Phone number to lookup in E.164 format
  • country_code (string, optional): ISO country code if using national format (e.g., 'US')
  • type_ (string, optional): Additional data ('carrier' or 'caller-name')

Example:

info = await lookup_phone_number(
    phone_number="+1234567890",
    type_="carrier"
)

Phone Number Format

All phone numbers must be in E.164 format:

  • Start with + followed by country code
  • Example US number: +14155552671
  • Example UK number: +442071838750

Rate Limits and Pricing

Rate Limits

  • SMS: 100 messages per second per account (contact Twilio to increase)
  • Voice: 100 concurrent calls per account (contact Twilio to increase)
  • API Requests: 10,000 requests per second

Pricing (as of 2024, subject to change)

  • SMS (US): $0.0079 per message
  • WhatsApp: $0.005 per conversation (first 1,000 free monthly)
  • Voice (US): $0.0140 per minute
  • Phone Number: $1.15 per month
  • Lookup API: $0.005 per request (carrier info extra)

Visit Twilio Pricing for current rates.

Security Best Practices

  1. Never commit credentials: Keep TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN in environment variables
  2. Use API keys: Consider using Twilio API Keys for additional security
  3. Enable IP filtering: Restrict API access to specific IP addresses in Twilio Console
  4. Monitor usage: Set up usage alerts in Twilio Console to detect unusual activity
  5. Rotate credentials: Periodically rotate your Auth Token
  6. Use test credentials: Use test credentials for development (prefix with AC for test accounts)

TwiML Resources

For making calls with make_call, you need a URL that returns TwiML (Twilio Markup Language):

Simple TwiML example:

<?xml version="1.0" encoding="UTF-8"?>
<Response>
    <Say>Hello! This is a call from Twilio.</Say>
</Response>

Learn more about TwiML at twilio.com/docs/voice/twiml

API Documentation

For detailed information about the Twilio API:

Error Handling

Common errors and solutions:

  • 21211: Invalid phone number - Ensure E.164 format
  • 21608: Unverified number - Verify trial account numbers in Console
  • 21610: Message blocked - Check compliance and opt-in requirements
  • 20003: Authentication error - Verify credentials are correct
  • 20429: Rate limit exceeded - Implement exponential backoff

Support

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选