Claude Skill
BiboyQG/WeChat-MCP
WeChat-MCP 是一个 MCP 服务器,允许 Claude、ChatGPT 等 AI 助手读取和回复微信消息,实现微信交互的 AI 自动化。
概览
仓库信息
安装这个 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
项目简介
WeChat-MCP 是一个 MCP 服务器,允许 Claude、ChatGPT、OpenClaw 等 AI 助手读取和回复微信消息,实现微信与 AI 自动化的连接。
WeChat-MCP: let Openclaw/Claude/ChatGPT and other AI assistants read and reply to WeChat for you
要点
- 允许 AI 助手读取微信消息
- 支持 AI 助手回复微信消息
- 作为 MCP 服务器构建,易于集成
- 兼容 Claude、ChatGPT 等多个 AI 平台
使用场景
- 用 AI 自动化微信客服
- 让 Claude 管理微信对话
- 将微信集成到 AI 工作流中
- 使用 MCP 构建智能微信机器人
README 摘要
<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