send_sms
Send SMS messages via a VoiceAI assistant by specifying the recipient's phone number and message content. Integrates with VoiceAI-MCP-VAVicky for streamlined communication.
Instructions
Send SMS message through assistant
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assistant_id | Yes | Assistant ID | |
contact_id | No | Contact ID (optional) | |
message | Yes | SMS message content | |
phone_number | Yes | Phone number to send SMS |
Input Schema (JSON Schema)
{
"properties": {
"assistant_id": {
"description": "Assistant ID",
"type": "string"
},
"contact_id": {
"description": "Contact ID (optional)",
"type": "string"
},
"message": {
"description": "SMS message content",
"type": "string"
},
"phone_number": {
"description": "Phone number to send SMS",
"type": "string"
}
},
"required": [
"assistant_id",
"phone_number",
"message"
],
"type": "object"
}