An MCP server application that sends various types of messages to the WeCom group robot. To install mcp-wecombot-server for Claude Desktop automatically via Smithery: Send a text message to WeCom group - sendmarkdown Send a markdown message to WeCom group - sendimage Send an image message to WeCom group Send a news message to WeCom group,a news include title,description,url,picurl - sendtemplateca
Add this skill
npx mdskills install gotoolkits/mcp-wecombot-serverProvides clear WeCom bot integration with multiple message types and good configuration docs
1## 🚀 mcp-wecombot-server2[](https://smithery.ai/server/@gotoolkits/mcp-wecombot-server)34An MCP server application that sends various types of messages to the WeCom group robot.56### Installation78### Installing via Smithery910To install mcp-wecombot-server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@gotoolkits/mcp-wecombot-server):1112```bash13npx -y @smithery/cli install @gotoolkits/mcp-wecombot-server --client claude-desktop14```1516### Manual Installation17```sh18# clone the repo and build19$ git clone https://github.com/gotoolkits/mcp-wecombot-server.git20$ cd mcp-wecombot-server && make build21$ sudo ln -s $PWD/dist/mcp-wecombot-server_xxx_xxxx /usr/local/bin/mcp-wecombot-server2223# "$PWD/dist/mcp-wecombot-server_xxx_xxxx" replace with the actual binary file name2425#You can also download and use the pre-compiled release binary package.26```2728### Configuration2930```json31{32 "mcpServers": {33 "mcp-wecombot-server": {34 "command": "mcp-wecombot-server",35 "env": {36 "WECOM_BOT_WEBHOOK_KEY": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx"37 }38 }39 }40}41```4243### Usage4445- **send_text**4647Send a text message to WeCom group4849- **send_markdown**5051Send a markdown message to WeCom group5253- **send_image**5455Send an image message to WeCom group5657- **send_news**5859Send a news message to WeCom group,a news include title,description,url,picurl6061- **send_template_card**6263Send a template card message to WeCom group6465- **upload_file**6667Upload a file to WeCom6869### Samples7071```prompt7273> prompt: 给我在WeCom发送一条文本消息,消息内容为:这是一条测试消息74> prompt: 给我在WeCom发送一条markdown消息,消息内容为:# 这是一条测试 Markdown 消息75> prompt: 给我在WeCom发送一条图文消息,图文标题为:这是一条图文消息,图文描述为:这是一条图文消息,图文链接为:https://github.com/gotoolkits,图文图片为:https://img-blog.csdnimg.cn/fcc22710385e4edabccf2451d5f64a99.jpeg7677> Send me a text message on WeCom with the content: This is a test message.78> Send me a Markdown message on WeCom with the content: # This is a test Markdown message79> Send me a graphic message on WeCom with the title: This is a graphic message, the description: This is a graphic message, the link: https://github.com/gotoolkits, and the image: https://img-blog.csdnimg.cn/fcc22710385e4edabccf2451d5f64a99.jpeg808182```8384### WeCom Robot8586WeCom group robot configuration guide can be referred to:87https://developer.work.weixin.qq.com/document/path/917708889> WECOM_BOT_WEBHOOK_KEY is the robot webhook key<br>For example:90> https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=693axxx6-7aoc-4bc4-97a0-0ec2sifa5aaa <br>91> “693axxx6-7aoc-4bc4-97a0-0ec2sifa5aaa” is your own WECOM_BOT_WEBHOOK_KEY92
Full transparency — inspect the skill content before installing.