nodebench-mcp 2.18.4 → 2.19.1

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.
@@ -43,6 +43,7 @@ import { critterTools } from "../tools/critterTools.js";
43
43
  import { emailTools } from "../tools/emailTools.js";
44
44
  import { rssTools } from "../tools/rssTools.js";
45
45
  import { architectTools } from "../tools/architectTools.js";
46
+ import { uiUxDiveTools } from "../tools/uiUxDiveTools.js";
46
47
  import { getQuickRef, hybridSearch, TOOL_REGISTRY, SEARCH_MODES, ALL_REGISTRY_ENTRIES, WORKFLOW_CHAINS, tokenize, buildDenseIndex, getToolComplexity } from "../tools/toolRegistry.js";
47
48
  // Assemble all tools like index.ts does
48
49
  const domainTools = [
@@ -80,6 +81,7 @@ const domainTools = [
80
81
  ...emailTools,
81
82
  ...rssTools,
82
83
  ...architectTools,
84
+ ...uiUxDiveTools,
83
85
  ];
84
86
  const metaTools = createMetaTools(domainTools);
85
87
  const allToolsWithoutDiscovery = [...domainTools, ...metaTools];
@@ -91,7 +93,7 @@ const allTools = [...allToolsWithoutDiscovery, ...discoveryTools];
91
93
  describe("Static: tool structure", () => {
92
94
  it("should have 175 tools total", () => {
93
95
  // 169 domain tools + 3 meta tools (findTools, getMethodology, check_mcp_setup) + 3 progressive discovery tools
94
- expect(allTools.length).toBe(175);
96
+ expect(allTools.length).toBe(185);
95
97
  });
96
98
  it("every tool has name, description, inputSchema, handler", () => {
97
99
  for (const tool of allTools) {
@@ -1819,7 +1821,7 @@ describe("Integration: full benchmark lifecycle", () => {
1819
1821
  // ═══════════════════════════════════════════════════════════════════════
1820
1822
  const toolDescs = allTools.map((t) => ({ name: t.name, description: t.description }));
1821
1823
  describe("Search engine: registry coverage", () => {
1822
- it("should have a registry entry for every tool (175/175)", () => {
1824
+ it("should have a registry entry for every tool (185/185)", () => {
1823
1825
  const missing = allTools.filter((t) => !TOOL_REGISTRY.has(t.name));
1824
1826
  expect(missing.map((t) => t.name)).toEqual([]);
1825
1827
  expect(TOOL_REGISTRY.size).toBe(allTools.length);