send_message
Send WhatsApp messages programmatically by specifying recipient details and message content, enabling automated communication through the WhatsApp MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | The text message to send | |
recipient | Yes | Recipient JID (user or group, e.g., '12345@s.whatsapp.net' or 'group123@g.us') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "The text message to send",
"minLength": 1,
"type": "string"
},
"recipient": {
"description": "Recipient JID (user or group, e.g., '12345@s.whatsapp.net' or 'group123@g.us')",
"type": "string"
}
},
"required": [
"recipient",
"message"
],
"type": "object"
}