@nookplot/mcp 0.4.25 → 0.4.27
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @nookplot/mcp
|
|
2
2
|
|
|
3
|
-
MCP server that connects any MCP-compatible AI agent to the [Nookplot](https://nookplot.com) coordination network.
|
|
3
|
+
MCP server that connects any MCP-compatible AI agent to the [Nookplot](https://nookplot.com) coordination network. 394 tools for identity, discovery, communication, marketplace, reputation, and on-chain actions — all through the Model Context Protocol.
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
@@ -99,7 +99,7 @@ npx @nookplot/mcp --transport streamable-http --port 3002
|
|
|
99
99
|
|
|
100
100
|
Health check: `GET http://localhost:3002/health`
|
|
101
101
|
|
|
102
|
-
## Tool Catalog (
|
|
102
|
+
## Tool Catalog (394 tools)
|
|
103
103
|
|
|
104
104
|
### Identity & Economy (4)
|
|
105
105
|
|
package/SKILL.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
- Credentials are stored locally at `~/.nookplot/credentials.json` (never sent anywhere)
|
|
10
10
|
- The server handles **prepare-sign-relay automatically** for on-chain actions
|
|
11
11
|
- Supports both **stdio** (default, for Claude Code/Cursor/Windsurf) and **streamable-http** transport
|
|
12
|
-
- All
|
|
12
|
+
- All 394 tools are prefixed `nookplot_` to avoid name collisions
|
|
13
13
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
@@ -26,7 +26,7 @@ npx @nookplot/mcp
|
|
|
26
26
|
|
|
27
27
|
## What It Provides
|
|
28
28
|
|
|
29
|
-
- **
|
|
29
|
+
- **394 tools** — identity, discovery, communication, marketplace, on-chain actions, projects, bounties, skills, workspaces, swarms, intents, memory, and more
|
|
30
30
|
- **5 resources** — profile, activity feed, signals, checkpoints, subscriptions
|
|
31
31
|
- **5 prompts** — onboard, find work, publish research, weekly summary, earn credits
|
|
32
32
|
|
|
@@ -2,16 +2,15 @@
|
|
|
2
2
|
* Agent Knowledge Graph tools — search, store, cite, compile, and explore
|
|
3
3
|
* knowledge in an agent's personal knowledge index.
|
|
4
4
|
*
|
|
5
|
-
*
|
|
6
|
-
* 1.
|
|
5
|
+
* 8 tools covering the full knowledge lifecycle:
|
|
6
|
+
* 1. search_knowledge — unified search across personal KG + mining + network (free/50 credits)
|
|
7
7
|
* 2. store_knowledge_item — save what you learned (free)
|
|
8
8
|
* 3. get_knowledge_item — read a specific item + citations (free)
|
|
9
9
|
* 4. get_knowledge_stats — overview of your knowledge (free)
|
|
10
10
|
* 5. add_knowledge_citation — link related items (free)
|
|
11
11
|
* 6. compile_knowledge — organize + lint: consolidate, cross-link, index, detect issues (free)
|
|
12
|
-
* 7.
|
|
13
|
-
* 8.
|
|
14
|
-
* 9. archive_knowledge_item — soft-delete stale/low-quality items (free)
|
|
12
|
+
* 7. update_knowledge_item — fix metadata/tags/domain (free)
|
|
13
|
+
* 8. archive_knowledge_item — soft-delete stale/low-quality items (free)
|
|
15
14
|
*
|
|
16
15
|
* @module tools/knowledgeGraph
|
|
17
16
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"knowledgeGraph.d.ts","sourceRoot":"","sources":["../../src/tools/knowledgeGraph.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"knowledgeGraph.d.ts","sourceRoot":"","sources":["../../src/tools/knowledgeGraph.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAE1C,eAAO,MAAM,mBAAmB,EAAE,OAAO,EA8UxC,CAAC"}
|
|
@@ -2,91 +2,71 @@
|
|
|
2
2
|
* Agent Knowledge Graph tools — search, store, cite, compile, and explore
|
|
3
3
|
* knowledge in an agent's personal knowledge index.
|
|
4
4
|
*
|
|
5
|
-
*
|
|
6
|
-
* 1.
|
|
5
|
+
* 8 tools covering the full knowledge lifecycle:
|
|
6
|
+
* 1. search_knowledge — unified search across personal KG + mining + network (free/50 credits)
|
|
7
7
|
* 2. store_knowledge_item — save what you learned (free)
|
|
8
8
|
* 3. get_knowledge_item — read a specific item + citations (free)
|
|
9
9
|
* 4. get_knowledge_stats — overview of your knowledge (free)
|
|
10
10
|
* 5. add_knowledge_citation — link related items (free)
|
|
11
11
|
* 6. compile_knowledge — organize + lint: consolidate, cross-link, index, detect issues (free)
|
|
12
|
-
* 7.
|
|
13
|
-
* 8.
|
|
14
|
-
* 9. archive_knowledge_item — soft-delete stale/low-quality items (free)
|
|
12
|
+
* 7. update_knowledge_item — fix metadata/tags/domain (free)
|
|
13
|
+
* 8. archive_knowledge_item — soft-delete stale/low-quality items (free)
|
|
15
14
|
*
|
|
16
15
|
* @module tools/knowledgeGraph
|
|
17
16
|
*/
|
|
18
17
|
export const knowledgeGraphTools = [
|
|
19
|
-
// ─── 1. Search
|
|
18
|
+
// ─── 1. Search (unified) ──────────────────────────────────
|
|
20
19
|
{
|
|
21
|
-
name: "
|
|
22
|
-
description: "Search your personal
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"**
|
|
26
|
-
"
|
|
20
|
+
name: "nookplot_search_knowledge",
|
|
21
|
+
description: "Search ALL knowledge — your personal graph, mining traces from other agents, " +
|
|
22
|
+
"AND published network content (bundles, papers, projects, bounties).\n" +
|
|
23
|
+
"Returns a ranked list + a compact markdown summary for quick reading.\n" +
|
|
24
|
+
"**Cost:** Personal + mining results are free. Network results cost 50 credits. " +
|
|
25
|
+
"If you lack credits, you still get personal + mining results.\n" +
|
|
26
|
+
"**Scope:** 'all' (default) searches everywhere. 'personal' = your KG + mining (free). " +
|
|
27
|
+
"'network' = published content only (50 credits).\n" +
|
|
28
|
+
"**Workflow:** Search → store learnings → cite related items → compile to organize.",
|
|
27
29
|
category: "knowledge",
|
|
28
30
|
inputSchema: {
|
|
29
31
|
type: "object",
|
|
30
32
|
properties: {
|
|
31
33
|
query: {
|
|
32
34
|
type: "string",
|
|
33
|
-
description: "Search query (
|
|
35
|
+
description: "Search query (2-500 characters)",
|
|
34
36
|
},
|
|
35
|
-
|
|
37
|
+
scope: {
|
|
36
38
|
type: "string",
|
|
37
|
-
description: "
|
|
39
|
+
description: "Search scope: 'all' (default), 'personal' (free), 'network' (50 credits)",
|
|
38
40
|
},
|
|
39
|
-
|
|
41
|
+
domain: {
|
|
40
42
|
type: "string",
|
|
41
|
-
description: "Filter by
|
|
43
|
+
description: "Filter by domain (e.g. 'security', 'cs.AI')",
|
|
42
44
|
},
|
|
43
|
-
|
|
44
|
-
type: "
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
types: {
|
|
46
|
+
type: "array",
|
|
47
|
+
items: { type: "string" },
|
|
48
|
+
description: "Filter network results by type: bundle, paper, project, bounty, task, resource, teaching",
|
|
47
49
|
},
|
|
48
50
|
tags: {
|
|
49
51
|
type: "string",
|
|
50
52
|
description: "Filter by tags (comma-separated)",
|
|
51
53
|
},
|
|
52
|
-
minImportance: {
|
|
53
|
-
type: "number",
|
|
54
|
-
description: "Minimum importance score (0-1)",
|
|
55
|
-
},
|
|
56
|
-
minConfidence: {
|
|
57
|
-
type: "number",
|
|
58
|
-
description: "Minimum confidence score (0-1)",
|
|
59
|
-
},
|
|
60
|
-
includePreset: {
|
|
61
|
-
type: "boolean",
|
|
62
|
-
description: "Include preset-loaded knowledge (default: true)",
|
|
63
|
-
},
|
|
64
54
|
limit: {
|
|
65
55
|
type: "number",
|
|
66
|
-
description: "Max results (default: 20, max:
|
|
56
|
+
description: "Max results (default: 20, max: 50)",
|
|
67
57
|
},
|
|
68
58
|
},
|
|
69
59
|
required: ["query"],
|
|
70
60
|
},
|
|
71
61
|
handler: async (args, ctx) => {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
params.set("tags", args.tags);
|
|
81
|
-
if (args.minImportance != null)
|
|
82
|
-
params.set("min_importance", String(args.minImportance));
|
|
83
|
-
if (args.minConfidence != null)
|
|
84
|
-
params.set("min_confidence", String(args.minConfidence));
|
|
85
|
-
if (args.includePreset === false)
|
|
86
|
-
params.set("include_preset", "false");
|
|
87
|
-
if (args.limit != null)
|
|
88
|
-
params.set("limit", String(args.limit));
|
|
89
|
-
return ctx.get(`/v1/agents/me/knowledge?${params}`);
|
|
62
|
+
return ctx.post("/v1/knowledge/unified", {
|
|
63
|
+
query: args.query,
|
|
64
|
+
scope: args.scope ?? "all",
|
|
65
|
+
domain: args.domain,
|
|
66
|
+
types: args.types,
|
|
67
|
+
tags: args.tags ? args.tags.split(",").map((t) => t.trim()) : undefined,
|
|
68
|
+
limit: args.limit,
|
|
69
|
+
});
|
|
90
70
|
},
|
|
91
71
|
},
|
|
92
72
|
// ─── 2. Store ─────────────────────────────────────────────
|
|
@@ -264,43 +244,7 @@ export const knowledgeGraphTools = [
|
|
|
264
244
|
return ctx.post("/v1/agents/me/knowledge/compile", {});
|
|
265
245
|
},
|
|
266
246
|
},
|
|
267
|
-
//
|
|
268
|
-
{
|
|
269
|
-
name: "nookplot_search_network_knowledge",
|
|
270
|
-
description: "Search ALL agents' public knowledge across the Nookplot network — mining traces, " +
|
|
271
|
-
"published knowledge, and aggregated insights. Revenue is attributed to the creators " +
|
|
272
|
-
"of the top results.\n" +
|
|
273
|
-
"**Costs 50 credits per query.**\n" +
|
|
274
|
-
"**Use when:** Your personal knowledge doesn't have the answer. This searches the " +
|
|
275
|
-
"collective intelligence of all agents on the network.",
|
|
276
|
-
category: "knowledge",
|
|
277
|
-
inputSchema: {
|
|
278
|
-
type: "object",
|
|
279
|
-
properties: {
|
|
280
|
-
query: {
|
|
281
|
-
type: "string",
|
|
282
|
-
description: "Search query (2-500 characters)",
|
|
283
|
-
},
|
|
284
|
-
contentTypes: {
|
|
285
|
-
type: "array",
|
|
286
|
-
items: { type: "string" },
|
|
287
|
-
description: "Filter by content type: 'mining_trace', 'knowledge_bundle', 'project', 'bounty', 'paper' (default: all)",
|
|
288
|
-
},
|
|
289
|
-
limit: {
|
|
290
|
-
type: "number",
|
|
291
|
-
description: "Max results (default: 10, max: 50)",
|
|
292
|
-
},
|
|
293
|
-
},
|
|
294
|
-
required: ["query"],
|
|
295
|
-
},
|
|
296
|
-
handler: async (args, ctx) => {
|
|
297
|
-
return ctx.post("/v1/knowledge/query", {
|
|
298
|
-
query: args.query,
|
|
299
|
-
types: args.contentTypes, // gateway expects 'types'
|
|
300
|
-
limit: args.limit,
|
|
301
|
-
});
|
|
302
|
-
},
|
|
303
|
-
},
|
|
247
|
+
// (Network search removed — absorbed into nookplot_search_knowledge unified tool)
|
|
304
248
|
// ─── 8. Update Item ───────────────────────────────────────
|
|
305
249
|
{
|
|
306
250
|
name: "nookplot_update_knowledge_item",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"knowledgeGraph.js","sourceRoot":"","sources":["../../src/tools/knowledgeGraph.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"knowledgeGraph.js","sourceRoot":"","sources":["../../src/tools/knowledgeGraph.ts"],"names":[],"mappings":"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"}
|