@intangle/mcp-server 1.2.0 → 1.2.1

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
@@ -104,8 +104,8 @@ const TOOLS = [
104
104
  },
105
105
  depth: {
106
106
  type: "string",
107
- enum: ["quick", "balanced", "thorough"],
108
- description: "Search depth: 'quick' = fast list retrieval, 'balanced' = smart routing with AI (default), 'thorough' = full hybrid search with attention agent",
107
+ enum: ["quick", "balanced", "deep"],
108
+ description: "Search depth: 'quick' = fast list retrieval, 'balanced' = smart routing with AI (default), 'deep' = full hybrid search with attention agent",
109
109
  default: "balanced",
110
110
  },
111
111
  return_format: {
package/index.ts CHANGED
@@ -136,9 +136,9 @@ const TOOLS = [
136
136
  },
137
137
  depth: {
138
138
  type: "string",
139
- enum: ["quick", "balanced", "thorough"],
139
+ enum: ["quick", "balanced", "deep"],
140
140
  description:
141
- "Search depth: 'quick' = fast list retrieval, 'balanced' = smart routing with AI (default), 'thorough' = full hybrid search with attention agent",
141
+ "Search depth: 'quick' = fast list retrieval, 'balanced' = smart routing with AI (default), 'deep' = full hybrid search with attention agent",
142
142
  default: "balanced",
143
143
  },
144
144
  return_format: {
@@ -482,7 +482,7 @@ async function handleSearchMemories(args: any) {
482
482
  query: string;
483
483
  topics?: string[];
484
484
  max_results?: number;
485
- depth?: "quick" | "balanced" | "thorough";
485
+ depth?: "quick" | "balanced" | "deep";
486
486
  return_format?: "full" | "summary" | "ids_only";
487
487
  };
488
488
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
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",