whatsapp-mcp
An MCP server that gives Claude read and write access to WhatsApp through a self-hosted Evolution API gateway. It is dependency-free, using Node's built-in fetch and stdio transport.
README
WhatsApp MCP
An MCP server that gives Claude read and write access to WhatsApp, through a
self-hosted Evolution API
gateway. Dependency-free: one file, Node's built-in fetch, stdio transport.
Your number stays linked on your own machine. No third party sees the messages.
Tools
| Tool | What it does |
|---|---|
connection_status |
Is the number linked and online. |
list_chats |
Recent chats, newest first, with JIDs and unread counts. |
list_messages |
Messages in one chat. Each carries an id; attachments carry a media_type. |
get_media |
Download the attachment on a message. Images come back viewable inline. |
search_contacts |
Match contacts by name or number substring. |
check_number |
Is a phone number registered on WhatsApp. |
list_groups |
Groups this number belongs to, with JIDs. |
send_message |
Send a text message. The only tool with an outbound side effect. |
reconnect |
Returns a pairing QR when the link has dropped. |
restart_instance |
Bounce a stuck instance. Does not unlink the number. |
Requirements
A running Evolution API instance with a linked WhatsApp number. This server is only a client; it does not start or manage the gateway.
Configure
All configuration is environment variables:
| Variable | Default | Meaning |
|---|---|---|
EVO_APIKEY |
(required) | Global API key, AUTHENTICATION_API_KEY in Evolution's .env. |
EVO_URL |
http://localhost:8080 |
Base URL of the Evolution API server. |
EVO_INSTANCE |
primary |
Instance name for your number. |
EVO_MEDIA_DIR |
media/ beside server.js |
Where get_media saves attachments. |
EVO_QR_PATH |
<instance>-qr.png beside server.js |
Where reconnect writes the pairing QR. |
Register it with Claude Code:
claude mcp add whatsapp -s user \
-e EVO_APIKEY=your-key \
-e EVO_URL=http://localhost:8080 \
-e EVO_INSTANCE=primary \
-- node /path/to/whatsapp-mcp/server.js
claude mcp list # expect: whatsapp ... Connected
Restart Claude Code afterwards. Tool lists are read once at session start, so a newly added server (or a newly added tool) will not appear in a session that was already running.
Test
EVO_APIKEY=your-key npm test
An integration check against the live gateway, no mocks: it spawns a real server
process, finds a recent image on its own, and asserts get_media returns decoded
image bytes and writes them to disk. Pin a specific message with
WA_TEST_MESSAGE_ID if you would rather not have it search.
Notes
get_mediainlines images up to 3.5 MB; anything larger, and any non-image, is saved to disk and the path is returned instead.- Downloads are pruned after 24 hours so a chat full of photos cannot quietly grow into a disk problem.
- Media only downloads while it is still on WhatsApp's servers. Very old attachments can come back empty.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.