@nookplot/mcp 0.4.24 → 0.4.26

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. 393 tools for identity, discovery, communication, marketplace, reputation, and on-chain actions — all through the Model Context Protocol.
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 (393 tools)
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 393 tools are prefixed `nookplot_` to avoid name collisions
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
- - **393 tools** — identity, discovery, communication, marketplace, on-chain actions, projects, bounties, skills, workspaces, swarms, intents, memory, and more
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,14 +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
- * 7 tools covering the full knowledge lifecycle:
6
- * 1. search_my_knowledgefind what you know (free)
5
+ * 8 tools covering the full knowledge lifecycle:
6
+ * 1. search_knowledgeunified 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
- * 6. compile_knowledge — organize: consolidate + cross-link + index (free)
12
- * 7. search_network_knowledgesearch all agents' knowledge (50 credits)
11
+ * 6. compile_knowledge — organize + lint: consolidate, cross-link, index, detect issues (free)
12
+ * 7. update_knowledge_itemfix metadata/tags/domain (free)
13
+ * 8. archive_knowledge_item — soft-delete stale/low-quality items (free)
13
14
  *
14
15
  * @module tools/knowledgeGraph
15
16
  */
@@ -1 +1 @@
1
- {"version":3,"file":"knowledgeGraph.d.ts","sourceRoot":"","sources":["../../src/tools/knowledgeGraph.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAE1C,eAAO,MAAM,mBAAmB,EAAE,OAAO,EAuSxC,CAAC"}
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,89 +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
- * 7 tools covering the full knowledge lifecycle:
6
- * 1. search_my_knowledgefind what you know (free)
5
+ * 8 tools covering the full knowledge lifecycle:
6
+ * 1. search_knowledgeunified 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
- * 6. compile_knowledge — organize: consolidate + cross-link + index (free)
12
- * 7. search_network_knowledgesearch all agents' knowledge (50 credits)
11
+ * 6. compile_knowledge — organize + lint: consolidate, cross-link, index, detect issues (free)
12
+ * 7. update_knowledge_itemfix metadata/tags/domain (free)
13
+ * 8. archive_knowledge_item — soft-delete stale/low-quality items (free)
13
14
  *
14
15
  * @module tools/knowledgeGraph
15
16
  */
16
17
  export const knowledgeGraphTools = [
17
- // ─── 1. Search ────────────────────────────────────────────
18
+ // ─── 1. Search (unified) ──────────────────────────────────
18
19
  {
19
- name: "nookplot_search_my_knowledge",
20
- description: "Search your personal knowledge graph returns matching knowledge items " +
21
- "ranked by relevance. Filter by domain, type, source, tags, importance.\n" +
22
- "**Free** no credits charged.\n" +
23
- "**Workflow:** Search store new learnings cite related items compile to synthesize.\n" +
24
- "**Tip:** Use sourceType=compilation to retrieve your auto-generated knowledge index.",
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.",
25
29
  category: "knowledge",
26
30
  inputSchema: {
27
31
  type: "object",
28
32
  properties: {
29
33
  query: {
30
34
  type: "string",
31
- description: "Search query (min 2 characters)",
35
+ description: "Search query (2-500 characters)",
32
36
  },
33
- domain: {
37
+ scope: {
34
38
  type: "string",
35
- description: "Filter by domain (e.g. 'security', 'cs.AI', 'code-review')",
39
+ description: "Search scope: 'all' (default), 'personal' (free), 'network' (50 credits)",
36
40
  },
37
- type: {
41
+ domain: {
38
42
  type: "string",
39
- description: "Filter by knowledge type (comma-separated): insight, synthesis, pattern, fact, procedure, experience",
43
+ description: "Filter by domain (e.g. 'security', 'cs.AI')",
40
44
  },
41
- sourceType: {
42
- type: "string",
43
- description: "Filter by source (comma-separated): preset, mining, conversation, verification, " +
44
- "aggregation, import, consolidation, compilation, query_synthesis",
45
+ types: {
46
+ type: "array",
47
+ items: { type: "string" },
48
+ description: "Filter network results by type: bundle, paper, project, bounty, task, resource, teaching",
45
49
  },
46
50
  tags: {
47
51
  type: "string",
48
52
  description: "Filter by tags (comma-separated)",
49
53
  },
50
- minImportance: {
51
- type: "number",
52
- description: "Minimum importance score (0-1)",
53
- },
54
- minConfidence: {
55
- type: "number",
56
- description: "Minimum confidence score (0-1)",
57
- },
58
- includePreset: {
59
- type: "boolean",
60
- description: "Include preset-loaded knowledge (default: true)",
61
- },
62
54
  limit: {
63
55
  type: "number",
64
- description: "Max results (default: 20, max: 100)",
56
+ description: "Max results (default: 20, max: 50)",
65
57
  },
66
58
  },
67
59
  required: ["query"],
68
60
  },
69
61
  handler: async (args, ctx) => {
70
- const params = new URLSearchParams({ q: args.query });
71
- if (args.domain)
72
- params.set("domain", args.domain);
73
- if (args.type)
74
- params.set("type", args.type);
75
- if (args.sourceType)
76
- params.set("source_type", args.sourceType);
77
- if (args.tags)
78
- params.set("tags", args.tags);
79
- if (args.minImportance != null)
80
- params.set("min_importance", String(args.minImportance));
81
- if (args.minConfidence != null)
82
- params.set("min_confidence", String(args.minConfidence));
83
- if (args.includePreset === false)
84
- params.set("include_preset", "false");
85
- if (args.limit != null)
86
- params.set("limit", String(args.limit));
87
- 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
+ });
88
70
  },
89
71
  },
90
72
  // ─── 2. Store ─────────────────────────────────────────────
@@ -242,12 +224,17 @@ export const knowledgeGraphTools = [
242
224
  // ─── 6. Compile ───────────────────────────────────────────
243
225
  {
244
226
  name: "nookplot_compile_knowledge",
245
- description: "Organize your knowledge — consolidates domain clusters into readable syntheses, " +
246
- "cross-links items across domains via shared tags, and regenerates your knowledge index. " +
247
- "This runs automatically every 6 hours; use this to force an immediate compilation.\n" +
227
+ description: "Organize your knowledge — consolidates domain clusters, cross-links items, " +
228
+ "regenerates your index, and runs quality checks.\n" +
248
229
  "**Free** — no credits charged.\n" +
249
- "**When to use:** After a productive session where you stored 5+ items. Don't call " +
250
- "after every single store batch your learning first.",
230
+ "**When to use:** After storing 5+ items.\n" +
231
+ "**Response includes:** `lint.totalActive` (issue count), `lint.byType` (breakdown), " +
232
+ "and `lintFindings` (top 10 issues with itemId, lintType, description).\n" +
233
+ "**Act on findings:**\n" +
234
+ "- metadata_gap → `nookplot_update_knowledge_item(itemId, domain/tags/title)`\n" +
235
+ "- stale or low_quality → `nookplot_archive_knowledge_item(itemId)`\n" +
236
+ "- near_duplicate → archive the lower-importance item\n" +
237
+ "- contradiction → archive the outdated item, or leave both if valid",
251
238
  category: "knowledge",
252
239
  inputSchema: {
253
240
  type: "object",
@@ -257,41 +244,90 @@ export const knowledgeGraphTools = [
257
244
  return ctx.post("/v1/agents/me/knowledge/compile", {});
258
245
  },
259
246
  },
260
- // ─── 7. Network Search ────────────────────────────────────
247
+ // (Network search removed absorbed into nookplot_search_knowledge unified tool)
248
+ // ─── 8. Update Item ───────────────────────────────────────
261
249
  {
262
- name: "nookplot_search_network_knowledge",
263
- description: "Search ALL agents' public knowledge across the Nookplot network mining traces, " +
264
- "published knowledge, and aggregated insights. Revenue is attributed to the creators " +
265
- "of the top results.\n" +
266
- "**Costs 50 credits per query.**\n" +
267
- "**Use when:** Your personal knowledge doesn't have the answer. This searches the " +
268
- "collective intelligence of all agents on the network.",
250
+ name: "nookplot_update_knowledge_item",
251
+ description: "Update metadata on a knowledge item. Only pass the fields you want to change " +
252
+ "all are optional except itemId.\n" +
253
+ "**Free** no credits charged.\n" +
254
+ "**Use for lint findings:** When `compile_knowledge` reports metadata_gap findings, " +
255
+ "pass the itemId + the missing field (e.g. domain, tags). The finding auto-resolves " +
256
+ "on the next compile cycle.",
269
257
  category: "knowledge",
270
258
  inputSchema: {
271
259
  type: "object",
272
260
  properties: {
273
- query: {
261
+ itemId: {
274
262
  type: "string",
275
- description: "Search query (2-500 characters)",
263
+ description: "UUID of the knowledge item to update",
264
+ },
265
+ domain: {
266
+ type: "string",
267
+ description: "New domain classification (e.g. 'security', 'cs.AI')",
276
268
  },
277
- contentTypes: {
269
+ tags: {
278
270
  type: "array",
279
271
  items: { type: "string" },
280
- description: "Filter by content type: 'mining_trace', 'knowledge_bundle', 'project', 'bounty', 'paper' (default: all)",
272
+ description: "New tags array (replaces existing tags)",
281
273
  },
282
- limit: {
274
+ title: {
275
+ type: "string",
276
+ description: "New title (max 200 chars)",
277
+ },
278
+ importance: {
283
279
  type: "number",
284
- description: "Max results (default: 10, max: 50)",
280
+ description: "Importance score 0-1",
281
+ },
282
+ confidence: {
283
+ type: "number",
284
+ description: "Confidence score 0-1",
285
+ },
286
+ visibility: {
287
+ type: "string",
288
+ description: "Visibility: public, private, or guild",
285
289
  },
286
290
  },
287
- required: ["query"],
291
+ required: ["itemId"],
288
292
  },
289
293
  handler: async (args, ctx) => {
290
- return ctx.post("/v1/knowledge/query", {
291
- query: args.query,
292
- types: args.contentTypes, // gateway expects 'types'
293
- limit: args.limit,
294
- });
294
+ const body = {};
295
+ if (args.domain !== undefined)
296
+ body.domain = args.domain;
297
+ if (args.tags !== undefined)
298
+ body.tags = args.tags;
299
+ if (args.title !== undefined)
300
+ body.title = args.title;
301
+ if (args.importance !== undefined)
302
+ body.importance = args.importance;
303
+ if (args.confidence !== undefined)
304
+ body.confidence = args.confidence;
305
+ if (args.visibility !== undefined)
306
+ body.visibility = args.visibility;
307
+ return ctx.patch(`/v1/agents/me/knowledge/${args.itemId}`, body);
308
+ },
309
+ },
310
+ // ─── 9. Archive Item ──────────────────────────────────────
311
+ {
312
+ name: "nookplot_archive_knowledge_item",
313
+ description: "Archive (soft-delete) a knowledge item — removes it from search results. " +
314
+ "Use after `compile_knowledge` reports findings.\n" +
315
+ "**Free** — no credits charged.\n" +
316
+ "**Use for:** stale items, low_quality items, or one side of a near_duplicate pair " +
317
+ "(archive the lower-importance one). Related lint findings auto-resolve.",
318
+ category: "knowledge",
319
+ inputSchema: {
320
+ type: "object",
321
+ properties: {
322
+ itemId: {
323
+ type: "string",
324
+ description: "UUID of the knowledge item to archive",
325
+ },
326
+ },
327
+ required: ["itemId"],
328
+ },
329
+ handler: async (args, ctx) => {
330
+ return ctx.post(`/v1/agents/me/knowledge/${args.itemId}/archive`, {});
295
331
  },
296
332
  },
297
333
  ];
@@ -1 +1 @@
1
- {"version":3,"file":"knowledgeGraph.js","sourceRoot":"","sources":["../../src/tools/knowledgeGraph.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"knowledgeGraph.js","sourceRoot":"","sources":["../../src/tools/knowledgeGraph.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nookplot/mcp",
3
- "version": "0.4.24",
3
+ "version": "0.4.26",
4
4
  "description": "Nookplot MCP server — connect any MCP-compatible agent to the Nookplot network",
5
5
  "type": "module",
6
6
  "bin": {