Sitemap
Every page on WhatsApp MCP, grouped by section. 27 pages total.
Alternatives4
- Self-hosted WhatsApp gateway vs accessibility APIs: pick by detection surfaceBaileys, Evolution API, whatsapp-web.js, and wppconnect all speak WhatsApp
- WAHA alternative that skips the web protocol entirelyWAHA lets you pick an engine: WEBJS, NOWEB, or GOWS. All three are reverse-engineered WhatsApp clients that pair a linked device and sit on Meta
- WhatsApp desktop automation vs Cloud API: pick by throughput, not featuresMost comparisons frame this as personal vs verified business. The real decision axis is wall-clock throughput. Desktop automation hits a hard ceiling near 15 messages per minute on one Mac, measured from the actual Thread.sleep timings in handleSendMessage. The Cloud API has no equivalent ceiling but asks for verified-business onboarding and async webhook handling. Here is the latency budget on both sides and the math that decides for you.
- WhatsApp MCP via accessibility vs the Business API: the agentCompare the two paths by what an AI agent actually sees through each. WhatsApp MCP exposes 11 named tools, six of them read-side against your existing contacts and chat history. The Business API exposes graph endpoints that have no read access to your contact directory at all. That asymmetry is what makes the choice obvious for personal-account agents.
Faq1
Install1
Precall1
Privacy1
Sitemap1
Guides18
- Does Meta keep WhatsApp message logs on its servers? The honest answerPer WhatsApp
- Drive WhatsApp via accessibility APIs: the actual VoiceOver vocabularyEvery guide tells you to call AXUIElementCreateApplication and walk kAXChildrenAttribute. None of them tell you what WhatsApp Catalyst actually exposes. Here are the five VoiceOver description patterns and three spatial thresholds whatsapp-mcp-macos matches against, lifted directly from the Swift source.
- GuidesGuides for the WhatsApp MCP server on macOS — installation, MCP tooling, npm package management, and adjacent automation topics.
- Manychat WhatsApp automation, and the local-agent alternative most teams never evaluateManychat drives WhatsApp through Meta
- MCP server production gotchas: nine that bit me shipping a real local oneEvery
- mcp tool descriptions are agent invocation protocols, not blurbsMost guides treat the description string on an MCP tool as documentation. On a shipping WhatsApp MCP server, the description is a micro-prompt that names the next tool to call, the verification step in between, and what NOT to do. Traced through Sources/WhatsAppMCP/main.swift.
- npm-check package version (the three numbers the same install returns)`npm-check
- OpenSearch MCP server is the textbook stateless MCP. Some MCP servers cannot be that.OpenSearch MCP server is the canonical example of a stateless MCP server. Every tool call is self-contained because the data is keyed by document id. WhatsApp MCP for macOS is the opposite: its search tool leaves the UI open and the next call consumes that state by index. Two designs, side by side.
- openwa and WhatsApp Web protocol fragility: where it actually breaksopenwa drives WhatsApp Web through Puppeteer and injects a script that pulls Meta
- The hidden risk of a self-hosted WhatsApp gatewayThe famous risk of a self-hosted WhatsApp gateway is the account ban. The hidden one is custody: the gateway stores your full WhatsApp session as a portable plaintext file and runs it through an unaudited npm dependency tree. lotusbail, a poisoned Baileys clone with 56,000+ downloads, exfiltrated exactly that credential before it was caught in December 2025.
- WhatsApp AI agent transport: itWiring an AI agent to WhatsApp means picking TWO transports stacked: stdio JSON-RPC between the agent and the MCP server, then a WhatsApp-side transport (Meta Cloud HTTPS, whatsmeow WebSocket, browser CDP, or macOS accessibility). The second one is where the real architectural choice lives.
- WhatsApp API without a Meta Business account: 3 options (one gets you banned)No official WhatsApp API works without a Meta Business account. The unofficial APIs that skip Meta link a reverse-engineered client device and get numbers banned in 2 to 8 weeks. A third path drives the genuine WhatsApp Desktop app via macOS accessibility and never connects to WhatsApp servers as a client at all.
- WhatsApp automation without the web protocol: drive the desktop app insteadYou can automate WhatsApp without speaking its web protocol. Instead of opening a WebSocket session like Baileys or running WhatsApp Web in a headless browser, whatsapp-mcp-macos reads the macOS accessibility tree of the genuine desktop app and posts synthetic clicks. No new linked device, no reverse-engineered client.
- WhatsApp booking automation on the desktop client, with the chat history actually readBooking automation on WhatsApp usually means Calendly + Zapier + a Meta Business API template firing into the void. The desktop-client path is different: a local MCP server drives the WhatsApp Mac app, reads the existing booking thread, drafts a reply that references the customer
- WhatsApp Cloud API wrapper limits: the three-layer ceiling no one stacks for youMeta
- WhatsApp MCP on Mac without the Business API: the OS path, not another APIEvery other WhatsApp MCP that skips Meta
- WhatsApp MCP server: four ways one exists, and how to pick the right oneA WhatsApp MCP server exposes WhatsApp as JSON-RPC tools an AI can call. The four real implementations differ in HOW they reach WhatsApp: Business Cloud API, whatsmeow web-multidevice, headless WhatsApp Web, or macOS accessibility. Side-by-side, with the failure modes each one hides.
- WhatsApp voice-note order automation on macOS, without Whisper or the Business APIMost guides on automating orders from WhatsApp voice notes route you through Twilio, the Business Cloud API, and a Whisper sidecar. There is a shorter path on macOS: WhatsApp