dingtalk_send_markdown
Send markdown-formatted messages to DingTalk groups, including optional @all mentions, directly from Claude Code for task notifications and updates.
Instructions
Send a markdown message to DingTalk group
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| atAll | No | Whether to @all members | |
| text | Yes | Markdown formatted text content | |
| title | Yes | Message title |
Input Schema (JSON Schema)
{
"properties": {
"atAll": {
"default": false,
"description": "Whether to @all members",
"type": "boolean"
},
"text": {
"description": "Markdown formatted text content",
"type": "string"
},
"title": {
"description": "Message title",
"type": "string"
}
},
"required": [
"title",
"text"
],
"type": "object"
}