{
  "schemaVersion": "1.0",
  "item": {
    "slug": "wechat-mcp",
    "name": "Wechat Mcp",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dragon015/wechat-mcp",
    "canonicalUrl": "https://clawhub.ai/dragon015/wechat-mcp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/wechat-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wechat-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "requirements.txt",
      "server.py",
      "SKILL.md",
      "test_wechat.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/wechat-mcp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/wechat-mcp",
    "agentPageUrl": "https://openagent3.xyz/skills/wechat-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wechat-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wechat-mcp/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "WeChat MCP",
        "body": "Windows 电脑端微信消息监控与发送 MCP。"
      },
      {
        "title": "功能",
        "body": "📸 截取微信窗口截图\n👤 搜索并打开联系人聊天窗口\n✉️ 给指定联系人发送消息\n🔍 支持独立聊天窗口识别和消息发送"
      },
      {
        "title": "安装",
        "body": "需要先安装 Python 依赖：\n\npip install pyautogui pygetwindow pillow pyperclip opencv-python"
      },
      {
        "title": "1. 发送消息到指定联系人",
        "body": "from server import send_message_to_contact\n\n# 给指定联系人发送消息（完整流程：搜索->打开聊天->发送）\nsend_message_to_contact(\"联系人名称\", \"消息内容\")"
      },
      {
        "title": "2. 给当前聊天窗口发送消息",
        "body": "from server import send_message_to_current\n\n# 给当前已打开的聊天窗口发送消息\nsend_message_to_current(\"消息内容\")"
      },
      {
        "title": "3. 获取微信状态",
        "body": "from server import get_wechat_status\n\nstatus = get_wechat_status()\nprint(status)\n# {'status': 'running', 'title': '微信', 'position': {'x': 0, 'y': 0}, 'size': {'width': 1920, 'height': 1080}}"
      },
      {
        "title": "MCP 工具",
        "body": "如果通过 MCP 协议调用：\n\n{\n  \"tools\": [\n    {\n      \"name\": \"wechat_get_status\",\n      \"description\": \"获取微信窗口状态\"\n    },\n    {\n      \"name\": \"wechat_send_message\",\n      \"description\": \"给当前聊天窗口发送消息\",\n      \"inputSchema\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"message\": {\"type\": \"string\", \"description\": \"消息内容\"}\n        },\n        \"required\": [\"message\"]\n      }\n    }\n  ]\n}"
      },
      {
        "title": "注意事项",
        "body": "微信窗口需要保持打开状态\n发送消息时会自动激活微信窗口\n中文输入需要确保系统中文输入法正常工作\n支持给独立聊天窗口（单独打开的 Dragon 窗口）发送消息"
      },
      {
        "title": "文件结构",
        "body": "wechat-mcp/\n├── server.py          # MCP 服务器主程序\n├── test_wechat.py    # 测试工具\n├── requirements.txt   # Python 依赖\n└── README.md         # 说明文档"
      }
    ],
    "body": "WeChat MCP\n\nWindows 电脑端微信消息监控与发送 MCP。\n\n功能\n📸 截取微信窗口截图\n👤 搜索并打开联系人聊天窗口\n✉️ 给指定联系人发送消息\n🔍 支持独立聊天窗口识别和消息发送\n安装\n\n需要先安装 Python 依赖：\n\npip install pyautogui pygetwindow pillow pyperclip opencv-python\n\n使用方法\n1. 发送消息到指定联系人\nfrom server import send_message_to_contact\n\n# 给指定联系人发送消息（完整流程：搜索->打开聊天->发送）\nsend_message_to_contact(\"联系人名称\", \"消息内容\")\n\n2. 给当前聊天窗口发送消息\nfrom server import send_message_to_current\n\n# 给当前已打开的聊天窗口发送消息\nsend_message_to_current(\"消息内容\")\n\n3. 获取微信状态\nfrom server import get_wechat_status\n\nstatus = get_wechat_status()\nprint(status)\n# {'status': 'running', 'title': '微信', 'position': {'x': 0, 'y': 0}, 'size': {'width': 1920, 'height': 1080}}\n\nMCP 工具\n\n如果通过 MCP 协议调用：\n\n{\n  \"tools\": [\n    {\n      \"name\": \"wechat_get_status\",\n      \"description\": \"获取微信窗口状态\"\n    },\n    {\n      \"name\": \"wechat_send_message\",\n      \"description\": \"给当前聊天窗口发送消息\",\n      \"inputSchema\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"message\": {\"type\": \"string\", \"description\": \"消息内容\"}\n        },\n        \"required\": [\"message\"]\n      }\n    }\n  ]\n}\n\n注意事项\n微信窗口需要保持打开状态\n发送消息时会自动激活微信窗口\n中文输入需要确保系统中文输入法正常工作\n支持给独立聊天窗口（单独打开的 Dragon 窗口）发送消息\n文件结构\nwechat-mcp/\n├── server.py          # MCP 服务器主程序\n├── test_wechat.py    # 测试工具\n├── requirements.txt   # Python 依赖\n└── README.md         # 说明文档"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dragon015/wechat-mcp",
    "publisherUrl": "https://clawhub.ai/dragon015/wechat-mcp",
    "owner": "dragon015",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/wechat-mcp",
    "downloadUrl": "https://openagent3.xyz/downloads/wechat-mcp",
    "agentUrl": "https://openagent3.xyz/skills/wechat-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wechat-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wechat-mcp/agent.md"
  }
}