get_twilio_numbers
Retrieve all Twilio phone numbers associated with your account for integration and management through the VoiceAI-MCP-VAVicky server.
Instructions
Get all Twilio phone numbers
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:619-621 (handler)Handler logic for the 'get_twilio_numbers' tool. Sets the API URL to '/twilio/numbers' and proxies the GET request to the Vavicky backend API to retrieve all Twilio phone numbers associated with the account.case 'get_twilio_numbers': url = `${this.baseUrl}/twilio/numbers`; break;
- index.js:334-342 (registration)Tool registration in the MCP server's list of available tools. Defines the name, description, and empty input schema (no parameters required).{ name: 'get_twilio_numbers', description: 'Get all Twilio phone numbers', inputSchema: { type: 'object', properties: {}, required: [] } },
- index.js:337-341 (schema)Input schema for the 'get_twilio_numbers' tool, specifying an empty object (no input parameters needed).inputSchema: { type: 'object', properties: {}, required: [] }