@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 CHANGED
@@ -73,6 +73,8 @@ async function makeApiCall(endpoint, data) {
73
73
  const server = new Server({
74
74
  name: "intangle-memory",
75
75
  version: "1.0.0",
76
+ vendor: "Intangle",
77
+ icon: "https://intangle.tools/icon.png",
76
78
  }, {
77
79
  capabilities: {
78
80
  tools: {},
@@ -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 list_spaces to see available options)",
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' = direct hybrid search (fastest, no AI cost), 'balanced' = attention agent with 1-2 iterations (default), 'deep' = attention agent with up to 5 iterations (most thorough)",
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: ['TypeScript', 'React', 'API design', 'authentication']. They act as search terms to prioritize relevant memories.",
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 list_spaces to see available options)",
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
@@ -100,6 +100,8 @@ const server = new Server(
100
100
  {
101
101
  name: "intangle-memory",
102
102
  version: "1.0.0",
103
+ vendor: "Intangle",
104
+ icon: "https://intangle.tools/icon.png",
103
105
  },
104
106
  {
105
107
  capabilities: {
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "1.2.3",
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 .",
@@ -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 list_spaces to see available options)",
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' = direct hybrid search (fastest, no AI cost), 'balanced' = attention agent with 1-2 iterations (default), 'deep' = attention agent with up to 5 iterations (most thorough)",
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: ['TypeScript', 'React', 'API design', 'authentication']. They act as search terms to prioritize relevant memories.",
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 list_spaces to see available options)",
147
+ "REQUIRED: Space to operate in (use view_spaces to see available options)",
148
148
  },
149
149
  add: {
150
150
  type: "object",