drio
Open app

mcp-dingding-bot

Source

MCP Server for send text/markdown message via dingding (aka dingtalk) group custom robot

Catalog onlyCatalog onlySTDIO

Overview

MCP DingDing Bot is a server application that allows users to send text and markdown messages via the DingDing (Dingtalk) group custom robot API.

To use the MCP DingDing Bot, you need to set up a DingDing group chat bot, obtain the webhook URL and secret, and configure the bot with your access token. You can then use the provided commands to send messages to your DingDing group.

  • Send plain text messages to DingDing groups. - Send markdown formatted messages to DingDing groups. - Option to notify all group members with @all.
  1. Sending automated notifications to team members in a DingDing group.
  2. Sharing updates or announcements in markdown format for better readability.
  3. Integrating with other applications to send alerts or messages directly to DingDing.

Add to your AI client

Use these steps to connect mcp-dingding-bot 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": {
    "mcp-dingding-bot-shawyeok": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dingding-bot-shawyeok"
      ]
    }
  }
}

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": {
    "mcp-dingding-bot-shawyeok": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dingding-bot-shawyeok"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-dingding-bot-shawyeok": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dingding-bot-shawyeok"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-dingding-bot-shawyeok": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dingding-bot-shawyeok"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-dingding-bot-shawyeok": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dingding-bot-shawyeok"
      ]
    }
  }
}

FAQ

How do I create a DingDing group chat bot?

Go to group settings > Group Bot Management, create a custom bot, and save the webhook URL and secret.

Is the access token required?

Yes, the access token is required to authenticate your bot with DingDing.

Can I use markdown formatting in messages?

Yes, you can send messages in markdown format using the appropriate command.