get_calls_in_progress
Retrieve active call sessions to monitor ongoing conversations and manage real-time voice interactions.
Instructions
Get all calls currently in progress
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:421-429 (registration)Registration of the 'get_calls_in_progress' tool including its name, description, and input schema (empty object).{ name: 'get_calls_in_progress', description: 'Get all calls currently in progress', inputSchema: { type: 'object', properties: {}, required: [] } },
- index.js:674-676 (handler)Handler implementation for 'get_calls_in_progress': sets the URL to fetch calls in progress from the backend API (/twilio/calls) and performs a GET request via fetch.case 'get_calls_in_progress': url = `${this.baseUrl}/twilio/calls`; break;