twilio_send_sms
ActiveTool of Twilio
declared in 0.1.0
Send an SMS message via Twilio. Returns the message SID and status.
Parameters schema
{
"type": "object",
"examples": [
{
"to": "+15551234567",
"body": "Hello! This is a test message from Twilio.",
"from": "+15559876543",
"_authToken": "your-twilio-auth-token",
"_accountSid": "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"to": "+442071838750",
"body": "Your verification code is: 123456",
"from": "+15559876543",
"_authToken": "your-twilio-auth-token",
"_accountSid": "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
],
"required": [
"_accountSid",
"_authToken",
"to",
"from",
"body"
],
"properties": {
"to": {
"type": "string",
"description": "Destination phone number in E.164 format (e.g., +15551234567)"
},
"body": {
"type": "string",
"description": "Message body text (max 1600 characters)"
},
"from": {
"type": "string",
"description": "Twilio phone number to send from in E.164 format"
},
"_authToken": {
"type": "string",
"description": "Twilio Auth Token"
},
"_accountSid": {
"type": "string",
"description": "Twilio Account SID (starts with AC...)"
}
}
}Parent server
Twilio
https://github.com/pipeworx-io/mcp-twilio
1/7 registries