← All skills
Tencent SkillHub · Developer Tools

Wechat Mcp

Windows 电脑端微信消息监控与发送 MCP,实现在微信上给指定联系人发送消息

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Windows 电脑端微信消息监控与发送 MCP,实现在微信上给指定联系人发送消息

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
requirements.txt, server.py, SKILL.md, test_wechat.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

WeChat MCP

Windows 电脑端微信消息监控与发送 MCP。

功能

📸 截取微信窗口截图 👤 搜索并打开联系人聊天窗口 ✉️ 给指定联系人发送消息 🔍 支持独立聊天窗口识别和消息发送

安装

需要先安装 Python 依赖: pip install pyautogui pygetwindow pillow pyperclip opencv-python

1. 发送消息到指定联系人

from server import send_message_to_contact # 给指定联系人发送消息(完整流程:搜索->打开聊天->发送) send_message_to_contact("联系人名称", "消息内容")

2. 给当前聊天窗口发送消息

from server import send_message_to_current # 给当前已打开的聊天窗口发送消息 send_message_to_current("消息内容")

3. 获取微信状态

from server import get_wechat_status status = get_wechat_status() print(status) # {'status': 'running', 'title': '微信', 'position': {'x': 0, 'y': 0}, 'size': {'width': 1920, 'height': 1080}}

MCP 工具

如果通过 MCP 协议调用: { "tools": [ { "name": "wechat_get_status", "description": "获取微信窗口状态" }, { "name": "wechat_send_message", "description": "给当前聊天窗口发送消息", "inputSchema": { "type": "object", "properties": { "message": {"type": "string", "description": "消息内容"} }, "required": ["message"] } } ] }

注意事项

微信窗口需要保持打开状态 发送消息时会自动激活微信窗口 中文输入需要确保系统中文输入法正常工作 支持给独立聊天窗口(单独打开的 Dragon 窗口)发送消息

文件结构

wechat-mcp/ ├── server.py # MCP 服务器主程序 ├── test_wechat.py # 测试工具 ├── requirements.txt # Python 依赖 └── README.md # 说明文档

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Scripts1 Docs1 Files
  • SKILL.md Primary doc
  • server.py Scripts
  • test_wechat.py Scripts
  • requirements.txt Files