Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Send messages to WeCom (企业微信) via webhooks using MCP protocol. Works with Claude Code, Claude Desktop, and other MCP clients.
Send messages to WeCom (企业微信) via webhooks using MCP protocol. Works with Claude Code, Claude Desktop, and other MCP clients.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
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.
# 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"
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 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"] });
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>
VariableRequiredDefaultDescriptionWECOM_WEBHOOK_URLYes-WeCom webhook URLWECOM_TIMEOUT_MSNo10000Request timeout (ms)
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 )
Message Receiving and Sending in a Group Chat Download WeCom Apps
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.