cancel_call
Terminate an active phone call by specifying the unique call ID using the VoiceAI-MCP-VAVicky server. Simplify call management and control with precision.
Instructions
Cancel an active phone call
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| call_id | Yes | Call ID |
Implementation Reference
- index.js:430-440 (registration)Registration of the 'cancel_call' tool including its name, description, and input schema in the ListTools response.{ name: 'cancel_call', description: 'Cancel an active phone call', inputSchema: { type: 'object', properties: { call_id: { type: 'string', description: 'Call ID' } }, required: ['call_id'] } },
- index.js:678-681 (handler)Handler implementation for 'cancel_call' tool: constructs URL with call_id and sets method to DELETE for API request to cancel the call.case 'cancel_call': url = `${this.baseUrl}/twilio/calls/${args.call_id}`; method = 'DELETE'; break;