twilio-mcp
Provides tools for sending SMS/MMS, listing and retrieving messages, making outbound voice calls, listing incoming phone numbers, and performing phone number lookups via the Twilio REST API and Twilio Lookup v2.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@twilio-mcpSend an SMS to +1234567890 saying 'Hello from Twilio MCP'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
twilio-mcp
Dedalus MCP server for Twilio communications. It exposes SMS/MMS sending, message listing, message lookup, outbound calls, incoming phone number listing, and phone number lookup.
Tools
send_sms- Send an SMS or MMS.list_messages- List account messages with optional filters.get_message- Fetch one message by Message SID.make_call- Start an outbound voice call.list_phone_numbers- List incoming phone numbers on the account.lookup_phone_number- Lookup a phone number with Twilio Lookup v2.
Related MCP server: Twilio Verify MCP Server
Safety Notes
Twilio write tools can cost money and contact real users.
send_smssends a real SMS/MMS and may incur messaging charges.make_callstarts a real phone call and may incur voice charges.lookup_phone_numbermay incur Lookup charges depending on requested fields.
Confirm phone numbers, message bodies, call URLs, and user intent before using write tools. Do not run src/_client.py against production phone numbers unless you intentionally want to send a test SMS and place a test call.
Never commit Twilio Account SIDs with auth tokens, message bodies, phone number lists, call logs, or Lookup results containing personal data.
Authentication
Twilio REST uses HTTP Basic auth where username is TWILIO_ACCOUNT_SID and password is TWILIO_AUTH_TOKEN. Current dedalus_mcp.Connection accepts one secret value for header injection, so this server uses:
Authorization: Basic <base64(TWILIO_ACCOUNT_SID:TWILIO_AUTH_TOKEN)>Connection details:
Connection names:
twilio_restforapi.twilio.comandtwilio_lookupforlookups.twilio.comSecret key:
TWILIO_BASIC_AUTHHeader format:
Basic {api_key}Base URLs:
https://api.twilio.com,https://lookups.twilio.com
Required variables:
TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
TWILIO_BASIC_AUTH=<base64 of ACCOUNT_SID:AUTH_TOKEN>
DEDALUS_AS_URL=https://as.dedaluslabs.aiFor local convenience, src/twilio_tools.py and src/_client.py can derive TWILIO_BASIC_AUTH when both TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN are present. Prefer storing only TWILIO_BASIC_AUTH as the DAuth credential in production.
Run Locally
uv run python src/main.pyIn another terminal:
MCP_SERVER_URL=http://127.0.0.1:8080/mcp uv run python src/_client.pySet TWILIO_TEST_FROM, TWILIO_TEST_TO, TWILIO_TEST_MESSAGE_SID, and TWILIO_TEST_CALL_URL to safe test resources. The client intentionally calls paid/user-contacting tools.
Deploy
Publish as dedalus-labs/twilio-mcp, configure TWILIO_BASIC_AUTH as a required DAuth credential and TWILIO_ACCOUNT_SID as an environment variable or required config, deploy, then run:
DEDALUS_MCP_SERVER_ONLY=1 DEDALUS_MCP_SERVER=dedalus-labs/twilio-mcp uv run python src/_client.pyThis server cannot be deployed
Maintenance
Related MCP Connectors
Twilio MCP Pack — send SMS, list messages, make calls via Twilio REST API.
Hosted MCP server for the Wavix telecom platform: SMS, voice, 2FA, SIP, numbers, 10DLC, CDRs.
MCP server for Vonage API documentation, code snippets, tutorials, and troubleshooting.
The Mobile Text Alerts SMS MCP server enables your AI to send SMS messages & manage contacts
Related MCP Servers
AlicenseNot gradedqualityBmaintenanceMCP server that lists applications and phone numbers, and initiates outbound calls via Fonoster.228,097MIT- FlicenseNot gradedqualityDmaintenanceAn MCP server that enables interaction with Twilio's Verify API, allowing users to manage phone verification services through natural language commands.-
- AlicenseNot gradedqualityAmaintenanceMCP server that provides SMS sending, CSV bulk SMS, and voice calling capabilities via the Vonage API.Apache 2.0
- FlicenseNot gradedqualityBmaintenanceAn MCP server enabling AI assistants to make voice calls, send SMS/MMS, and manage group conversations using Twilio and OpenAI.5-