@intangle/mcp-server 2.3.3 → 2.3.5

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,
@@ -188,6 +188,24 @@ export const TOOLS = [
188
188
  },
189
189
  description: "Optional: Array of subtasks for task items. Each subtask becomes a linked child task.",
190
190
  },
191
+ parent_id: {
192
+ type: "string",
193
+ description: "Optional: Parent item ID (mem_*, task_*, or skill_*). Links this item as a child of the parent.",
194
+ },
195
+ assignee_id: {
196
+ type: "string",
197
+ description: "Optional: Assignee ID (user or agent ID) for task assignment on creation.",
198
+ },
199
+ assignee_type: {
200
+ type: "string",
201
+ enum: ["agent", "user"],
202
+ description: "Optional: Type of assignee (agent or user). Required if assignee_id provided.",
203
+ },
204
+ linkedItemIds: {
205
+ type: "array",
206
+ items: { type: "string" },
207
+ description: "Optional: Array of item IDs to create explicit LINKED_TO relationships with.",
208
+ },
191
209
  },
192
210
  required: ["title", "content"],
193
211
  },
@@ -242,6 +260,15 @@ export const TOOLS = [
242
260
  enum: ["agent", "user"],
243
261
  description: "Type of assignee (optional, tasks only)",
244
262
  },
263
+ parent_id: {
264
+ type: "string",
265
+ description: "Optional: Parent item ID (mem_*, task_*, or skill_*). Links this item as a child of the parent.",
266
+ },
267
+ linkedItemIds: {
268
+ type: "array",
269
+ items: { type: "string" },
270
+ description: "Optional: Array of item IDs to create explicit LINKED_TO relationships with.",
271
+ },
245
272
  },
246
273
  required: ["id"],
247
274
  },
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.3",
3
+ "version": "2.3.5",
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",
@@ -209,6 +209,24 @@ export const TOOLS = [
209
209
  },
210
210
  description: "Optional: Array of subtasks for task items. Each subtask becomes a linked child task.",
211
211
  },
212
+ parent_id: {
213
+ type: "string",
214
+ description: "Optional: Parent item ID (mem_*, task_*, or skill_*). Links this item as a child of the parent.",
215
+ },
216
+ assignee_id: {
217
+ type: "string",
218
+ description: "Optional: Assignee ID (user or agent ID) for task assignment on creation.",
219
+ },
220
+ assignee_type: {
221
+ type: "string",
222
+ enum: ["agent", "user"],
223
+ description: "Optional: Type of assignee (agent or user). Required if assignee_id provided.",
224
+ },
225
+ linkedItemIds: {
226
+ type: "array",
227
+ items: { type: "string" },
228
+ description: "Optional: Array of item IDs to create explicit LINKED_TO relationships with.",
229
+ },
212
230
  },
213
231
  required: ["title", "content"],
214
232
  },
@@ -263,6 +281,15 @@ export const TOOLS = [
263
281
  enum: ["agent", "user"],
264
282
  description: "Type of assignee (optional, tasks only)",
265
283
  },
284
+ parent_id: {
285
+ type: "string",
286
+ description: "Optional: Parent item ID (mem_*, task_*, or skill_*). Links this item as a child of the parent.",
287
+ },
288
+ linkedItemIds: {
289
+ type: "array",
290
+ items: { type: "string" },
291
+ description: "Optional: Array of item IDs to create explicit LINKED_TO relationships with.",
292
+ },
266
293
  },
267
294
  required: ["id"],
268
295
  },