dingtalk_send_text
Send text messages to DingTalk groups directly from Claude Code, enabling task alerts and notifications. Supports optional @all mentions for group-wide alerts.
Instructions
Send a text message to DingTalk group
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| atAll | No | Whether to @all members | |
| content | Yes | Text content to send |
Input Schema (JSON Schema)
{
"properties": {
"atAll": {
"default": false,
"description": "Whether to @all members",
"type": "boolean"
},
"content": {
"description": "Text content to send",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}