hyper-pm-mcp 0.1.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.
package/env.example ADDED
@@ -0,0 +1,4 @@
1
+ # hyper-pm-mcp — optional overrides (see @workspace/env)
2
+
3
+ # Absolute path to hyper-pm dist/main.cjs when not using the workspace package layout
4
+ # HYPER_PM_CLI_PATH=""
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "hyper-pm-mcp",
3
+ "version": "0.1.0",
4
+ "description": "stdio MCP server that runs the hyper-pm CLI",
5
+ "type": "module",
6
+ "engines": {
7
+ "node": ">=20"
8
+ },
9
+ "bin": {
10
+ "hyper-pm-mcp": "dist/main.mjs"
11
+ },
12
+ "files": [
13
+ "dist/main.mjs",
14
+ "README.md",
15
+ "env.example"
16
+ ],
17
+ "dependencies": {
18
+ "@modelcontextprotocol/sdk": "^1.29.0",
19
+ "ajv": "^8.17.1",
20
+ "ajv-formats": "^3.0.1",
21
+ "hyper-pm": "^0.1.0"
22
+ },
23
+ "devDependencies": {
24
+ "@types/node": "^20.19.9",
25
+ "@vitest/coverage-v8": "^4.0.18",
26
+ "esbuild": "^0.27.0",
27
+ "eslint": "^9.32.0",
28
+ "typescript": "^5.9.2",
29
+ "vitest": "^4.0.18",
30
+ "@workspace/env": "0.0.0",
31
+ "@workspace/hyper-pm-cli-runner": "0.0.0",
32
+ "@workspace/eslint-config": "0.0.0",
33
+ "@workspace/typescript-config": "0.0.0"
34
+ },
35
+ "scripts": {
36
+ "build": "rm -rf dist && esbuild src/main.ts --bundle --platform=node --format=esm --outfile=dist/main.mjs",
37
+ "check-types": "tsc --noEmit -p tsconfig.json",
38
+ "lint": "eslint \"src/**/*.ts\"",
39
+ "test": "vitest run",
40
+ "test:coverage": "vitest run --coverage"
41
+ }
42
+ }