← All skills
Tencent SkillHub · Developer Tools

WeCom

Send messages to WeCom (企业微信) via webhooks using MCP protocol. Works with Claude Code, Claude Desktop, and other MCP clients.

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

Send messages to WeCom (企业微信) via webhooks using MCP protocol. Works with Claude Code, Claude Desktop, and other MCP clients.

⬇ 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
package-lock.json, package.json, README.md, skill.json, SKILL.md, tsconfig.json

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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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.2

Documentation

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

WeCom Skill

Send text and markdown messages to WeCom (企业微信) via incoming webhooks (ENV: WECOM_WEBHOOK_URL). WeCom is the enterprise version (using in office) of the famous all-in-on IM WeChat envied by Elon Musk.

Setup

# Navigate to skill directory cd skills/wecom # Install dependencies npm install # Build TypeScript npm run build # Set webhook URL export WECOM_WEBHOOK_URL="https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_KEY"

Usage with Claude Code

Add to your ~/.config/claude_code/mcp.json: { "mcpServers": { "wecom": { "command": "node", "args": ["/path/to/clawdbot/skills/wecom/dist/index.js"], "env": { "WECOM_WEBHOOK_URL": "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_KEY" } } } } Then restart Claude Code. You'll have two new tools:

send_wecom_message

Send a text message to WeCom. # Simple message await send_wecom_message({ content: "Hello from OpenClaw!" }); # With mentions await send_wecom_message({ content: "Meeting starting now", mentioned_list: ["zhangsan", "lisi"] });

send_wecom_markdown

  • Send a markdown message (WeCom flavor).
  • await send_wecom_markdown({
  • content: `# Daily Report
  • **Completed:**
  • Task A
  • Task B
  • **Pending:**
  • Task C
  • <@zhangsan>`
  • });

WeCom Markdown Tags

WeCom supports: FeatureSyntaxBold**text** or <strong>text</strong>Italic*text* or <i>text</i>Strikethrough~~text~~ or <s>text</s>Mention<@userid>Link<a href="url">text</a>Image<img src="url" />Font size<font size="5">text</font>Color<font color="#FF0000">text</font>

Environment Variables

VariableRequiredDefaultDescriptionWECOM_WEBHOOK_URLYes-WeCom webhook URLWECOM_TIMEOUT_MSNo10000Request timeout (ms)

How To

Get WECOM_WEBHOOK_URL following steps here, and envolve it as a bot into a group chat: (Tip: You should get the WECOM_WEBHOOK_URL entirely as a URL, NOT just a KEY )

Reference

Message Receiving and Sending in a Group Chat Download WeCom Apps

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
4 Config2 Docs
  • SKILL.md Primary doc
  • README.md Docs
  • package-lock.json Config
  • package.json Config
  • skill.json Config
  • tsconfig.json Config