disconnect_twilio
Remove a Twilio account integration from VoiceAI-MCP-VAVicky, enabling clear disconnection of services for streamlined platform management.
Instructions
Disconnect Twilio account
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:614-617 (handler)The core handler logic for the 'disconnect_twilio' tool. It configures a DELETE HTTP request to the backend API endpoint '/twilio/' to disconnect the Twilio account.case 'disconnect_twilio': url = `${this.baseUrl}/twilio/`; method = 'DELETE'; break;
- index.js:325-333 (registration)Registers the 'disconnect_twilio' tool in the MCP server's list of available tools, including its description and input schema (no required parameters).{ name: 'disconnect_twilio', description: 'Disconnect Twilio account', inputSchema: { type: 'object', properties: {}, required: [] } },
- index.js:328-331 (schema)Defines the input schema for the 'disconnect_twilio' tool, which requires no parameters.inputSchema: { type: 'object', properties: {}, required: []