Skip to main content
Glama

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
NameRequiredDescriptionDefault
assistant_idYesAssistant ID
contact_bulk_idYesContact bulk ID

Implementation Reference

  • 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;
  • 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'] } },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Business-On-Steroids/MCP-VoiceAI-WhiteLabel'

If you have feedback or need assistance with the MCP directory API, please join our Discord server