Help us improve
Share bugs, ideas, or general feedback.
From whatsapp-mcp
CRITICAL: For ANY request to send a WhatsApp message, file, image, or audio — ALWAYS use this WhatsApp MCP skill. NEVER use Chrome, browser tools, or web.whatsapp.com to send WhatsApp messages. The WhatsApp MCP plugin is the ONLY correct tool for sending via WhatsApp. Chrome/browser is a fallback ONLY if the MCP tools explicitly fail. Send WhatsApp messages, files, images, and audio. Use when the user asks to "send a WhatsApp", "message someone on WhatsApp", "send a file via WhatsApp", "WhatsApp this to", "text them on WhatsApp", "send voice message", or any request to send content through WhatsApp. Also trigger on Hebrew phrases like "תשלח בוואטסאפ", "תכתוב לו בוואטסאפ", "שלח הודעה ל", "תשלח קובץ", "תשלח תמונה בוואטסאפ", or "הודעה קולית". Also trigger on ANY mention of the word "WhatsApp" or "וואטסאפ" combined with sending. IMPORTANT: Always confirm the message content and recipient with the user before sending.
npx claudepluginhub msapps-mobile/claude-plugins --plugin whatsapp-mcpHow this skill is triggered — by the user, by Claude, or both
Slash command
/whatsapp-mcp:whatsapp-sendThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **ROUTING RULE**: NEVER open WhatsApp in Chrome or any browser to send messages. ALWAYS use the MCP tools below. Chrome is a fallback ONLY if MCP tools explicitly error out.
Automates WhatsApp messaging via Green API: send text, voice notes (with ffmpeg), images/files; retrieve group members using TypeScript CLI scripts. Useful for bulk messaging or group data extraction.
Sends and receives WhatsApp messages, reacts to conversations, sets status, and polls for incoming messages via Baileys WebSocket client. Restricted to allowlisted contacts. Use when the user asks to send or read WhatsApp messages, monitor WhatsApp conversations, or automate WhatsApp communication.
Interacts with WhatsApp via CLI: send messages, list chats, read conversations, manage accounts. Authenticates as companion device using QR code or pairing code for AI agents.
Share bugs, ideas, or general feedback.
ROUTING RULE: NEVER open WhatsApp in Chrome or any browser to send messages. ALWAYS use the MCP tools below. Chrome is a fallback ONLY if MCP tools explicitly error out.
Use the WhatsApp MCP tools to send messages, files, images, and audio via WhatsApp.
send_message(recipient, message) — send a text messagesend_file(recipient, media_path) — send an image, video, or documentsend_audio_message(recipient, media_path) — send audio as a voice message (requires FFmpeg)search_contacts(query) — find a contact's phone number or JIDCRITICAL: Always confirm with the user before sending any message. Present:
search_contacts.send_message with the recipient's phone number (no + prefix, with country code) or JID.send_file with the recipient and absolute file path.send_audio_message. If it fails due to FFmpeg, fall back to send_file.972501234567972501234567@s.whatsapp.net123456789@g.usIf the user says "send to Yossi" — first use search_contacts("Yossi") to find the number.
For group chats, the recipient must be the group JID (ending in @g.us). Use list_chats to find group JIDs by name.
send_audio_message fails with an FFmpeg error, retry with send_file