dingtalk_send_link
Send link messages to DingTalk groups with a title, description, and target URL, optionally including an image. Integrates Claude Code with DingTalk for task completion alerts and notifications.
Instructions
Send a link message to DingTalk group
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| messageUrl | Yes | Target URL | |
| picUrl | No | Optional image URL | |
| text | Yes | Link description text | |
| title | Yes | Link title |
Input Schema (JSON Schema)
{
"properties": {
"messageUrl": {
"description": "Target URL",
"type": "string"
},
"picUrl": {
"description": "Optional image URL",
"type": "string"
},
"text": {
"description": "Link description text",
"type": "string"
},
"title": {
"description": "Link title",
"type": "string"
}
},
"required": [
"title",
"text",
"messageUrl"
],
"type": "object"
}