ralph-hero-mcp-server 2.5.108 → 2.5.110

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.
@@ -355,7 +355,6 @@ export function registerIssueTools(server, client, fieldCache) {
355
355
  };
356
356
  });
357
357
  return toolSuccess({
358
- totalCount: itemsResult.totalCount,
359
358
  filteredCount: formattedItems.length,
360
359
  items: formattedItems,
361
360
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralph-hero-mcp-server",
3
- "version": "2.5.108",
3
+ "version": "2.5.110",
4
4
  "description": "MCP server for GitHub Projects V2 - Ralph workflow automation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -12,7 +12,7 @@
12
12
  ],
13
13
  "scripts": {
14
14
  "build": "tsc",
15
- "test": "vitest run",
15
+ "test": "vitest run --coverage",
16
16
  "start": "node dist/index.js",
17
17
  "prepublishOnly": "npm run build"
18
18
  },
@@ -25,6 +25,7 @@
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^25.6.0",
28
+ "@vitest/coverage-v8": "^4.1.5",
28
29
  "typescript": "^5.7.0",
29
30
  "vitest": "^4.0.18"
30
31
  },
@@ -42,6 +43,6 @@
42
43
  ],
43
44
  "license": "MIT",
44
45
  "engines": {
45
- "node": ">=18.0.0"
46
+ "node": ">=20.0.0"
46
47
  }
47
48
  }