.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/lharries/whatsapp-mcp
home/mcp-servers/lharries/whatsapp-mcp
lharries avatar

whatsapp-mcp

bylharries· 1 MCP server

Stars

5.9k

Forks

1.2k

Category

AI Agents & MCP

View on GitHub

TL;DR

This is a Model Context Protocol (MCP) server for WhatsApp.

How to install whatsapp-mcp?

lharries/whatsapp-mcp
$git clone https://github.com/lharries/whatsapp-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install whatsapp-mcp by running `git clone https://github.com/lharries/whatsapp-mcp`, then use it for the current task and follow its documentation at https://github.com/lharries/whatsapp-mcp.

Files · 1

View on GitHub
README.md
1# WhatsApp MCP Server
2 
3This is a Model Context Protocol (MCP) server for WhatsApp.
4 
5With this you can search and read your personal Whatsapp messages (including images, videos, documents, and audio messages), search your contacts and send messages to either individuals or groups. You can also send media files including images, videos, documents, and audio messages.
6 
7It connects to your **personal WhatsApp account** directly via the Whatsapp web multidevice API (using the [whatsmeow](https://github.com/tulir/whatsmeow) library). All your messages are stored locally in a SQLite database and only sent to an LLM (such as Claude) when the agent accesses them through tools (which you control).
8 
9Here's an example of what you can do when it's connected to Claude.
10 
11![WhatsApp MCP](./example-use.png)
12 
13> To get updates on this and other projects I work on [enter your email here](https://docs.google.com/forms/d/1rTF9wMBTN0vPfzWuQa2BjfGKdKIpTbyeKxhPMcEzgyI/preview)
14 
15> *Caution:* as with many MCP servers, the WhatsApp MCP is subject to [the lethal trifecta](https://simonwillison.net/2025/Jun/16/the-lethal-trifecta/). This means that project injection could lead to private data exfiltration.
16 
17## Installation
18 
19### Prerequisites
20 
21- Go
22- Python 3.6+
23- Anthropic Claude Desktop app (or Cursor)
24- UV (Python package manager), install with `curl -LsSf https://astral.sh/uv/install.sh | sh`
25- FFmpeg (_optional_) - Only needed for audio messages. If you want to send audio files as playable WhatsApp voice messages, they must be in `.ogg` Opus format. With FFmpeg installed, the MCP server will automatically convert non-Opus audio files. Without FFmpeg, you can still send raw audio files using the `send_file` tool.
26 
27### Steps
28 
291. **Clone this repository**
30 
31 ```bash
32 git clone https://github.com/lharries/whatsapp-mcp.git
33 cd whatsapp-mcp
34 ```
35 
362. **Run the WhatsApp bridge**
37 
38 Navigate to the whatsapp-bridge directory and run the Go application:
39 
40 ```bash
41 cd whatsapp-bridge
42 go run main.go
43 ```
44 
45 The first time you run it, you will be prompted to scan a QR code. Scan the QR code with your WhatsApp mobile app to authenticate.
46 
47 After approximately 20 days, you will might need to re-authenticate.
48 
493. **Connect to the MCP server**
50 
51 Copy the below json with the appropriate {{PATH}} values:
52 
53 ```json
54 {
55 "mcpServers": {
56 "whatsapp": {
57 "command": "{{PATH_TO_UV}}", // Run `which uv` and place the output here
58 "args": [
59 "--directory",
60 "{{PATH_TO_SRC}}/whatsapp-mcp/whatsapp-mcp-server", // cd into the repo, run `pwd` and enter the output here + "/whatsapp-mcp-server"
61 "run",
62 "main.py"
63 ]
64 }
65 }
66 }
67 ```
68 
69 For **Claude**, save this as `claude_desktop_config.json` in your Claude Desktop configuration directory at:
70 
71 ```
72 ~/Library/Application Support/Claude/claude_desktop_config.json
73 ```
74 
75 For **Cursor**, save this as `mcp.json` in your Cursor configuration directory at:
76 
77 ```
78 ~/.cursor/mcp.json
79 ```
80 
814. **Restart Claude Desktop / Cursor**
82 
83 Open Claude Desktop and you should now see WhatsApp as an available integration.
84 
85 Or restart Cursor.
86 
87### Windows Compatibility
88 
89If you're running this project on Windows, be aware that `go-sqlite3` requires **CGO to be enabled** in order to compile and work properly. By default, **CGO is disabled on Windows**, so you need to explicitly enable it and have a C compiler installed.
90 
91#### Steps to get it working:
92 
931. **Install a C compiler**
94 We recommend using [MSYS2](https://www.msys2.org/) to install a C compiler for Windows. After installing MSYS2, make sure to add the `ucrt64\bin` folder to your `PATH`.
95 → A step-by-step guide is available [here](https://code.visualstudio.com/docs/cpp/config-mingw).
96 
972. **Enable CGO and run the app**
98 
99 ```bash
100 cd whatsapp-bridge
101 go env -w CGO_ENABLED=1
102 go run main.go
103 ```
104 
105Without this setup, you'll likely run into errors like:
106 
107> `Bin

Preview

lharries/whatsapp-mcplharries/whatsapp-mcp

# WhatsApp MCP Server

This is a Model Context Protocol (MCP) server for WhatsApp.

With this you can search and read your personal Whatsapp messages (including images, videos, documents, and audio messages), search your contacts and send messa

It connects to your **personal WhatsApp account** directly via the Whatsapp web multidevice API (using the [whatsmeow](https://github.com/tulir/whatsmeow) libra

Repolharries/whatsapp-mcp
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2025
LicenseMIT
First seenJul 27, 2026

Tags

MCPaimcp

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k