disconnect_twilio
Disconnect your Twilio account from VoiceAI-MCP-VAVicky to manage integrations and control platform connections.
Instructions
Disconnect Twilio account
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:614-617 (handler)The execution handler for the 'disconnect_twilio' tool. It sets the URL to the /twilio/ endpoint and method to DELETE, which disconnects the Twilio account by making an HTTP DELETE request.case 'disconnect_twilio': url = `${this.baseUrl}/twilio/`; method = 'DELETE'; break;
- index.js:325-333 (registration)The registration of the 'disconnect_twilio' tool in the ListTools response, including its name, description, and input schema (no required parameters).{ name: 'disconnect_twilio', description: 'Disconnect Twilio account', inputSchema: { type: 'object', properties: {}, required: [] } },
- index.js:328-332 (schema)The input schema for the 'disconnect_twilio' tool, defining an empty object with no properties or required fields.inputSchema: { type: 'object', properties: {}, required: [] }