hevy-mcp 1.3.0 → 1.3.1
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 +2 -0
- package/dist/index.js +148 -196
- package/dist/index.js.map +1 -1
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hevy-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"build:client": "kiota generate -l typescript -d openapi-spec.json -c HevyClient -o ./src/generated/client --log-level error --clean-output --clear-cache",
|
|
25
25
|
"start": "node dist/index.js",
|
|
26
26
|
"dev": "tsx watch --clear-screen=false src/index.ts",
|
|
27
|
-
"check": "biome check --fix
|
|
27
|
+
"check": "biome check --fix",
|
|
28
28
|
"version:patch": "npm version patch",
|
|
29
29
|
"version:minor": "npm version minor",
|
|
30
30
|
"version:major": "npm version major",
|
|
@@ -43,16 +43,16 @@
|
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"description": "A Model Context Protocol (MCP) server implementation that interfaces with the Hevy fitness tracking app and its API.",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@dotenvx/dotenvx": "^1.
|
|
47
|
-
"@microsoft/kiota-abstractions": "1.0.0-preview.
|
|
48
|
-
"@microsoft/kiota-authentication-azure": "1.0.0-preview.
|
|
49
|
-
"@microsoft/kiota-bundle": "1.0.0-preview.
|
|
50
|
-
"@microsoft/kiota-http-fetchlibrary": "1.0.0-preview.
|
|
51
|
-
"@microsoft/kiota-serialization-json": "1.0.0-preview.
|
|
52
|
-
"@microsoft/kiota-serialization-text": "1.0.0-preview.
|
|
53
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
46
|
+
"@dotenvx/dotenvx": "^1.44.0",
|
|
47
|
+
"@microsoft/kiota-abstractions": "1.0.0-preview.94",
|
|
48
|
+
"@microsoft/kiota-authentication-azure": "1.0.0-preview.94",
|
|
49
|
+
"@microsoft/kiota-bundle": "1.0.0-preview.94",
|
|
50
|
+
"@microsoft/kiota-http-fetchlibrary": "1.0.0-preview.94",
|
|
51
|
+
"@microsoft/kiota-serialization-json": "1.0.0-preview.94",
|
|
52
|
+
"@microsoft/kiota-serialization-text": "1.0.0-preview.94",
|
|
53
|
+
"@modelcontextprotocol/sdk": "^1.11.3",
|
|
54
54
|
"uuid": "^11.1.0",
|
|
55
|
-
"zod": "^3.24.
|
|
55
|
+
"zod": "^3.24.4"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@biomejs/biome": "1.9.4",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"semantic-release": "^24.2.3",
|
|
69
69
|
"tsup": "^8.4.0",
|
|
70
70
|
"tsx": "^4.19.3",
|
|
71
|
-
"typescript": "^5.8.
|
|
71
|
+
"typescript": "^5.8.3",
|
|
72
72
|
"vitest": "^3.1.1"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|