make_call
Make a phone call using Twilio by specifying the recipient, sender, and TwiML URL. Integrate voice communication functionality into applications via the Multi-MCPs server.
Instructions
Make a phone call via Twilio with a TwiML URL
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from | Yes | ||
| to | Yes | ||
| twiml_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"from": {
"type": "string"
},
"to": {
"type": "string"
},
"twiml_url": {
"type": "string"
}
},
"required": [
"to",
"from",
"twiml_url"
],
"type": "object"
}