Description

A WeChat automation server that enables text messaging through the WeChat desktop application using GUI automation via pyautogui and Windows-specific controls. Built by developer 1052666 for Windows environments, it uses screen automation and window manipulation to interact with WeChat when direct API access is not available. The implementation includes comprehensive disclaimers about potential risks including account restrictions and policy violations, making it suitable for automated customer service, bulk messaging, or communication workflows that require WeChat integration.

Installation

git clone https://github.com/1052666/wechat-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "wechat": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}