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
Name | Required | Description | Default |
---|---|---|---|
assistant_id | Yes | Assistant ID | |
contact_id | No | Contact ID (optional) | |
phone_number | Yes | Phone number to call |
Input Schema (JSON Schema)
{
"properties": {
"assistant_id": {
"description": "Assistant ID",
"type": "string"
},
"contact_id": {
"description": "Contact ID (optional)",
"type": "string"
},
"phone_number": {
"description": "Phone number to call",
"type": "string"
}
},
"required": [
"assistant_id",
"phone_number"
],
"type": "object"
}