nodebench-mcp 2.18.1 → 2.18.2
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 +8 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -205,11 +205,15 @@ Research → Risk → Implement → Test (3 layers) → Eval → Gate → Learn
|
|
|
205
205
|
|
|
206
206
|
### Recommended Workflow: Start with Default
|
|
207
207
|
|
|
208
|
-
The `default` preset includes:
|
|
208
|
+
The `default` preset includes 50 tools in 3 groups:
|
|
209
209
|
|
|
210
|
-
1. **Discovery tools** —
|
|
211
|
-
|
|
212
|
-
|
|
210
|
+
1. **Discovery tools (6)** — *"What tool should I use?"* — `findTools`, `getMethodology`, `check_mcp_setup`, `discover_tools`, `get_tool_quick_ref`, `get_workflow_chain`. These help agents find the right tool via keyword search, 14-strategy hybrid search, workflow chains, and methodology guides.
|
|
211
|
+
|
|
212
|
+
2. **Dynamic loading tools (6)** — *"Add/remove tools from my session"* — `load_toolset`, `unload_toolset`, `list_available_toolsets`, `call_loaded_tool`, `smart_select_tools`, `get_ab_test_report`. These let agents manage their own context budget by loading toolsets on demand and unloading them when done.
|
|
213
|
+
|
|
214
|
+
3. **Core methodology (38)** — *"Do the work"* — verification (8), eval (6), quality_gate (4), learning (4), flywheel (4), recon (7), security (3), boilerplate (2). These are the AI Flywheel tools that enforce structured research, risk assessment, 3-layer testing, quality gates, and persistent knowledge.
|
|
215
|
+
|
|
216
|
+
**Self-escalate**: Add `--preset full` when you need vision, web, files, or parallel agents.
|
|
213
217
|
|
|
214
218
|
This approach minimizes token overhead while ensuring agents have access to the complete methodology when needed.
|
|
215
219
|
|
package/dist/index.js
CHANGED
|
@@ -1308,7 +1308,7 @@ Use NodeBench tools when you need to:
|
|
|
1308
1308
|
- Audit SEO, analyze Figma flows, detect Android flicker
|
|
1309
1309
|
- Call LLMs (GPT, Claude, Gemini) for analysis and extraction
|
|
1310
1310
|
Start with discover_tools("<your task>") to find the right tool.`;
|
|
1311
|
-
const server = new Server({ name: "nodebench-mcp-methodology", version: "2.18.
|
|
1311
|
+
const server = new Server({ name: "nodebench-mcp-methodology", version: "2.18.2" }, {
|
|
1312
1312
|
capabilities: { tools: { listChanged: true }, prompts: {} },
|
|
1313
1313
|
instructions: SERVER_INSTRUCTIONS,
|
|
1314
1314
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodebench-mcp",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.2",
|
|
4
4
|
"description": "Make AI agents catch the bugs they normally ship. 175 MCP tools across 34 domains: AI Flywheel methodology (6-phase verification + eval-driven development), structured research, 3-layer testing, quality gates, persistent knowledge, LLM calling, security analysis, visual regression, academic writing, local file parsing, flicker detection, Figma flow analysis, contract compliance scoring, TOON encoding (~40% token savings), pattern mining, git workflow compliance, SEO audit, voice bridge, agent mailbox, progressive discovery with 8-mode hybrid search + neural embeddings (local HuggingFace / Google / OpenAI fallback), model-tier complexity routing, agent contract (front-door + anti-rationalization), session memory, 6 GAIA media solvers, adaptive architect (structural code analysis + concept verification + implementation planning), email (SMTP/IMAP send+read+draft+setup wizard), RSS/Atom feed monitoring with research digest pipeline scaffolding, Agent-as-a-Graph bipartite embedding search (arxiv:2511.18194) with type-conditioned wRRF, MCP annotations (category/phase/complexity), critter intentionality checkpoint. Default: 39 tools (complete AI Flywheel, ~76% fewer). Full: 175 tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|