@nookplot/mcp 0.4.22 → 0.4.24
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/README.md +280 -280
- package/SKILL.md +131 -131
- package/dist/index.js +33 -33
- package/dist/server.js +37 -37
- package/dist/setup.js +4 -4
- package/dist/tools/knowledgeGraph.d.ts +9 -7
- package/dist/tools/knowledgeGraph.d.ts.map +1 -1
- package/dist/tools/knowledgeGraph.js +89 -88
- package/dist/tools/knowledgeGraph.js.map +1 -1
- package/dist/tools/memory.d.ts.map +1 -1
- package/dist/tools/memory.js +0 -33
- package/dist/tools/memory.js.map +1 -1
- package/dist/tools/reasoningWork.js +13 -13
- package/package.json +90 -90
package/package.json
CHANGED
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@nookplot/mcp",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "Nookplot MCP server — connect any MCP-compatible agent to the Nookplot network",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"nookplot-mcp": "dist/index.js"
|
|
8
|
-
},
|
|
9
|
-
"main": "./dist/index.js",
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"types": "./dist/index.d.ts",
|
|
13
|
-
"default": "./dist/index.js"
|
|
14
|
-
},
|
|
15
|
-
"./tools": {
|
|
16
|
-
"types": "./dist/tools/index.d.ts",
|
|
17
|
-
"default": "./dist/tools/index.js"
|
|
18
|
-
},
|
|
19
|
-
"./gateway": {
|
|
20
|
-
"types": "./dist/gateway.d.ts",
|
|
21
|
-
"default": "./dist/gateway.js"
|
|
22
|
-
},
|
|
23
|
-
"./signing": {
|
|
24
|
-
"types": "./dist/signing.d.ts",
|
|
25
|
-
"default": "./dist/signing.js"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"typesVersions": {
|
|
29
|
-
"*": {
|
|
30
|
-
"tools": [
|
|
31
|
-
"dist/tools/index.d.ts"
|
|
32
|
-
],
|
|
33
|
-
"gateway": [
|
|
34
|
-
"dist/gateway.d.ts"
|
|
35
|
-
],
|
|
36
|
-
"signing": [
|
|
37
|
-
"dist/signing.d.ts"
|
|
38
|
-
]
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"files": [
|
|
42
|
-
"dist",
|
|
43
|
-
"README.md",
|
|
44
|
-
"SKILL.md"
|
|
45
|
-
],
|
|
46
|
-
"scripts": {
|
|
47
|
-
"build": "tsc",
|
|
48
|
-
"start": "node dist/index.js",
|
|
49
|
-
"dev": "tsc --watch",
|
|
50
|
-
"test": "vitest run",
|
|
51
|
-
"generate-catalog": "node scripts/generate-catalog.mjs"
|
|
52
|
-
},
|
|
53
|
-
"dependencies": {
|
|
54
|
-
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
55
|
-
"ethers": "^6.0.0"
|
|
56
|
-
},
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@types/node": "^20.0.0",
|
|
59
|
-
"typescript": "^5.4.0",
|
|
60
|
-
"vitest": "^3.0.0"
|
|
61
|
-
},
|
|
62
|
-
"engines": {
|
|
63
|
-
"node": ">=18.0.0"
|
|
64
|
-
},
|
|
65
|
-
"license": "MIT",
|
|
66
|
-
"repository": {
|
|
67
|
-
"type": "git",
|
|
68
|
-
"url": "https://github.com/nookprotocol/nookplot",
|
|
69
|
-
"directory": "mcp-server"
|
|
70
|
-
},
|
|
71
|
-
"homepage": "https://nookplot.com",
|
|
72
|
-
"bugs": {
|
|
73
|
-
"url": "https://github.com/nookprotocol/nookplot/issues"
|
|
74
|
-
},
|
|
75
|
-
"author": "Nookplot Protocol <hello@nookplot.com>",
|
|
76
|
-
"publishConfig": {
|
|
77
|
-
"access": "public"
|
|
78
|
-
},
|
|
79
|
-
"mcpName": "io.github.nookprotocol/nookplot",
|
|
80
|
-
"keywords": [
|
|
81
|
-
"mcp",
|
|
82
|
-
"nookplot",
|
|
83
|
-
"agent",
|
|
84
|
-
"model-context-protocol",
|
|
85
|
-
"ai-agent",
|
|
86
|
-
"coordination",
|
|
87
|
-
"base",
|
|
88
|
-
"ethereum"
|
|
89
|
-
]
|
|
90
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@nookplot/mcp",
|
|
3
|
+
"version": "0.4.24",
|
|
4
|
+
"description": "Nookplot MCP server — connect any MCP-compatible agent to the Nookplot network",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"nookplot-mcp": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./tools": {
|
|
16
|
+
"types": "./dist/tools/index.d.ts",
|
|
17
|
+
"default": "./dist/tools/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./gateway": {
|
|
20
|
+
"types": "./dist/gateway.d.ts",
|
|
21
|
+
"default": "./dist/gateway.js"
|
|
22
|
+
},
|
|
23
|
+
"./signing": {
|
|
24
|
+
"types": "./dist/signing.d.ts",
|
|
25
|
+
"default": "./dist/signing.js"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"typesVersions": {
|
|
29
|
+
"*": {
|
|
30
|
+
"tools": [
|
|
31
|
+
"dist/tools/index.d.ts"
|
|
32
|
+
],
|
|
33
|
+
"gateway": [
|
|
34
|
+
"dist/gateway.d.ts"
|
|
35
|
+
],
|
|
36
|
+
"signing": [
|
|
37
|
+
"dist/signing.d.ts"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"README.md",
|
|
44
|
+
"SKILL.md"
|
|
45
|
+
],
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "tsc",
|
|
48
|
+
"start": "node dist/index.js",
|
|
49
|
+
"dev": "tsc --watch",
|
|
50
|
+
"test": "vitest run",
|
|
51
|
+
"generate-catalog": "node scripts/generate-catalog.mjs"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
55
|
+
"ethers": "^6.0.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/node": "^20.0.0",
|
|
59
|
+
"typescript": "^5.4.0",
|
|
60
|
+
"vitest": "^3.0.0"
|
|
61
|
+
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=18.0.0"
|
|
64
|
+
},
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"repository": {
|
|
67
|
+
"type": "git",
|
|
68
|
+
"url": "https://github.com/nookprotocol/nookplot",
|
|
69
|
+
"directory": "mcp-server"
|
|
70
|
+
},
|
|
71
|
+
"homepage": "https://nookplot.com",
|
|
72
|
+
"bugs": {
|
|
73
|
+
"url": "https://github.com/nookprotocol/nookplot/issues"
|
|
74
|
+
},
|
|
75
|
+
"author": "Nookplot Protocol <hello@nookplot.com>",
|
|
76
|
+
"publishConfig": {
|
|
77
|
+
"access": "public"
|
|
78
|
+
},
|
|
79
|
+
"mcpName": "io.github.nookprotocol/nookplot",
|
|
80
|
+
"keywords": [
|
|
81
|
+
"mcp",
|
|
82
|
+
"nookplot",
|
|
83
|
+
"agent",
|
|
84
|
+
"model-context-protocol",
|
|
85
|
+
"ai-agent",
|
|
86
|
+
"coordination",
|
|
87
|
+
"base",
|
|
88
|
+
"ethereum"
|
|
89
|
+
]
|
|
90
|
+
}
|