wx-mcp

April 20, 2025 · View on GitHub

通过wxauto+mcp实现自动信息回复。

使用方法

安装uv

参考uv官方安装文档

配置wx-mcp

git clone https://github.com/saintGeorge13/wx-mcp.git
cd wx-mcp
uv sync

Claude Desktop 配置

要在Claude Desktop中使用,请添加服务器配置:

在Windows上:%APPDATA%/Claude/claude_desktop_config.json

"mcpServers": {
  "wx-mcp": {
    "command": "uv",
    "args": [
      "--directory",
      "path\\to\\wx-mcp",
      "run",
      "wx-mcp.py"
    ]
  }
}

Cursor配置

在Cursor中使用,请在Cursor的MCP配置文件中添加以下内容:

在Windows上:%USERPROFILE%\.cursor\mcp.json

"mcpServers": {
  "wx-mcp": {
    "command": "uv",
    "args": [
      "--directory",
      "path\\to\\wx-mcp",
      "run",
      "wx-mcp.py"
    ]
  }
}