hevy-mcp 1.0.1 → 1.0.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 +14 -4
- package/dist/index.js +738 -881
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
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
|
|
@@ -37,7 +47,7 @@ cp .env.sample .env
|
|
|
37
47
|
Create a `.env` file in the project root with the following content:
|
|
38
48
|
|
|
39
49
|
```
|
|
40
|
-
|
|
50
|
+
HEVY_API_KEY=your_hevy_api_key_here
|
|
41
51
|
```
|
|
42
52
|
|
|
43
53
|
Replace `your_hevy_api_key_here` with your actual Hevy API key.
|
|
@@ -128,7 +138,7 @@ npm run build:client
|
|
|
128
138
|
|
|
129
139
|
## License
|
|
130
140
|
|
|
131
|
-
This project is licensed under the
|
|
141
|
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
132
142
|
|
|
133
143
|
## Contributing
|
|
134
144
|
|
|
@@ -137,4 +147,4 @@ Contributions are welcome! Please feel free to submit a Pull Request.
|
|
|
137
147
|
## Acknowledgements
|
|
138
148
|
|
|
139
149
|
- [Model Context Protocol](https://github.com/modelcontextprotocol) for the MCP SDK
|
|
140
|
-
- [Hevy](https://www.hevyapp.com/) for their fitness tracking platform and API
|
|
150
|
+
- [Hevy](https://www.hevyapp.com/) for their fitness tracking platform and API
|