Sitemap
Every page on WhatsApp MCP, grouped by section. 17 pages total.
Faq1
Install1
Precall1
Privacy1
Sitemap1
Guides12
- Automation for WhatsApp messages that proves delivery, instead of trusting itMost automation around WhatsApp messages stops at sending. whatsapp-mcp-macos pastes the message, hits Return, then re-reads the chat from the macOS accessibility tree and only returns verified: true if the bubble actually appeared. Walks the Swift loop line by line.
- context7 mcp server, paired with a local action server: the read/write loop most guides misscontext7 is the reference half of MCP: remote, read-only, pulls up-to-date library docs. Pair it with a local action server like whatsapp-mcp-macos and you give the model the write half: it can send the message it just wrote code for. Exact ~/.claude.json, line-level source walk of the action path, and the permission model that ties the two halves together.
- Google MCP servers: 35+ tools, exactly one outbound channel to a humanGoogle ships official MCP servers for BigQuery, Compute Engine, GKE, Workspace, Maps, and more. Of that catalog, only Gmail can address a person who is not on a Google domain, and even Chat MCP is read-only. This is the missing-channel map and the WhatsApp MCP fix.
- GuidesGuides for the WhatsApp MCP server on macOS — installation, MCP tooling, npm package management, and adjacent automation topics.
- Install npm package globally (the lifecycle every generic guide skips)A global npm install is not just unpack and symlink. For a package with native code, like whatsapp-mcp-macos, the os field gates the install, the postinstall script recompiles against a Swift SDK, and the global-bin symlink can end up pointing at a binary your CPU cannot run. Field notes from a real macOS install.
- Manychat WhatsApp automation, and the local-agent alternative most teams never evaluateManychat drives WhatsApp through Meta
- mcp server meaning: a child process your host forks, not a service you connect toEvery explainer calls an MCP server a
- 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 delete package (what the command leaves behind on macOS)Generic npm uninstall guides delete node_modules and stop. This one walks through what actually survives when the package compiled a native binary in postinstall and was held open by a long-lived host. Worked example: whatsapp-mcp-macos and five leftovers npm never touches.
- npm how to update package (when a host process is keeping it open)Every npm update guide treats packages as inert files on disk. This one covers the case where a parent process (Claude Code, Cursor, launchd, PM2) has already spawned the package
- npm-check package version (the three numbers the same install returns)`npm-check
- Stripe MCP server: it creates the payment link. It does not deliver it.Stripe MCP returns plink_xxx, cust_xxx, in_xxx identifiers but ships zero outbound delivery. Pair it with WhatsApp MCP and the same agent that mints the link confirms the customer actually received it, verified against the WhatsApp accessibility tree.