@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 CHANGED
@@ -158,7 +158,7 @@ try {
158
158
  case "search":
159
159
  result = await handleSearchMemories(args);
160
160
  break;
161
- case "fetch":
161
+ case "fetch_items":
162
162
  result = await handleFetch(args);
163
163
  break;
164
164
  case "view_spaces":
@@ -25,7 +25,7 @@ export const TOOLS = [
25
25
  },
26
26
  },
27
27
  {
28
- name: "fetch",
28
+ name: "fetch_items",
29
29
  title: "Fetch Items by ID",
30
30
  description: "Retrieve full content for specific items by ID. Accepts single ID or array of IDs.",
31
31
  inputSchema: {
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 "fetch":
219
+ case "fetch_items":
220
220
  result = await handleFetch(args);
221
221
  break;
222
222
  case "view_spaces":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "Model Context Protocol server for Intangle - AI memory that persists across conversations",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -27,7 +27,7 @@ export const TOOLS = [
27
27
  },
28
28
  },
29
29
  {
30
- name: "fetch",
30
+ name: "fetch_items",
31
31
  title: "Fetch Items by ID",
32
32
  description:
33
33
  "Retrieve full content for specific items by ID. Accepts single ID or array of IDs.",