dingtalk-mcp 1.1.16 → 1.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,7 +9,9 @@ server:
9
9
  name: x-acs-dingtalk-access-token
10
10
  tools:
11
11
  - name: sendDINGMessageByRobot
12
- description: 机器人发送DING消息
12
+ description: >
13
+ 使用机器人发送 DING 消息(高优先级提醒)。只有当用户明确提到“发 DING”、“DING 一下”、“钉一下”或“紧急提醒”等关键词时,才调用此工具。
14
+ DING 消息通常带有强提醒,不同于普通消息。未明确要求时,请勿调用。
13
15
  args:
14
16
  - name: robotCode
15
17
  description: 机器人Code
@@ -44,7 +46,7 @@ tools:
44
46
  responseTemplate: {}
45
47
 
46
48
  - name: recallDINGMessage
47
- description: 撤回机器人发送DING的消息
49
+ description: 撤回机器人发送的DING消息
48
50
  args:
49
51
  - name: robotCode
50
52
  description: 机器人Code
@@ -66,8 +68,10 @@ tools:
66
68
  id: DingTalkAuth
67
69
  responseTemplate: { }
68
70
 
69
- - name: sendGroupMessageByRobot
70
- description: 机器人发送群消息
71
+ - name: sendMessageToGroupByRobot
72
+ description: >
73
+ 向群聊发送普通消息(非 DING、非待办)。
74
+ 例如,当用户说“在群里说一下”、“通知到XX群”但未提及“DING”或“钉一下”时使用。
71
75
  args:
72
76
  - name: robotCode
73
77
  description: 机器人Code
@@ -145,8 +149,11 @@ tools:
145
149
  id: DingTalkAuth
146
150
  responseTemplate: { }
147
151
 
148
- - name: batchSendUserMessageByRobot
149
- description: 机器人批量给人发送消息
152
+ - name: batchSendMessageToUsersByRobot
153
+ description: >
154
+ 使用机器人向一个或多个个人用户发送消息。适用于一对一单聊场景。
155
+ 当用户明确表示要给一个或多个个人发送消息(非群聊)时,使用此工具。
156
+ 注意:此工具仅用于单聊,不能用于群组。如果目标是群,请使用 sendMessageToGroupByCustomRobot 或者 sendMessageToGroupByRobot。
150
157
  args:
151
158
  - name: robotCode
152
159
  description: 机器人Code
@@ -194,7 +201,7 @@ tools:
194
201
  id: DingTalkAuth
195
202
  responseTemplate: { }
196
203
 
197
- - name: batchRecallUserMessageByRobot
204
+ - name: batchRecallToUsersMessageByRobot
198
205
  description: 批量撤回机器人给人发送的消息
199
206
  args:
200
207
  - name: robotCode
@@ -219,8 +226,12 @@ tools:
219
226
  security:
220
227
  id: DingTalkAuth
221
228
  responseTemplate: { }
222
- - name: sendMessageByCustomRobot
223
- description: 群自定义机器人发送群消息
229
+ - name: sendMessageToGroupByCustomRobot
230
+ description: >
231
+ 使用群自定义机器人向指定群发送消息。
232
+ 仅在用户明确要求“使用自定义机器人”或“通过自定义机器人发消息”时调用此工具。
233
+ 注意:此工具只能用于向群(group)发送消息,不能用于单聊或个人用户。
234
+ 如果用户未明确提及自定义机器人,请不要调用此工具。
224
235
  args:
225
236
  - name: msgtype
226
237
  description: 消息类型,默认为markdown
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dingtalk-mcp",
3
- "version": "1.1.16",
3
+ "version": "1.1.17",
4
4
  "description": "DingTalk MCP Server - A TypeScript-based MCP server for DingTalk integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",