@intangle/mcp-server 1.1.4 → 1.1.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 +20 -16
- package/index.ts +20 -18
- package/package.json +50 -51
package/dist/index.js
CHANGED
|
@@ -208,19 +208,22 @@ const TOOLS = [
|
|
|
208
208
|
},
|
|
209
209
|
},
|
|
210
210
|
},
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
},
|
|
211
|
+
// DISABLED: get_entities tool - not useful in current form
|
|
212
|
+
// {
|
|
213
|
+
// name: "get_entities",
|
|
214
|
+
// description:
|
|
215
|
+
// "Get extracted entities (people, places, concepts) from CONTEXT items (general information). If no memory_id provided, returns top 20 most frequently mentioned entities across all context. WARNING: This tool can return large responses - use sparingly and only when entity information is specifically needed.",
|
|
216
|
+
// inputSchema: {
|
|
217
|
+
// type: "object",
|
|
218
|
+
// properties: {
|
|
219
|
+
// memory_id: {
|
|
220
|
+
// type: "string",
|
|
221
|
+
// description:
|
|
222
|
+
// "Memory ID to get entities for. RECOMMENDED: Always provide memory_id to get focused results.",
|
|
223
|
+
// },
|
|
224
|
+
// },
|
|
225
|
+
// },
|
|
226
|
+
// },
|
|
224
227
|
{
|
|
225
228
|
name: "delete_memory",
|
|
226
229
|
description: "Delete one or more CONTEXT items (general information). For deleting tasks, use delete_task instead. Accepts a single memory ID or an array of memory IDs for batch deletion.",
|
|
@@ -913,9 +916,10 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
913
916
|
case "fetch":
|
|
914
917
|
result = await handleFetch(args);
|
|
915
918
|
break;
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
+
// DISABLED: get_entities handler - not useful in current form
|
|
920
|
+
// case "get_entities":
|
|
921
|
+
// result = await handleGetEntities(args);
|
|
922
|
+
// break;
|
|
919
923
|
case "delete_memory":
|
|
920
924
|
result = await handleDeleteMemory(args);
|
|
921
925
|
break;
|
package/index.ts
CHANGED
|
@@ -250,21 +250,22 @@ const TOOLS = [
|
|
|
250
250
|
},
|
|
251
251
|
},
|
|
252
252
|
},
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
},
|
|
253
|
+
// DISABLED: get_entities tool - not useful in current form
|
|
254
|
+
// {
|
|
255
|
+
// name: "get_entities",
|
|
256
|
+
// description:
|
|
257
|
+
// "Get extracted entities (people, places, concepts) from CONTEXT items (general information). If no memory_id provided, returns top 20 most frequently mentioned entities across all context. WARNING: This tool can return large responses - use sparingly and only when entity information is specifically needed.",
|
|
258
|
+
// inputSchema: {
|
|
259
|
+
// type: "object",
|
|
260
|
+
// properties: {
|
|
261
|
+
// memory_id: {
|
|
262
|
+
// type: "string",
|
|
263
|
+
// description:
|
|
264
|
+
// "Memory ID to get entities for. RECOMMENDED: Always provide memory_id to get focused results.",
|
|
265
|
+
// },
|
|
266
|
+
// },
|
|
267
|
+
// },
|
|
268
|
+
// },
|
|
268
269
|
{
|
|
269
270
|
name: "delete_memory",
|
|
270
271
|
description:
|
|
@@ -1050,9 +1051,10 @@ server.setRequestHandler(CallToolRequestSchema, async (request: any) => {
|
|
|
1050
1051
|
case "fetch":
|
|
1051
1052
|
result = await handleFetch(args);
|
|
1052
1053
|
break;
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1054
|
+
// DISABLED: get_entities handler - not useful in current form
|
|
1055
|
+
// case "get_entities":
|
|
1056
|
+
// result = await handleGetEntities(args);
|
|
1057
|
+
// break;
|
|
1056
1058
|
case "delete_memory":
|
|
1057
1059
|
result = await handleDeleteMemory(args);
|
|
1058
1060
|
break;
|
package/package.json
CHANGED
|
@@ -1,52 +1,51 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
2
|
+
"name": "@intangle/mcp-server",
|
|
3
|
+
"version": "1.1.5",
|
|
4
|
+
"description": "Model Context Protocol server for Intangle - AI memory that persists across conversations",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"intangle-mcp": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"mcp",
|
|
12
|
+
"model-context-protocol",
|
|
13
|
+
"claude",
|
|
14
|
+
"claude-code",
|
|
15
|
+
"ai",
|
|
16
|
+
"memory",
|
|
17
|
+
"knowledge-management",
|
|
18
|
+
"intangle",
|
|
19
|
+
"claude-desktop",
|
|
20
|
+
"anthropic"
|
|
21
|
+
],
|
|
22
|
+
"author": "Intangle",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/intangle/mcp-server.git"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://intangle.app",
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=18.0.0"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
34
|
+
"dotenv": "^17.2.0",
|
|
35
|
+
"node-fetch": "^3.3.2"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@biomejs/biome": "^1.9.4",
|
|
39
|
+
"@types/node": "^22.0.0",
|
|
40
|
+
"@types/node-fetch": "^2.6.12",
|
|
41
|
+
"tsx": "^4.0.0",
|
|
42
|
+
"typescript": "^5.0.0"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"start": "node dist/index.js",
|
|
46
|
+
"dev": "tsx watch index.ts",
|
|
47
|
+
"build": "tsc",
|
|
48
|
+
"lint": "biome check .",
|
|
49
|
+
"lint:fix": "biome check --fix ."
|
|
50
|
+
}
|
|
51
|
+
}
|