@intangle/mcp-server 1.1.8 → 1.1.9
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 +6 -5
- package/index.ts +6 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -158,7 +158,7 @@ const TOOLS = [
|
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
name: "create_space",
|
|
161
|
-
description: "Create a new space with optional
|
|
161
|
+
description: "Create a new space with optional configuration. Spaces are top-level containers that hold both context (general information) and tasks (actionable items). The 'start' tool loads this configuration when beginning work in this space. Checks user's plan limits and returns upgrade link if limit reached.",
|
|
162
162
|
inputSchema: {
|
|
163
163
|
type: "object",
|
|
164
164
|
properties: {
|
|
@@ -170,13 +170,14 @@ const TOOLS = [
|
|
|
170
170
|
type: "string",
|
|
171
171
|
description: "Brief description of what this space is for (e.g., 'Work-related context and tasks')",
|
|
172
172
|
},
|
|
173
|
-
|
|
174
|
-
type: "
|
|
175
|
-
|
|
173
|
+
config_badges: {
|
|
174
|
+
type: "array",
|
|
175
|
+
items: { type: "string" },
|
|
176
|
+
description: "Array of keywords for memory focus in this space. These keywords help steer what context gets loaded when running 'start' for this space. Examples: ['TypeScript', 'React', 'API design', 'authentication']. They act as search terms to prioritize relevant memories.",
|
|
176
177
|
},
|
|
177
178
|
startup_preferences: {
|
|
178
179
|
type: "string",
|
|
179
|
-
description: "AI behavior preferences for this space. Guides how
|
|
180
|
+
description: "AI behavior preferences for this space. Guides how AI assistants and agents should communicate and behave (e.g., 'be concise and frank', 'think critically', 'play devils advocate'). This appears in the start briefing under 'Assistant Preferences'.",
|
|
180
181
|
},
|
|
181
182
|
include_tasks: {
|
|
182
183
|
type: "boolean",
|
package/index.ts
CHANGED
|
@@ -197,7 +197,7 @@ const TOOLS = [
|
|
|
197
197
|
{
|
|
198
198
|
name: "create_space",
|
|
199
199
|
description:
|
|
200
|
-
"Create a new space with optional
|
|
200
|
+
"Create a new space with optional configuration. Spaces are top-level containers that hold both context (general information) and tasks (actionable items). The 'start' tool loads this configuration when beginning work in this space. Checks user's plan limits and returns upgrade link if limit reached.",
|
|
201
201
|
inputSchema: {
|
|
202
202
|
type: "object",
|
|
203
203
|
properties: {
|
|
@@ -211,15 +211,16 @@ const TOOLS = [
|
|
|
211
211
|
description:
|
|
212
212
|
"Brief description of what this space is for (e.g., 'Work-related context and tasks')",
|
|
213
213
|
},
|
|
214
|
-
|
|
215
|
-
type: "
|
|
214
|
+
config_badges: {
|
|
215
|
+
type: "array",
|
|
216
|
+
items: { type: "string" },
|
|
216
217
|
description:
|
|
217
|
-
"
|
|
218
|
+
"Array of keywords for memory focus in this space. These keywords help steer what context gets loaded when running 'start' for this space. Examples: ['TypeScript', 'React', 'API design', 'authentication']. They act as search terms to prioritize relevant memories.",
|
|
218
219
|
},
|
|
219
220
|
startup_preferences: {
|
|
220
221
|
type: "string",
|
|
221
222
|
description:
|
|
222
|
-
"AI behavior preferences for this space. Guides how
|
|
223
|
+
"AI behavior preferences for this space. Guides how AI assistants and agents should communicate and behave (e.g., 'be concise and frank', 'think critically', 'play devils advocate'). This appears in the start briefing under 'Assistant Preferences'.",
|
|
223
224
|
},
|
|
224
225
|
include_tasks: {
|
|
225
226
|
type: "boolean",
|