send_sms
Send SMS messages through Twilio using Multi-MCPs. Input recipient number, sender ID, and message body to deliver texts directly via the MCP server’s unified API integration.
Instructions
Send an SMS via Twilio
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
from | Yes | ||
to | Yes |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"type": "string"
},
"from": {
"type": "string"
},
"to": {
"type": "string"
}
},
"required": [
"to",
"from",
"body"
],
"type": "object"
}