get_twilio_numbers
Retrieve all Twilio phone numbers associated with your VoiceAI platform for managing voice and AI chat integrations.
Instructions
Get all Twilio phone numbers
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:334-342 (registration)Registration of the 'get_twilio_numbers' tool in the ListToolsRequestSchema handler, including its name, description, and input schema.{ 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: no required parameters.inputSchema: { type: 'object', properties: {}, required: [] }
- index.js:619-621 (handler)Handler implementation in executeTool method: constructs the API URL `/twilio/numbers` and performs a GET request via fetch to retrieve Twilio phone numbers.case 'get_twilio_numbers': url = `${this.baseUrl}/twilio/numbers`; break;