hevy-mcp 1.0.3 → 1.0.4

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 CHANGED
@@ -42,6 +42,25 @@ cp .env.sample .env
42
42
  # Edit .env and add your Hevy API key
43
43
  ```
44
44
 
45
+ ### Integration with Cursor
46
+
47
+ To use this MCP server with Cursor, you need to update your `~/.cursor/mcp.json` file by adding the following configuration:
48
+
49
+ ```json
50
+ {
51
+ "hevy-mcp-server": {
52
+ "command": "npx",
53
+ "args": ["-y", "hevy-mcp"],
54
+ "env": {
55
+ "HEVY_API_KEY": "your-api-key-here"
56
+ }
57
+ }
58
+ }
59
+ ```
60
+
61
+ Make sure to replace `your-api-key-here` with your actual Hevy API key.
62
+
63
+
45
64
  ## Configuration
46
65
 
47
66
  Create a `.env` file in the project root with the following content:
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-mcp",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "homepage": "https://github.com/chrisdoc/hevy-mcp#readme",
13
13
  "bin": {
14
- "mcp-server-cloudflare": "dist/index.js"
14
+ "hevy-mcp": "dist/index.js"
15
15
  },
16
16
  "scripts": {
17
17
  "inspect": "npm run build && npx -y @modelcontextprotocol/inspector@latest node dist/index.js",