WhatsApp MCP Server
Read, search, and send your personal WhatsApp messages and media from an AI assistant.
WhatsApp MCP Server
whatsapp-mcp is a Model Context Protocol server that connects your personal WhatsApp account to AI assistants like Claude.
It lets the agent search and read your messages (including images, videos, documents, and audio), search contacts, and send messages and media to individuals or groups. It connects through the WhatsApp Web multidevice API using the whatsmeow library and stores messages locally in SQLite — data is only sent to the LLM when the agent explicitly accesses it via tools.
It is intended for individuals who want an AI assistant that can read and send their WhatsApp messages. As the README notes, like many messaging MCP servers it carries prompt-injection / data-exfiltration risks.
Only compromise signals — malicious or tampered code (leaked secrets, backdoors, path traversal, a dropped executable) — reduce the score. Dangerous-by-capability traits (shell, network, injection strings, pickle) are shown as risk surface: expected for some capabilities — a security tool ships offensive code on purpose — so they do not sink the grade.
The same gate an agent runs before installing (POST /api/v1/trust/whatsapp-mcp-server/check). Click a policy:
Evaluated against the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any control to see the findings.
Consume WhatsApp MCP Server programmatically. Authenticate with an API key or session — see Authorize an agent.
# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/whatsapp-mcp-server
# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/whatsapp-mcp-server/check \
-H "Content-Type: application/json" \
-d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'
# CLI
npx ai-supply add whatsapp-mcp-server
# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/whatsapp-mcp-server/install \
-H "Authorization: Bearer $AIM_KEY"
# MCP tool
install_listing({ "slug": "whatsapp-mcp-server" })OpenAPI spec →Curated mirror — latest upstream source. See the repository for tagged releases.