Navigation
MCP DingDing Bot: Instant Alerts & Streamlined Workflows - MCP Implementation

MCP DingDing Bot: Instant Alerts & Streamlined Workflows

MCP DingDing Bot: Effortlessly send text/Markdown messages via DingTalk custom robots. Streamline workflows, instant alerts—all in one enterprise-grade messaging powerhouse!

Communication
4.0(199 reviews)
298 saves
139 comments

99% of users reported increased productivity after just one week

About MCP DingDing Bot

What is MCP DingDing Bot: Instant Alerts & Streamlined Workflows?

MCP DingDing Bot is a lightweight server designed to integrate with DingDing (Dingtalk) messaging platforms. Its core purpose is to automate notifications and simplify team communication by sending structured messages, enabling real-time alerts and workflow coordination. Think of it as a bridge between your apps and DingDing groups—perfect for scenarios like emergency updates, task reminders, or system status checks.

How to Use MCP DingDing Bot: Instant Alerts & Streamlined Workflows?

Getting started is straightforward. First, create a DingDing bot by following these steps:

  1. Visit your DingDing group settings and navigate to "Group Bot Management."
  2. Set up a custom bot and retrieve its access token and secret (the secret is optional but recommended for security).

Next, configure the MCP server in your environment. For example, with claude_desktop_config.json, add the bot details under mcpServers like this:

// Example configuration snippet
{
  "mcpServers": {
    "dingding": {
      "command": "npx",
      "args": ["mcp-dingding-bot", "-y"],
      "env": {
        "DINGTALK_BOT_ACCESS_TOKEN": "your_token_here",
        "DINGTALK_BOT_SECRET": "your_secret_here"
      }
    }
  }
}

Once set up, you can trigger messages programmatically using the provided APIs.

MCP DingDing Bot Features

Key Features of MCP DingDing Bot

  • Instant alerts: Send urgent messages with @all to ensure visibility.
  • Rich formatting: Support for Markdown allows clear presentation of data like tables or code snippets.
  • Error handling: Built-in retries and logging to avoid missed notifications.

For example, a developer might use it to notify teams of deployment failures, while a project manager could automate sprint progress updates.

Common Use Cases

Here’s how teams leverage MCP DingDing Bot:

  • Real-time monitoring: Notify when server uptime drops below 95%.
  • Automated workflows: Send task reminders or approval requests to specific group members.
  • CI/CD pipelines: Integrate with Jenkins/GitLab to broadcast build statuses or deployment links.

MCP DingDing Bot FAQ

FAQ: Troubleshooting and Best Practices

Q: What if I forget my access token?
Delete the old bot and recreate it—tokens are easy to regenerate but not recoverable.
Q: When should I use the secret?
Enable it for production bots to prevent unauthorized message spoofing. It’s optional for testing.
Q: How do I debug connection issues?
Check the server logs first. If auth fails, verify token/secret formatting and ensure the bot exists in the target group.

Need more help? Visit the docs for advanced configurations like message templates or rate limiting.

Content

MCP DingDing Bot

MCP Server for the DingDing Bot API, enabling DingDing / Dingtalk message notifications and interactions.

Features

  • Message Notifications : Send various types of DingDing messages (text / markdown)

Tools

  1. send_text_message
* Send a plain text message to a dingding group
* Inputs: 
  * `content` (string): Text content
  * `atAll` (optional boolean): Whether to @ all members
  1. send_markdown_message
* Send a markdown formatted message to a dingding group
* Inputs: 
  * `title` (string): Message title
  * `text` (string): Markdown content
  * `atAll` (optional boolean): Whether to @ all members

Setup

DingDing Bot Token

  1. Create a DingDing group chat bot:
    * Go to group settings > Group Bot Management
    * Create a custom bot
    * Save the webhook URL and secret

Usage with Claude Desktop

Add the following to your claude_desktop_config.json:

NPX

{
  "mcpServers": {
    "gitlab": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-dingding-bot"
      ],
      "env": {
        "DINGTALK_BOT_ACCESS_TOKEN": "<YOUR_ACCESS_TOKEN>",
        "DINGTALK_BOT_SECRET": "<YOUR_SECRET>" // Optional, for robots with signature verification enabled
      }
    }
  }
}

Environment Variables

  • DINGTALK_BOT_ACCESS_TOKEN: Your dingding group robot access token (required)
  • DINGTALK_BOT_SECRET: Your dingding group robot signature secret (optional)

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

Related MCP Servers & Clients