wecomSend messages to WeCom (企业微信) via webhooks using MCP protocol. Works with Claude Code, Claude Desktop, and other MCP clients.
Install via ClawdBot CLI:
clawdbot install qidu/wecomSend text and markdown messages to WeCom (企业微信) via incoming webhooks.
# 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 Clawdbot!" });
# With mentions
await send_wecom_message({
content: "Meeting starting now",
mentioned_list: ["zhangsan", "lisi"]
});
Send a markdown message (WeCom flavor).
await send_wecom_markdown({
content: `# Daily Report
**Completed:**
- Task A
- Task B
**Pending:**
- Task C
<@zhangsan>`
});
WeCom supports:
| Feature | Syntax |
|---------|--------|
| Bold | text or text |
| Italic | text or text |
| Strikethrough | ~~text~~ or |text
| Mention | <@userid> |
| Link | text |
| Image | |
| Font size | text |
| Color | text |
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| WECOM_WEBHOOK_URL | Yes | - | WeCom webhook URL |
| WECOM_TIMEOUT_MS | No | 10000 | Request timeout (ms) |
Generated Mar 1, 2026
Send real-time alerts from CI/CD pipelines, server monitoring, or deployment failures directly to WeCom group chats. Enables immediate team awareness and rapid incident response by integrating with tools like Jenkins, Prometheus, or custom scripts.
Notify support teams about new tickets, escalations, or urgent customer inquiries via WeCom messages. Helps prioritize responses and coordinate efforts by integrating with ticketing systems like Zendesk or Jira Service Management.
Automatically distribute new sales leads from CRM or marketing platforms to sales representatives in WeCom. Ensures timely follow-up by sending lead details and assignment alerts directly to team chats.
Send daily or weekly financial summaries, such as revenue updates, expense reports, or budget alerts, to finance teams via WeCom markdown messages. Integrates with accounting software or custom dashboards for automated reporting.
Broadcast project milestones, task completions, or deadline reminders to project teams in WeCom. Enhances collaboration by syncing with project management tools like Asana, Trello, or Monday.com.
Offer this skill as part of a larger SaaS platform that integrates WeCom with other business tools like CRM, ERP, or analytics dashboards. Charge subscription fees based on usage tiers or number of integrations enabled.
Provide bespoke automation services to businesses by deploying and customizing this skill for specific workflows, such as alert systems or data reporting. Charge one-time setup fees and ongoing maintenance contracts.
Distribute this skill as a free open-source tool to attract developers, then monetize through premium features like advanced analytics, priority support, or enterprise-grade security. Upsell to larger organizations.
💬 Integration Tip
Ensure the WECOM_WEBHOOK_URL environment variable is securely set and test with simple messages before integrating into production workflows to avoid disruptions.
iMessage/SMS CLI for listing chats, history, watch, and sending.
Use when you need to control Discord from Clawdbot via the discord tool: send messages, react, post or upload stickers, upload emojis, run polls, manage threads/pins/search, fetch permissions or member/role/channel info, or handle moderation actions in Discord DMs or channels.
Use when you need to control Slack from Clawdbot via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).
Build or update the BlueBubbles external channel plugin for Clawdbot (extension package, REST send/probe, webhook inbound).
OpenClaw skill for designing Telegram Bot API workflows and command-driven conversations using direct HTTPS requests (no SDKs).