@intangle/mcp-server 2.3.6 → 2.3.8
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 -2
- package/dist/tool-definitions.js +23 -19
- package/index.ts +1 -2
- package/package.json +1 -1
- package/tool-definitions.ts +23 -21
package/dist/index.js
CHANGED
|
@@ -137,9 +137,8 @@ try {
|
|
|
137
137
|
if (!space_id) {
|
|
138
138
|
throw new Error("space_id is required. Use list_spaces to see available options.");
|
|
139
139
|
}
|
|
140
|
-
return makeApiCall("search
|
|
140
|
+
return makeApiCall("search", {
|
|
141
141
|
space_id,
|
|
142
|
-
space_ids: [space_id], // Convert to array for backend compatibility
|
|
143
142
|
query,
|
|
144
143
|
topics,
|
|
145
144
|
});
|
package/dist/tool-definitions.js
CHANGED
|
@@ -297,23 +297,27 @@ export const TOOLS = [
|
|
|
297
297
|
required: ["space_id"]
|
|
298
298
|
}
|
|
299
299
|
},
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
}
|
|
300
|
+
// DISABLED: memory_action tool is broken and causing errors.
|
|
301
|
+
// Pending OHM protocol fix. Use update_space, search, or fetch_items instead.
|
|
302
|
+
// {
|
|
303
|
+
// name: "memory_action",
|
|
304
|
+
// title: "Memory Action (OHM Protocol)",
|
|
305
|
+
// description:
|
|
306
|
+
// "Perform memory operations using natural language. Add, update, delete items, fetch details, view topics. The system parses your intent into structured actions. Do NOT use for search - context comes from background activation.",
|
|
307
|
+
// inputSchema: {
|
|
308
|
+
// type: "object",
|
|
309
|
+
// properties: {
|
|
310
|
+
// space_id: {
|
|
311
|
+
// type: "string",
|
|
312
|
+
// description: "The space to operate in"
|
|
313
|
+
// },
|
|
314
|
+
// intent: {
|
|
315
|
+
// type: "string",
|
|
316
|
+
// description:
|
|
317
|
+
// "Natural language description of the memory operation (e.g., 'add a task to fix the login bug', 'mark task_123 as completed', 'delete mem_456')"
|
|
318
|
+
// }
|
|
319
|
+
// },
|
|
320
|
+
// required: ["space_id", "intent"]
|
|
321
|
+
// }
|
|
322
|
+
// }
|
|
319
323
|
];
|
package/index.ts
CHANGED
package/package.json
CHANGED
package/tool-definitions.ts
CHANGED
|
@@ -335,25 +335,27 @@ export const TOOLS = [
|
|
|
335
335
|
required: ["space_id"]
|
|
336
336
|
}
|
|
337
337
|
},
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
338
|
+
// DISABLED: memory_action tool is broken and causing errors.
|
|
339
|
+
// Pending OHM protocol fix. Use update_space, search, or fetch_items instead.
|
|
340
|
+
// {
|
|
341
|
+
// name: "memory_action",
|
|
342
|
+
// title: "Memory Action (OHM Protocol)",
|
|
343
|
+
// description:
|
|
344
|
+
// "Perform memory operations using natural language. Add, update, delete items, fetch details, view topics. The system parses your intent into structured actions. Do NOT use for search - context comes from background activation.",
|
|
345
|
+
// inputSchema: {
|
|
346
|
+
// type: "object",
|
|
347
|
+
// properties: {
|
|
348
|
+
// space_id: {
|
|
349
|
+
// type: "string",
|
|
350
|
+
// description: "The space to operate in"
|
|
351
|
+
// },
|
|
352
|
+
// intent: {
|
|
353
|
+
// type: "string",
|
|
354
|
+
// description:
|
|
355
|
+
// "Natural language description of the memory operation (e.g., 'add a task to fix the login bug', 'mark task_123 as completed', 'delete mem_456')"
|
|
356
|
+
// }
|
|
357
|
+
// },
|
|
358
|
+
// required: ["space_id", "intent"]
|
|
359
|
+
// }
|
|
360
|
+
// }
|
|
359
361
|
]
|