hevy-mcp 1.10.16 → 1.12.3
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 +42 -142
- package/dist/index.d.ts +45 -1
- package/dist/index.js +436 -562
- package/dist/index.js.map +1 -1
- package/package.json +41 -37
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hevy-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.3",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
|
-
"module": "
|
|
5
|
+
"module": "src/index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
@@ -17,20 +17,20 @@
|
|
|
17
17
|
"hevy-mcp": "dist/index.js"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"inspect": "
|
|
20
|
+
"inspect": "pnpm run build && pnpm dlx @modelcontextprotocol/inspector@latest node dist/index.js",
|
|
21
21
|
"test": "vitest --run",
|
|
22
22
|
"export-specs": "node ./scripts/export-openapi-spec.js",
|
|
23
23
|
"build": "tsup",
|
|
24
24
|
"build:client": "kubb generate",
|
|
25
25
|
"start": "node dist/index.js",
|
|
26
|
-
"start:http": "node dist/index.js --http",
|
|
27
26
|
"dev": "tsx watch --clear-screen=false src/index.ts",
|
|
28
|
-
"
|
|
27
|
+
"smithery:build": "smithery build",
|
|
28
|
+
"smithery:dev": "smithery dev",
|
|
29
29
|
"check": "biome check --write --unsafe",
|
|
30
30
|
"check:types": "tsc --noEmit",
|
|
31
|
-
"version:patch": "
|
|
32
|
-
"version:minor": "
|
|
33
|
-
"version:major": "
|
|
31
|
+
"version:patch": "pnpm version patch",
|
|
32
|
+
"version:minor": "pnpm version minor",
|
|
33
|
+
"version:major": "pnpm version major",
|
|
34
34
|
"release": "semantic-release",
|
|
35
35
|
"commit": "commit"
|
|
36
36
|
},
|
|
@@ -46,43 +46,47 @@
|
|
|
46
46
|
"license": "MIT",
|
|
47
47
|
"description": "A Model Context Protocol (MCP) server implementation that interfaces with the Hevy fitness tracking app and its API.",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@dotenvx/dotenvx": "^1.
|
|
50
|
-
"@kubb/cli": "^
|
|
51
|
-
"@kubb/core": "^
|
|
52
|
-
"@kubb/plugin-client": "^
|
|
53
|
-
"@kubb/plugin-faker": "^
|
|
54
|
-
"@kubb/plugin-oas": "^
|
|
55
|
-
"@kubb/plugin-ts": "^
|
|
56
|
-
"@kubb/plugin-zod": "^
|
|
57
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
49
|
+
"@dotenvx/dotenvx": "^1.51.1",
|
|
50
|
+
"@kubb/cli": "^4.5.9",
|
|
51
|
+
"@kubb/core": "^4.5.9",
|
|
52
|
+
"@kubb/plugin-client": "^4.5.9",
|
|
53
|
+
"@kubb/plugin-faker": "^4.5.9",
|
|
54
|
+
"@kubb/plugin-oas": "^4.5.9",
|
|
55
|
+
"@kubb/plugin-ts": "^4.5.9",
|
|
56
|
+
"@kubb/plugin-zod": "^4.5.9",
|
|
57
|
+
"@modelcontextprotocol/sdk": "^1.22.0",
|
|
58
|
+
"@smithery/sdk": "1.7.4",
|
|
59
|
+
"axios": "^1.13.2",
|
|
60
|
+
"chalk": "^5.3.0",
|
|
61
|
+
"cors": "^2.8.5",
|
|
62
|
+
"express": "4.21.2",
|
|
63
|
+
"zod": "^3.25.76"
|
|
61
64
|
},
|
|
62
65
|
"devDependencies": {
|
|
63
|
-
"@biomejs/biome": "2.3.
|
|
64
|
-
"@commitlint/cli": "^20.
|
|
66
|
+
"@biomejs/biome": "2.3.6",
|
|
67
|
+
"@commitlint/cli": "^20.1.0",
|
|
65
68
|
"@commitlint/config-conventional": "^20.0.0",
|
|
66
|
-
"@commitlint/prompt-cli": "^20.
|
|
69
|
+
"@commitlint/prompt-cli": "^20.1.0",
|
|
67
70
|
"@semantic-release/changelog": "^6.0.3",
|
|
68
71
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
69
72
|
"@semantic-release/git": "^10.0.1",
|
|
70
|
-
"@semantic-release/github": "^12.0.
|
|
71
|
-
"@semantic-release/npm": "^13.1.
|
|
72
|
-
"@semantic-release/release-notes-generator": "^14.0
|
|
73
|
-
"@
|
|
74
|
-
"@types/node": "^24.
|
|
75
|
-
"@
|
|
76
|
-
"@vitest/coverage-v8": "^4.0.6",
|
|
73
|
+
"@semantic-release/github": "^12.0.2",
|
|
74
|
+
"@semantic-release/npm": "^13.1.2",
|
|
75
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
76
|
+
"@smithery/cli": "^1.6.3",
|
|
77
|
+
"@types/node": "^24.10.1",
|
|
78
|
+
"@vitest/coverage-v8": "^4.0.10",
|
|
77
79
|
"abstract-syntax-tree": "^2.22.0",
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
80
|
+
"cross-env": "^10.1.0",
|
|
81
|
+
"lefthook": "^2.0.4",
|
|
82
|
+
"semantic-release": "^25.0.2",
|
|
83
|
+
"tsup": "^8.5.1",
|
|
84
|
+
"tsx": "^4.20.6",
|
|
85
|
+
"typescript": "^5.9.3",
|
|
86
|
+
"vitest": "^4.0.10"
|
|
84
87
|
},
|
|
85
88
|
"engines": {
|
|
86
89
|
"node": ">=20.0.0"
|
|
87
|
-
}
|
|
90
|
+
},
|
|
91
|
+
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c"
|
|
88
92
|
}
|