twilio_make_call
ActiveTool of Twilio
declared in 0.1.0
Initiate a phone call via Twilio. Requires a TwiML URL or application SID to control call behavior.
Parameters schema
{
"type": "object",
"examples": [
{
"to": "+15551234567",
"url": "https://example.com/twiml/greeting",
"from": "+15559876543",
"_authToken": "your-twilio-auth-token",
"_accountSid": "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
],
"required": [
"_accountSid",
"_authToken",
"to",
"from",
"url"
],
"properties": {
"to": {
"type": "string",
"description": "Destination phone number in E.164 format"
},
"url": {
"type": "string",
"description": "TwiML URL that controls what happens when the call connects"
},
"from": {
"type": "string",
"description": "Twilio phone number to call from in E.164 format"
},
"_authToken": {
"type": "string",
"description": "Twilio Auth Token"
},
"_accountSid": {
"type": "string",
"description": "Twilio Account SID"
}
}
}Parent server
Twilio
https://github.com/pipeworx-io/mcp-twilio
1/7 registries