@intangle/mcp-server 1.2.3 → 1.2.5
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 -0
- package/dist/tool-definitions.js +4 -4
- package/index.ts +2 -0
- package/package.json +2 -1
- package/tool-definitions.ts +4 -4
package/dist/index.js
CHANGED
package/dist/tool-definitions.js
CHANGED
|
@@ -13,7 +13,7 @@ export const TOOLS = [
|
|
|
13
13
|
},
|
|
14
14
|
space_id: {
|
|
15
15
|
type: "string",
|
|
16
|
-
description: "REQUIRED: Space to search in (use
|
|
16
|
+
description: "REQUIRED: Space to search in (use view_spaces to see available options)",
|
|
17
17
|
},
|
|
18
18
|
topics: {
|
|
19
19
|
type: "array",
|
|
@@ -28,7 +28,7 @@ export const TOOLS = [
|
|
|
28
28
|
depth: {
|
|
29
29
|
type: "string",
|
|
30
30
|
enum: ["quick", "balanced", "deep"],
|
|
31
|
-
description: "Search depth: 'quick' =
|
|
31
|
+
description: "Search depth: 'quick' = fastest, 'balanced' = thorough (default), 'deep' = most comprehensive",
|
|
32
32
|
default: "balanced",
|
|
33
33
|
},
|
|
34
34
|
},
|
|
@@ -96,7 +96,7 @@ export const TOOLS = [
|
|
|
96
96
|
config_badges: {
|
|
97
97
|
type: "array",
|
|
98
98
|
items: { type: "string" },
|
|
99
|
-
description: "Array of keywords for memory focus in this NEW space. These keywords help steer what context gets loaded when running 'start' for this space. Examples: ['
|
|
99
|
+
description: "Array of keywords for memory focus in this NEW space. These keywords help steer what context gets loaded when running 'start' for this space. Examples: ['fitness', 'recipes', 'travel planning'], ['client work', 'meetings', 'proposals'], ['TypeScript', 'React', 'API design']. They act as search terms to prioritize relevant memories.",
|
|
100
100
|
},
|
|
101
101
|
startup_preferences: {
|
|
102
102
|
type: "string",
|
|
@@ -130,7 +130,7 @@ export const TOOLS = [
|
|
|
130
130
|
properties: {
|
|
131
131
|
space_id: {
|
|
132
132
|
type: "string",
|
|
133
|
-
description: "REQUIRED: Space to operate in (use
|
|
133
|
+
description: "REQUIRED: Space to operate in (use view_spaces to see available options)",
|
|
134
134
|
},
|
|
135
135
|
add: {
|
|
136
136
|
type: "object",
|
package/index.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intangle/mcp-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
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",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"start": "node dist/index.js",
|
|
9
9
|
"dev": "tsx watch index.ts",
|
|
10
|
+
"prebuild": "cp ../web/src/app/api/mcp-remote/tool-definitions.ts ./tool-definitions.ts",
|
|
10
11
|
"build": "tsc",
|
|
11
12
|
"lint": "biome check .",
|
|
12
13
|
"lint:fix": "biome check --fix .",
|
package/tool-definitions.ts
CHANGED
|
@@ -15,7 +15,7 @@ export const TOOLS = [
|
|
|
15
15
|
space_id: {
|
|
16
16
|
type: "string",
|
|
17
17
|
description:
|
|
18
|
-
"REQUIRED: Space to search in (use
|
|
18
|
+
"REQUIRED: Space to search in (use view_spaces to see available options)",
|
|
19
19
|
},
|
|
20
20
|
topics: {
|
|
21
21
|
type: "array",
|
|
@@ -31,7 +31,7 @@ export const TOOLS = [
|
|
|
31
31
|
type: "string",
|
|
32
32
|
enum: ["quick", "balanced", "deep"],
|
|
33
33
|
description:
|
|
34
|
-
"Search depth: 'quick' =
|
|
34
|
+
"Search depth: 'quick' = fastest, 'balanced' = thorough (default), 'deep' = most comprehensive",
|
|
35
35
|
default: "balanced",
|
|
36
36
|
},
|
|
37
37
|
},
|
|
@@ -106,7 +106,7 @@ export const TOOLS = [
|
|
|
106
106
|
type: "array",
|
|
107
107
|
items: { type: "string" },
|
|
108
108
|
description:
|
|
109
|
-
"Array of keywords for memory focus in this NEW space. These keywords help steer what context gets loaded when running 'start' for this space. Examples: ['
|
|
109
|
+
"Array of keywords for memory focus in this NEW space. These keywords help steer what context gets loaded when running 'start' for this space. Examples: ['fitness', 'recipes', 'travel planning'], ['client work', 'meetings', 'proposals'], ['TypeScript', 'React', 'API design']. They act as search terms to prioritize relevant memories.",
|
|
110
110
|
},
|
|
111
111
|
startup_preferences: {
|
|
112
112
|
type: "string",
|
|
@@ -144,7 +144,7 @@ export const TOOLS = [
|
|
|
144
144
|
space_id: {
|
|
145
145
|
type: "string",
|
|
146
146
|
description:
|
|
147
|
-
"REQUIRED: Space to operate in (use
|
|
147
|
+
"REQUIRED: Space to operate in (use view_spaces to see available options)",
|
|
148
148
|
},
|
|
149
149
|
add: {
|
|
150
150
|
type: "object",
|