connect_twilio
Configure Twilio account credentials to enable voice AI and chat integrations through the VoiceAI MCP server for custom platform connectivity.
Instructions
Connect Twilio account credentials
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| twilio_sid | Yes | Twilio Account SID | |
| twilio_token | Yes | Twilio Auth Token |
Implementation Reference
- index.js:314-324 (registration)Registers the connect_twilio tool with its name, description, and input schema in the list of tools returned by ListToolsRequestHandler.name: 'connect_twilio', description: 'Connect Twilio account credentials', inputSchema: { type: 'object', properties: { twilio_sid: { type: 'string', description: 'Twilio Account SID' }, twilio_token: { type: 'string', description: 'Twilio Auth Token' } }, required: ['twilio_sid', 'twilio_token'] } },
- index.js:605-612 (handler)Handler for connect_twilio tool: sets up a POST request to the Vavicky backend API at /twilio/oauth with the provided twilio_sid and twilio_token to connect the Twilio account.case 'connect_twilio': url = `${this.baseUrl}/twilio/oauth`; method = 'POST'; body = { sid: args.twilio_sid, token: args.twilio_token }; break;