@intangle/mcp-server 2.3.2 → 2.3.4
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.
- package/dist/index.js +1 -0
- package/dist/tool-definitions.js +10 -1
- package/index.ts +1 -0
- package/package.json +1 -1
- package/tool-definitions.ts +10 -1
package/dist/index.js
CHANGED
package/dist/tool-definitions.js
CHANGED
|
@@ -233,10 +233,19 @@ export const TOOLS = [
|
|
|
233
233
|
enum: ["urgent", "high", "medium", "low"],
|
|
234
234
|
description: "New priority (optional, tasks only)",
|
|
235
235
|
},
|
|
236
|
+
assignee_id: {
|
|
237
|
+
type: "string",
|
|
238
|
+
description: "Assignee ID (user or agent ID). Set to null to unassign. (optional, tasks only)",
|
|
239
|
+
},
|
|
240
|
+
assignee_type: {
|
|
241
|
+
type: "string",
|
|
242
|
+
enum: ["agent", "user"],
|
|
243
|
+
description: "Type of assignee (optional, tasks only)",
|
|
244
|
+
},
|
|
236
245
|
},
|
|
237
246
|
required: ["id"],
|
|
238
247
|
},
|
|
239
|
-
description: "Array of items to update. Type automatically detected from ID prefix (mem_* = context, task_* = task, skill_* = skill). For context/skill items, status/priority are ignored.",
|
|
248
|
+
description: "Array of items to update. Type automatically detected from ID prefix (mem_* = context, task_* = task, skill_* = skill). For context/skill items, status/priority/assignee are ignored.",
|
|
240
249
|
},
|
|
241
250
|
},
|
|
242
251
|
},
|
package/index.ts
CHANGED
package/package.json
CHANGED
package/tool-definitions.ts
CHANGED
|
@@ -254,10 +254,19 @@ export const TOOLS = [
|
|
|
254
254
|
enum: ["urgent", "high", "medium", "low"],
|
|
255
255
|
description: "New priority (optional, tasks only)",
|
|
256
256
|
},
|
|
257
|
+
assignee_id: {
|
|
258
|
+
type: "string",
|
|
259
|
+
description: "Assignee ID (user or agent ID). Set to null to unassign. (optional, tasks only)",
|
|
260
|
+
},
|
|
261
|
+
assignee_type: {
|
|
262
|
+
type: "string",
|
|
263
|
+
enum: ["agent", "user"],
|
|
264
|
+
description: "Type of assignee (optional, tasks only)",
|
|
265
|
+
},
|
|
257
266
|
},
|
|
258
267
|
required: ["id"],
|
|
259
268
|
},
|
|
260
|
-
description: "Array of items to update. Type automatically detected from ID prefix (mem_* = context, task_* = task, skill_* = skill). For context/skill items, status/priority are ignored.",
|
|
269
|
+
description: "Array of items to update. Type automatically detected from ID prefix (mem_* = context, task_* = task, skill_* = skill). For context/skill items, status/priority/assignee are ignored.",
|
|
261
270
|
},
|
|
262
271
|
},
|
|
263
272
|
},
|