Skip to main content
Glama

make_call

Initiate phone calls via VoiceAI-MCP-VAVicky by specifying an assistant ID and phone number. Supports optional contact ID integration for streamlined communication.

Instructions

Make a phone call through assistant

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
assistant_idYesAssistant ID
contact_idNoContact ID (optional)
phone_numberYesPhone number to call

Implementation Reference

  • Executes the make_call tool by constructing a POST request to initiate a phone call via the Twilio endpoint for the specified assistant, including phone number and optional contact ID.
    case 'make_call': url = `${this.baseUrl}/twilio/${args.assistant_id}/call`; method = 'POST'; body = { phonenumber: args.phone_number }; if (args.contact_id) { body.contact_id = args.contact_id; body.customData = { phonenumber: args.phone_number }; } break;
  • index.js:396-408 (registration)
    Registers the make_call tool in the ListTools response, defining its name, description, and input schema.
    { name: 'make_call', description: 'Make a phone call through assistant', inputSchema: { type: 'object', properties: { assistant_id: { type: 'string', description: 'Assistant ID' }, phone_number: { type: 'string', description: 'Phone number to call' }, contact_id: { type: 'string', description: 'Contact ID (optional)' } }, required: ['assistant_id', 'phone_number'] } },
  • Defines the input schema for the make_call tool, specifying required assistant_id and phone_number, optional contact_id.
    inputSchema: { type: 'object', properties: { assistant_id: { type: 'string', description: 'Assistant ID' }, phone_number: { type: 'string', description: 'Phone number to call' }, contact_id: { type: 'string', description: 'Contact ID (optional)' } }, required: ['assistant_id', 'phone_number'] }

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