@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 +2 -2
- package/index.ts +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -104,8 +104,8 @@ const TOOLS = [
|
|
|
104
104
|
},
|
|
105
105
|
depth: {
|
|
106
106
|
type: "string",
|
|
107
|
-
enum: ["quick", "balanced", "
|
|
108
|
-
description: "Search depth: 'quick' = fast list retrieval, 'balanced' = smart routing with AI (default), '
|
|
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", "
|
|
139
|
+
enum: ["quick", "balanced", "deep"],
|
|
140
140
|
description:
|
|
141
|
-
"Search depth: 'quick' = fast list retrieval, 'balanced' = smart routing with AI (default), '
|
|
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" | "
|
|
485
|
+
depth?: "quick" | "balanced" | "deep";
|
|
486
486
|
return_format?: "full" | "summary" | "ids_only";
|
|
487
487
|
};
|
|
488
488
|
|