drio
Open app

WeCom Bot MCP Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

WeCom Bot MCP Server is a bot server for WeCom (WeChat Work) implemented using the FastMCP framework, designed to facilitate message sending via webhook.

To use the WeCom Bot MCP Server, install it via pip or poetry, set the environment variable for your WeCom bot webhook URL, and run the server. You can also send messages programmatically using the provided functions.

  • Built on FastMCP framework - Supports Markdown message format - Asynchronous message sending - Message history tracking - Complete type hints - Comprehensive unit tests
  1. Automating notifications in WeCom.
  2. Sending alerts and updates to team members.
  3. Integrating with other applications to streamline communication.

Add to your AI client

Use these steps to connect WeCom Bot MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "loonghao-wecom-bot-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-loonghao-wecom-bot-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "loonghao-wecom-bot-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-loonghao-wecom-bot-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "loonghao-wecom-bot-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-loonghao-wecom-bot-mcp-server-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "loonghao-wecom-bot-mcp-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-loonghao-wecom-bot-mcp-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "loonghao-wecom-bot-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-loonghao-wecom-bot-mcp-server-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "loonghao-wecom-bot-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-loonghao-wecom-bot-mcp-server-mcp-mirror"
      ]
    }
  }
}

FAQ

Can I use WeCom Bot MCP Server for any type of message?

Yes! It supports various message formats including Markdown.

Is WeCom Bot MCP Server free to use?

Yes! It is open-source and free to use.

What are the system requirements?

Requires Python >= 3.10 and FastMCP >= 0.4.1.