make_bulk_call
Initiate bulk phone calls using VoiceAI-MCP-VAVicky by specifying an assistant ID and contact bulk ID for efficient mass communication.
Instructions
Make bulk phone calls
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assistant_id | Yes | Assistant ID | |
| contact_bulk_id | Yes | Contact bulk ID |
Implementation Reference
- index.js:668-672 (handler)Handler logic for 'make_bulk_call' tool: constructs API endpoint `/twilio/{assistant_id}/callbulk/{contact_bulk_id}` and sends a POST request with empty body to initiate bulk calls.case 'make_bulk_call': url = `${this.baseUrl}/twilio/${args.assistant_id}/callbulk/${args.contact_bulk_id}`; method = 'POST'; body = {}; break;
- index.js:410-419 (schema)Input schema definition for 'make_bulk_call' tool requiring assistant_id and contact_bulk_id.name: 'make_bulk_call', description: 'Make bulk phone calls', inputSchema: { type: 'object', properties: { assistant_id: { type: 'string', description: 'Assistant ID' }, contact_bulk_id: { type: 'string', description: 'Contact bulk ID' } }, required: ['assistant_id', 'contact_bulk_id'] }
- index.js:409-420 (registration)Registration of 'make_bulk_call' tool in the ListToolsRequestSchema handler's tools array.{ name: 'make_bulk_call', description: 'Make bulk phone calls', inputSchema: { type: 'object', properties: { assistant_id: { type: 'string', description: 'Assistant ID' }, contact_bulk_id: { type: 'string', description: 'Contact bulk ID' } }, required: ['assistant_id', 'contact_bulk_id'] } },