@intangle/mcp-server 2.1.3 → 2.1.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 -1
- package/dist/tool-definitions.js +1 -1
- package/index.ts +2 -2
- package/package.json +1 -1
- package/tool-definitions.ts +1 -1
package/dist/index.js
CHANGED
package/dist/tool-definitions.js
CHANGED
package/index.ts
CHANGED
|
@@ -27,7 +27,7 @@ const DEBUG_LOG = "/tmp/intangle-mcp-debug.log";
|
|
|
27
27
|
function log(msg: string) {
|
|
28
28
|
try {
|
|
29
29
|
appendFileSync(DEBUG_LOG, `${new Date().toISOString()}: ${msg}\n`);
|
|
30
|
-
} catch (e) {}
|
|
30
|
+
} catch (e) { }
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
log("--- Server Starting ---");
|
|
@@ -216,7 +216,7 @@ try {
|
|
|
216
216
|
case "search":
|
|
217
217
|
result = await handleSearchMemories(args);
|
|
218
218
|
break;
|
|
219
|
-
case "
|
|
219
|
+
case "fetch_items":
|
|
220
220
|
result = await handleFetch(args);
|
|
221
221
|
break;
|
|
222
222
|
case "view_spaces":
|
package/package.json
CHANGED