@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 CHANGED
@@ -189,6 +189,7 @@ try {
189
189
  // Pass through to API with new structure
190
190
  return makeApiCall("update-memory", {
191
191
  space_id: args.space_id,
192
+ project_id: args.project_id,
192
193
  add: args.add,
193
194
  update: args.update,
194
195
  delete: args.delete,
@@ -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
@@ -262,6 +262,7 @@ try {
262
262
  // Pass through to API with new structure
263
263
  return makeApiCall("update-memory", {
264
264
  space_id: args.space_id,
265
+ project_id: args.project_id,
265
266
  add: args.add,
266
267
  update: args.update,
267
268
  delete: args.delete,
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.4",
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
  },