Show HN:WhatsApp MCP服务器
Show HN: WhatsApp MCP Server

原始链接: https://github.com/lharries/whatsapp-mcp

本文档概述了如何使用模型上下文协议 (MCP) 服务器将您的个人 WhatsApp 帐户连接到 Claude(或 Cursor)。此设置允许 Claude 访问和交互您的 WhatsApp 消息和联系人。 此过程涉及两个主要组件:一个 Go 应用程序 (`whatsapp-bridge`),它连接到 WhatsApp Web API;以及一个 Python MCP 服务器 (`whatsapp-mcp-server`),它为 Claude 提供与 WhatsApp 数据交互的工具。Go 应用程序通过二维码进行身份验证,将消息历史记录存储在本地 SQLite 数据库中,并充当 WhatsApp 和 MCP 服务器之间的桥梁。Python 服务器实现 MCP,使 Claude 能够搜索联系人、检索消息、列出聊天、获取消息上下文以及发送消息。 设置方法:克隆存储库,运行 Go 桥接程序(通过二维码进行身份验证),并使用 JSON 文件配置 Claude/Cursor,该文件指定 Python 服务器的路径。重启 Claude/Cursor 以激活 WhatsApp 集成。常见问题包括二维码显示问题、会话冲突、设备限制、初始加载延迟和数据同步问题。故障排除提示可在 MCP 文档中找到。

Hacker News 上的一篇文章重点介绍了 lharries 的一个开源项目“WhatsApp MCP 服务器”,该项目能够将大型语言模型 (LLM) 连接到 WhatsApp 数据,从而实现上下文感知的 AI 代理。这个自托管服务器使用 WhatsApp Web 多设备 API(通过 whatsmeow)并将消息本地存储在 SQLite 数据库中,优先考虑用户隐私和控制。用户可以搜索消息、联系人及群组,LLM 也能够发送消息。该项目的目的是利用 WhatsApp 中存储的大量信息,使 AI 代理能够代表用户执行任务,提供一个信息丰富的环境。一位评论者询问是否有具有安全功能的开源“WhatsApp API SaaS”解决方案。
相关文章

原文

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

With this you can search you personal Whatsapp messages, search your contacts and send messages to either individuals or groups.

It connects to your personal WhatsApp account directly via the Whatsapp web multidevice API (using the 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).

Here's an example of what you can do when it's connected to Claude.

WhatsApp MCP

To get updates on this and other projects I work on enter your email here

  • Go
  • Python 3.6+
  • Anthropic Claude Desktop app (or Cursor)
  • UV (Python package manager), install with curl -LsSf https://astral.sh/uv/install.sh | sh
  1. Clone this repository

    git clone https://github.com/lharries/whatsapp-mcp.git
    cd whatsapp-mcp
  2. Run the WhatsApp bridge

    Navigate to the whatsapp-bridge directory and run the Go application:

    cd whatsapp-bridge
    go run main.go

    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.

    After approximately 20 days, you will might need to re-authenticate.

  3. Connect to the the MCP server

    Copy the below json with the appropriate {{PATH}} values:

    {
      "mcpServers": {
        "whatsapp": {
          "command": "{{PATH}}/.local/bin/uv", // Run `which uv` and place the output here
          "args": [
            "--directory",
            "{{PATH}}/whatsapp-mcp/whatsapp-mcp-server", // cd into the repo, run `pwd` and enter the output here + "/whatsapp-mcp-server"
            "run",
            "main.py"
          ]
        }
      }
    }

    For Claude, save this as claude_desktop_config.json in your Claude Desktop configuration directory at:

    ~/Library/Application Support/Claude/claude_desktop_config.json
    

    For Cursor, save this as mcp.json in your Cursor configuration directory at:

  4. Restart Claude Desktop / Cursor

    Open Claude Desktop and you should now see WhatsApp as an available integration.

    Or restart Cursor.

This application consists of two main components:

  1. Go WhatsApp Bridge (whatsapp-bridge/): A Go application that connects to WhatsApp's web API, handles authentication via QR code, and stores message history in SQLite. It serves as the bridge between WhatsApp and the MCP server.

  2. Python MCP Server (whatsapp-mcp-server/): A Python server implementing the Model Context Protocol (MCP), which provides standardized tools for Claude to interact with WhatsApp data and send/receive messages.

  • All message history is stored in a SQLite database within the whatsapp-bridge/store/ directory
  • The database maintains tables for chats and messages
  • Messages are indexed for efficient searching and retrieval

Once connected, you can interact with your WhatsApp contacts through Claude, leveraging Claude's AI capabilities in your WhatsApp conversations.

Claude can access the following tools to interact with WhatsApp:

  • search_contacts: Search for contacts by name or phone number
  • list_messages: Retrieve messages with optional filters and context
  • list_chats: List available chats with metadata
  • get_chat: Get information about a specific chat
  • get_direct_chat_by_contact: Find a direct chat with a specific contact
  • get_contact_chats: List all chats involving a specific contact
  • get_last_interaction: Get the most recent message with a contact
  • get_message_context: Retrieve context around a specific message
  • send_message: Send a WhatsApp message to a specified phone number
  1. Claude sends requests to the Python MCP server
  2. The MCP server queries the Go bridge for WhatsApp data or directly to the SQLite database
  3. The Go accesses the WhatsApp API and keeps the SQLite database up to date
  4. Data flows back through the chain to Claude
  5. When sending messages, the request flows from Claude through the MCP server to the Go bridge and to WhatsApp
  • If you encounter permission issues when running uv, you may need to add it to your PATH or use the full path to the executable.
  • Make sure both the Go application and the Python server are running for the integration to work properly.
  • QR Code Not Displaying: If the QR code doesn't appear, try restarting the authentication script. If issues persist, check if your terminal supports displaying QR codes.
  • WhatsApp Already Logged In: If your session is already active, the Go bridge will automatically reconnect without showing a QR code.
  • Device Limit Reached: WhatsApp limits the number of linked devices. If you reach this limit, you'll need to remove an existing device from WhatsApp on your phone (Settings > Linked Devices).
  • No Messages Loading: After initial authentication, it can take several minutes for your message history to load, especially if you have many chats.
  • WhatsApp Out of Sync: If your WhatsApp messages get out of sync with the bridge, delete both database files (whatsapp-bridge/store/messages.db and whatsapp-bridge/store/whatsapp.db) and restart the bridge to re-authenticate.

For additional Claude Desktop integration troubleshooting, see the MCP documentation. The documentation includes helpful tips for checking logs and resolving common issues.

联系我们 contact @ memedata.com