@intangle/mcp-server 2.3.2 → 2.3.3

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.
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "description": "Model Context Protocol server for Intangle - AI context that persists across conversations",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -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
  },