dingtalk_configure
Set up DingTalk webhook configurations to enable Claude Code task alerts and notifications. Define URL, optional secret, and keywords for secure group messaging.
Instructions
Configure DingTalk webhook settings
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | No | Optional keywords for security validation | |
| secret | No | Optional secret for signature verification | |
| webhook | Yes | DingTalk webhook URL with access token |
Input Schema (JSON Schema)
{
"properties": {
"keywords": {
"description": "Optional keywords for security validation",
"items": {
"type": "string"
},
"type": "array"
},
"secret": {
"description": "Optional secret for signature verification",
"type": "string"
},
"webhook": {
"description": "DingTalk webhook URL with access token",
"type": "string"
}
},
"required": [
"webhook"
],
"type": "object"
}