waha_send_message
Send text messages to WhatsApp chats using the WAHA MCP Server. Supports replying to specific messages and includes link preview functionality for enhanced communication.
Instructions
Send a text message to a WhatsApp chat. Returns message ID and delivery timestamp.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chatId | Yes | Chat ID to send message to (format: number@c.us) | |
linkPreview | No | Enable link preview (default: true) | |
replyTo | No | Optional: Message ID to reply to | |
text | Yes | Message text to send |
Input Schema (JSON Schema)
{
"properties": {
"chatId": {
"description": "Chat ID to send message to (format: number@c.us)",
"type": "string"
},
"linkPreview": {
"default": true,
"description": "Enable link preview (default: true)",
"type": "boolean"
},
"replyTo": {
"description": "Optional: Message ID to reply to",
"type": "string"
},
"text": {
"description": "Message text to send",
"type": "string"
}
},
"required": [
"chatId",
"text"
],
"type": "object"
}