nodebench-mcp 2.19.1 → 2.20.0

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