hevy-mcp 1.10.16 → 1.11.10
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 +24 -20
- package/dist/index.js +398 -377
- package/dist/index.js.map +1 -1
- package/package.json +39 -34
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hevy-mcp",
|
|
3
|
-
"version": "1.10
|
|
3
|
+
"version": "1.11.10",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
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",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"dev:http": "MCP_TRANSPORT=http tsx watch --clear-screen=false src/index.ts",
|
|
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,48 @@
|
|
|
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
|
-
"axios": "^1.
|
|
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
|
+
"axios": "^1.13.2",
|
|
59
|
+
"express": "^4.21.2",
|
|
60
|
+
"uuid": "^13.0.0",
|
|
61
|
+
"zod": "^3.25.76"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
63
|
-
"@biomejs/biome": "2.3.
|
|
64
|
-
"@commitlint/cli": "^20.
|
|
64
|
+
"@biomejs/biome": "2.3.6",
|
|
65
|
+
"@commitlint/cli": "^20.1.0",
|
|
65
66
|
"@commitlint/config-conventional": "^20.0.0",
|
|
66
|
-
"@commitlint/prompt-cli": "^20.
|
|
67
|
+
"@commitlint/prompt-cli": "^20.1.0",
|
|
68
|
+
"@faker-js/faker": "^10.1.0",
|
|
67
69
|
"@semantic-release/changelog": "^6.0.3",
|
|
68
70
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
69
71
|
"@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
|
-
"@types/express": "^5.0.
|
|
74
|
-
"@types/node": "^24.
|
|
75
|
-
"@types/uuid": "^
|
|
76
|
-
"@vitest/coverage-v8": "^4.0.
|
|
72
|
+
"@semantic-release/github": "^12.0.2",
|
|
73
|
+
"@semantic-release/npm": "^13.1.2",
|
|
74
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
75
|
+
"@types/express": "^5.0.5",
|
|
76
|
+
"@types/node": "^24.10.1",
|
|
77
|
+
"@types/uuid": "^11.0.0",
|
|
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
|
+
"dotenv": "^17.2.3",
|
|
82
|
+
"lefthook": "^2.0.4",
|
|
83
|
+
"semantic-release": "^25.0.2",
|
|
84
|
+
"tsup": "^8.5.1",
|
|
85
|
+
"tsx": "^4.20.6",
|
|
86
|
+
"typescript": "^5.9.3",
|
|
87
|
+
"vitest": "^4.0.10"
|
|
84
88
|
},
|
|
85
89
|
"engines": {
|
|
86
90
|
"node": ">=20.0.0"
|
|
87
|
-
}
|
|
91
|
+
},
|
|
92
|
+
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c"
|
|
88
93
|
}
|