whatsapp_send_text
Send text messages to WhatsApp contacts or groups with support for mentions and replies using the WSAPI WhatsApp MCP Server.
Instructions
Send a text message to a WhatsApp contact or group. Supports mentions and replies.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| isForwarded | No | Whether the message should be marked as forwarded | |
| mentions | No | List of phone numbers to mention in the message | |
| replyTo | No | ID of the message being replied to | |
| text | Yes | Message text content (max 4096 characters) | |
| to | Yes | Recipient phone number (with @s.whatsapp.net) or group ID (with @g.us) |
Input Schema (JSON Schema)
{
"properties": {
"isForwarded": {
"description": "Whether the message should be marked as forwarded",
"optional": true,
"type": "boolean"
},
"mentions": {
"description": "List of phone numbers to mention in the message",
"items": {
"type": "string"
},
"optional": true,
"type": "array"
},
"replyTo": {
"description": "ID of the message being replied to",
"optional": true,
"type": "string"
},
"text": {
"description": "Message text content (max 4096 characters)",
"type": "string"
},
"to": {
"description": "Recipient phone number (with @s.whatsapp.net) or group ID (with @g.us)",
"type": "string"
}
},
"required": [
"to",
"text"
],
"type": "object"
}