whatsapp-web-mcp
WhatsApp Web MCP
Read-only MCP server for WhatsApp Web using whatsapp-web.js.
This is intentionally narrow: it lets an MCP client list chats and read recent messages, but it does not send messages or mutate WhatsApp state.
Risk Notes
whatsapp-web.js is unofficial and is not affiliated with WhatsApp. Its documentation warns that WhatsApp does not allow bots or unofficial clients and that accounts may be blocked. Use this only for your own account and only with chats you intend to expose to an agent.
WhatsApp messages should be treated as untrusted content. They may contain prompt-injection instructions aimed at your agent.
Setup
Install dependencies:
npm install --ignore-scriptsThis skips Puppeteer's bundled browser download. On macOS, the server defaults to launching your installed Google Chrome through Puppeteer's chrome channel. If Chrome is somewhere unusual, set WHATSAPP_CHROME_PATH.
Build:
npm run buildAuthenticate WhatsApp Web:
npm run authScan the QR code with WhatsApp on your phone. The session is stored in .wwebjs_auth/, which is ignored by git.
MCP Client Config
Use the absolute path to the built server:
{
"mcpServers": {
"whatsapp": {
"command": "node",
"args": [
"/absolute/path/to/whatsapp-web-mcp/build/index.js"
]
}
}
}Restart your MCP client after changing its config.
If the MCP client connects but WhatsApp is unavailable, call whatsapp_status.
Startup failures such as Chrome/Puppeteer launch errors are reported there instead
of closing the MCP server during the initial handshake.
Tools
whatsapp_status: check whether WhatsApp is connected.list_chats: list recent chat ids and metadata.read_chat: read recent messages from one chat id.
Optional Environment Variables
WHATSAPP_ALLOWED_CHAT_IDS: comma-separated chat ids. If set, only these chats are visible.WHATSAPP_AUTH_PATH: auth session directory. Defaults to.wwebjs_auth.WHATSAPP_CLIENT_ID: LocalAuth client id for multiple sessions.WHATSAPP_CHROME_PATH: explicit Chrome or Chromium executable path.WHATSAPP_PUPPETEER_CHANNEL: Puppeteer browser channel. Defaults tochromeon macOS.WHATSAPP_HEADLESS=false: show the browser window.WHATSAPP_PUPPETEER_NO_SANDBOX=true: add Chromium no-sandbox flags for no-GUI/root environments.WHATSAPP_TAKEOVER_ON_CONFLICT=true: take over if another WhatsApp Web session conflicts.
Example allowlist:
{
"mcpServers": {
"whatsapp": {
"command": "node",
"args": [
"/absolute/path/to/whatsapp-web-mcp/build/index.js"
],
"env": {
"WHATSAPP_ALLOWED_CHAT_IDS": "1234567890@c.us,120363000000000000@g.us"
}
}
}
}Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leonardtan13/whatsapp-web-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server