Claude Skill
BiboyQG/WeChat-MCP
WeChat-MCP is an MCP server that lets AI assistants like Claude and ChatGPT read and reply to WeChat messages. Automate WeChat interactions with AI.
Overview
Repository
Install this Skill
pip install wechat-mcp-serverRegistry
pip install wechat-mcp-serverclaude mcp add --transport stdio wechat-mcp -- wechat-mcpclaude mcp add --transport stdio wechat-mcp -- uv --directory $(pwd) run wechat-mcpgit clone https://github.com/yourusername/WeChat-MCP.git
Summary
WeChat-MCP is an MCP server that enables AI assistants like Claude, ChatGPT, and OpenClaw to read and reply to WeChat messages, bridging WeChat with AI-powered automation.
微信-MCP:让Openclaw/Claude/ChatGPT等AI助手为你读取和回复微信消息
Key features
- Enables AI assistants to read WeChat messages
- Allows AI assistants to reply to WeChat messages
- Built as an MCP server for easy integration
- Supports multiple AI platforms including Claude and ChatGPT
Use cases
- Automate WeChat customer support with AI
- Let Claude manage WeChat conversations
- Integrate WeChat into AI workflows
- Build smart WeChat bots with MCP
README excerpt
<div align="center"> # WeChat MCP Server [](https://www.python.org/downloads/) [](https://pypi.org/project/wechat-mcp-server/) [](https://opensource.org/licenses/MIT) [中文](docs/README_zh.md) | English </div> An MCP server that automates WeChat on macOS using the Accessibility API and screen capture. It enables LLMs to interact with WeChat chats programmatically. ## Features - 📨 Fetch recent messages from any chat (contact or group) - ✍️ Send automated replies based on chat history - 📷 Publish text-only Moments posts, with optional draft-only mode - 👥 Add contacts using WeChat ID with configurable privacy - 🔍 Smart chat search with exact name matching - 🤖 5 specialized Claude Code sub-agents for smart WeChat automation ## Quick Start ### Installation ```bash pip install wechat-mcp-server ``` ### Setup with Claude Code ```bash # If installed via pip claude mcp add --transport stdio wechat-mcp -- wechat-mcp # If using uv for development claude mcp add --transport stdio wechat-mcp -- uv --directory $(pwd) run wechat-mcp ``` <details> <summary>Setup with Claude Desktop</summary> ```json // If installed via pip { "mcpServers": { "wechat-mcp": { "type": "stdio", "command": "wechat-mcp" } } } // If using uv for development { "mcpServers": { "wechat-mcp": { "type": "stdio", "command": "uv", "args": [ "--directory", "{path/to/wechat-mcp}", "run", "wechat-mcp" ], } } } ``` </details> <details> <summary>Setup with Codex</summary> ```bash # If installed via pip codex mcp add