send-whatsapp-message
Send a WhatsApp message to a contact programmatically using the WhatsApp MCP Server. Define the contact name and message content to automate message delivery without direct UI interaction.
Instructions
Send a message to a contact on WhatsApp
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactName | Yes | Full name of the contact as it appears in WhatsApp | |
message | Yes | Message content to send |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contactName": {
"description": "Full name of the contact as it appears in WhatsApp",
"type": "string"
},
"message": {
"description": "Message content to send",
"type": "string"
}
},
"required": [
"contactName",
"message"
],
"type": "object"
}