hevy-mcp 1.0.2 → 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 +32 -3
- package/dist/index.js +738 -881
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# hevy-mcp: Model Context Protocol Server for Hevy Fitness API
|
|
2
2
|
|
|
3
|
-
[](https://opensource.org/licenses/MIT)
|
|
4
|
+
[](https://smithery.ai/server/@chrisdoc/hevy-mcp)
|
|
4
5
|
|
|
5
6
|
A Model Context Protocol (MCP) server implementation that interfaces with the [Hevy fitness tracking app](https://www.hevyapp.com/) and its [API](https://api.hevyapp.com/docs/). This server enables AI assistants to access and manage workout data, routines, exercise templates, and more through the Hevy API (requires PRO subscription).
|
|
6
7
|
|
|
@@ -19,6 +20,15 @@ A Model Context Protocol (MCP) server implementation that interfaces with the [H
|
|
|
19
20
|
|
|
20
21
|
## Installation
|
|
21
22
|
|
|
23
|
+
### Installing via Smithery
|
|
24
|
+
|
|
25
|
+
To install hevy-mcp for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@chrisdoc/hevy-mcp):
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npx -y @smithery/cli install @chrisdoc/hevy-mcp --client claude
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Manual Installation
|
|
22
32
|
```bash
|
|
23
33
|
# Clone the repository
|
|
24
34
|
git clone https://github.com/chrisdoc/hevy-mcp.git
|
|
@@ -32,6 +42,25 @@ cp .env.sample .env
|
|
|
32
42
|
# Edit .env and add your Hevy API key
|
|
33
43
|
```
|
|
34
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
|
+
|
|
35
64
|
## Configuration
|
|
36
65
|
|
|
37
66
|
Create a `.env` file in the project root with the following content:
|
|
@@ -128,7 +157,7 @@ npm run build:client
|
|
|
128
157
|
|
|
129
158
|
## License
|
|
130
159
|
|
|
131
|
-
This project is licensed under the
|
|
160
|
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
132
161
|
|
|
133
162
|
## Contributing
|
|
134
163
|
|
|
@@ -137,4 +166,4 @@ Contributions are welcome! Please feel free to submit a Pull Request.
|
|
|
137
166
|
## Acknowledgements
|
|
138
167
|
|
|
139
168
|
- [Model Context Protocol](https://github.com/modelcontextprotocol) for the MCP SDK
|
|
140
|
-
- [Hevy](https://www.hevyapp.com/) for their fitness tracking platform and API
|
|
169
|
+
- [Hevy](https://www.hevyapp.com/) for their fitness tracking platform and API
|