Skip to main content
Glama
AiAgency-Now

VoiceAI-MCP-VAVicky

Official
by AiAgency-Now

make_bulk_call

Initiate automated phone calls to multiple contacts simultaneously using a configured assistant and contact list for outreach campaigns.

Instructions

Make bulk phone calls

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
assistant_idYesAssistant ID
contact_bulk_idYesContact bulk ID

Implementation Reference

  • Switch case that implements the make_bulk_call tool handler by setting the specific API endpoint for bulk calls using assistant_id and contact_bulk_id, POST method with empty body. The actual HTTP request is made after the switch statement.
    case 'make_bulk_call':
      url = `${this.baseUrl}/twilio/${args.assistant_id}/callbulk/${args.contact_bulk_id}`;
      method = 'POST';
      body = {};
      break;
  • Tool schema definition in the list of tools, specifying name, description, and input schema 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']
      }
    },

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/AiAgency-Now/MCP-VoiceAI-WhiteLabel'

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