Twilio
Twilio provides communication APIs for SMS, voice, and video.
Prerequisites
- A Twilio account
- Account SID and Auth Token from Twilio Console
Connect
conjra add twilioTwilio uses basic authentication. You will be prompted for both accountSid and authToken.
MCP Tools
send_twilio_sms
Send an SMS message via Twilio.
| Parameter | Type | Required | Description |
|---|---|---|---|
to | string | Yes | E.164 format (+15551234567) |
from | string | Yes | Your Twilio number (E.164) |
body | string | Yes | Message content |
statusCallback | string | No | Status callback URL |
Example: "use conjra to send an sms to +15551234567 saying hello"
get_twilio_phone_numbers
List Twilio phone numbers on your account.
| Parameter | Type | Required | Description |
|---|---|---|---|
accountSid | string | No | Account SID (defaults to connected account) |
create_twilio_webhook
Configure webhook URLs for a Twilio phone number.
| Parameter | Type | Required | Description |
|---|---|---|---|
phoneSid | string | Yes | Phone number SID (PN...) |
smsUrl | string | No | SMS webhook URL |
voiceUrl | string | No | Voice webhook URL |