Navigation
Mcp Wecombot Server: Real-Time Alerts & Team Collaboration - MCP Implementation

Mcp Wecombot Server: Real-Time Alerts & Team Collaboration

Mcp Wecombot Server seamlessly bridges MCP systems with WeCom robots, automating real-time alerts, updates, and reports to drive team collaboration and operational agility.

Communication
4.3(119 reviews)
178 saves
83 comments

This tool saved users approximately 9011 hours last month!

About Mcp Wecombot Server

What is Mcp Wecombot Server: Real-Time Alerts & Team Collaboration?

Mcp Wecombot Server is a middleware solution designed to bridge communication gaps in distributed teams by enabling seamless integration with WeChat Work (Enterprise WeChat) messaging infrastructure. It serves as a centralized platform for sending real-time alerts, project updates, and collaboration notifications directly to team channels. By supporting multiple message formats and automation workflows, it empowers teams to streamline operations and enhance responsiveness.

How to Use Mcp Wecombot Server

Installation

Deploy via Smithery CLI with:

mcp install wecombot

Or manually by cloning the repository from GitHub and configuring dependencies.

Configuration

Create a .env file with:

WECOM_WEBHOOK="your-enterprise-wechat-token"

Define message templates in /config/messages.yml for structured outputs.

Message Dispatch

Send alerts using:

mcp wecombot send --type [text|markdown|file] --content "Critical server outage detected"

Automate deployments with cron-triggered scripts for recurring reports.

Mcp Wecombot Server Features

Key Features

  • Multi-Format Messaging: Text, markdown, images, files, and custom card templates
  • Real-Time Uptime Alerts: Instant notifications for service disruptions
  • Role-Based Segmentation: Target specific teams or channels using @mentions
  • CI/CD Integration: Pipeline status updates directly to dev channels
  • Custom Metrics Dashboards: Embed charts via markdown cards for visual reporting

Use Cases

DevOps Monitoring

Automate deployment alerts and error tracking with:

mcp wecombot send --type markdown --file "ci-report.md"

Marketing Campaign Tracking

Share campaign performance dashboards using:

mcp wecombot send --type card --template "performance_kpi"

Support Ticket Escalation

Trigger urgent alerts with priority tags:

mcp wecombot send --severity critical --content "User data breach detected"

Mcp Wecombot Server FAQ

FAQ

How do I get my WeChat Work webhook token?

Generate via the WeChat Work API dashboard.

Can I schedule recurring messages?

Yes, use cron jobs with the mcp wecombot schedule command.

What message formats are supported?

Text, markdown, image uploads, file attachments, and custom card templates.

How do I troubleshoot failed sends?

Check the /var/log/wecombot directory for error logs and validate webhook permissions.

Content

🚀 mcp-wecombot-server

smithery badge

An MCP server application that sends various types of messages to the WeCom group robot.

Installation

Installing via Smithery

To install mcp-wecombot-server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @gotoolkits/mcp-wecombot-server --client claude-desktop

Manual Installation

# clone the repo and build
$ git clone https://github.com/gotoolkits/mcp-wecombot-server.git
$ cd mcp-wecombot-server && make build
$ sudo ln -s $PWD/dist/mcp-wecombot-server_xxx_xxxx /usr/local/bin/mcp-wecombot-server

# "$PWD/dist/mcp-wecombot-server_xxx_xxxx" replace with the actual binary file name

#You can also download and use the pre-compiled release binary package.

Configuration

{
  "mcpServers": {
    "mcp-wecombot-server": {
      "command": "mcp-wecombot-server",
      "env": {
        "WECOM_BOT_WEBHOOK_KEY": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx"
      }
    }
  }
}

Usage

  • send_text

Send a text message to WeCom group

  • send_markdown

Send a markdown message to WeCom group

  • send_image

Send an image message to WeCom group

  • send_news

Send a news message to WeCom group,a news include title,description,url,picurl

  • send_template_card

Send a template card message to WeCom group

  • upload_file

Upload a file to WeCom

Samples

> prompt: 给我在WeCom发送一条文本消息,消息内容为:这是一条测试消息
> prompt: 给我在WeCom发送一条markdown消息,消息内容为:# 这是一条测试 Markdown 消息
> prompt: 给我在WeCom发送一条图文消息,图文标题为:这是一条图文消息,图文描述为:这是一条图文消息,图文链接为:https://github.com/gotoolkits,图文图片为:https://img-blog.csdnimg.cn/fcc22710385e4edabccf2451d5f64a99.jpeg

> Send me a text message on WeCom with the content: This is a test message.
> Send me a Markdown message on WeCom with the content: # This is a test Markdown message
> 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.jpeg

WeCom Robot

WeCom group robot configuration guide can be referred to: https://developer.work.weixin.qq.com/document/path/91770

WECOM_BOT_WEBHOOK_KEY is the robot webhook key
For example: https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=693axxx6-7aoc-4bc4-97a0-0ec2sifa5aaa
“693axxx6-7aoc-4bc4-97a0-0ec2sifa5aaa” is your own WECOM_BOT_WEBHOOK_KEY

Related MCP Servers & Clients