@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 CHANGED
@@ -158,7 +158,7 @@ const TOOLS = [
158
158
  },
159
159
  {
160
160
  name: "create_space",
161
- description: "Create a new space with optional startup 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.",
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
- startup_context: {
174
- type: "string",
175
- description: "Context and keywords provided to AI when starting this space. Include role, preferences, common tasks, and relevant search terms. This helps the AI understand what information to prioritize from memory.",
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 the AI should interact and respond when working in this context (e.g., 'Be concise and technical', 'Focus on creative solutions').",
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 startup 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.",
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
- startup_context: {
215
- type: "string",
214
+ config_badges: {
215
+ type: "array",
216
+ items: { type: "string" },
216
217
  description:
217
- "Context and keywords provided to AI when starting this space. Include role, preferences, common tasks, and relevant search terms. This helps the AI understand what information to prioritize from memory.",
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 the AI should interact and respond when working in this context (e.g., 'Be concise and technical', 'Focus on creative solutions').",
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
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",