MCP server for the Hevy fitness API โ spec-generated schemas, dry-run-safe writes, easy setup.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Model Context Protocol server for the Hevy fitness API. Manage workouts, routines, exercises, and body measurements from any MCP-compatible client โ Claude Desktop, Claude Code, Cursor, VS Code, and anything else that speaks MCP over stdio.
This MCP server exposes the public Hevy API (api.hevyapp.com/v1) as 22 strongly-typed tools. LLM agents can list workouts, create routines, look up exercise templates, track body measurements, and follow a delta-sync feed โ all without bespoke glue code on the client.
Design goals:
{ dry_run: true, would_send: { ... } } preview unless HEVY_MCP_ALLOW_WRITES=1 is set. The Hevy API has no DELETE on any resource, so accidental writes are permanent; dry-run is the brake.HEVY_API_KEY. No wizards, no config files; just paste the snippet for your client.Schemas are generated from Hevy's own OpenAPI spec and re-synced automatically, so the server adapts to upstream changes instead of drifting. Writes are dry-run by default; every public endpoint is covered.
Maintenance mode. Feature-complete for Hevy's public API. Schemas are generated from Hevy's OpenAPI spec; a scheduled workflow re-syncs them weekly and opens a PR on any change, and a live integration run catches undocumented server changes. Bug reports and PRs welcome via the issue tracker.
node --version).The fastest path is the setup subcommand โ it validates your key and writes a config file the server picks up automatically:
It prompts for your Hevy Pro API key (from https://hevy.com/settings?developer), checks it against the live API, asks whether to enable write operations, and saves everything to ~/.config/hevy-mcp/config.json (mode 0600). Then add the server to your MCP client with no env block needed:
Restart the client โ the 22 Hevy tools appear in the tools panel.
Prefer environment variables? Skip setup and pass HEVY_API_KEY (and optionally HEVY_MCP_ALLOW_WRITES=1) in the env block instead โ see Configuration. Env vars always take precedence over the config file.
Note on bare invocation. Running
npx @diecoscai/hevy-mcpwith no arguments starts a stdio MCP server and blocks, waiting for an MCP client to connect over its stdin/stdout. You don't run it in a terminal yourself โ your MCP client spawns it. Usenpx @diecoscai/hevy-mcp --help,--version, orsetupfor a non-blocking invocation.
Write tools are dry-run by default. The first time you ask the server to create or update anything (a workout, a routine, a body measurement) you'll see a preview payload, not a real change. Enable writes by answering "yes" during
setup, or by settingHEVY_MCP_ALLOW_WRITES=1in theenvblock โ see Safety.
You can also run the server directly from a local clone instead of via npx. Useful if you want to pin a specific commit, debug a tool locally, or run an unreleased version. Contributors should use Development below instead.
Then point your MCP client at the built entry instead of npx @diecoscai/hevy-mcp:
The env block (including HEVY_MCP_ALLOW_WRITES) works identically to the npx snippets below.
Each MCP client spawns the server as a stdio subprocess with HEVY_API_KEY in its env block.
Config path:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.json (Anthropic does not ship an official Linux build of Claude Desktop as of 2026; the path applies only to unofficial community builds.)Add "HEVY_MCP_ALLOW_WRITES": "1" to the env block to enable write tools.
To enable writes, append --env HEVY_MCP_ALLOW_WRITES=1.
Config path: ~/.cursor/mcp.json. Same shape as Claude Desktop:
Create .vscode/mcp.json at the root of your workspace (or put the same shape under a user-level MCP config if your VS Code build supports one):
If you use a third-party MCP extension that expects a different shape, check its docs โ VS Code's native MCP integration landed in 1.102.
See docs/configuration.md for troubleshooting and client-specific notes, and docs/examples.md for end-to-end flows you can run with a connected MCP client.
Every POST and PUT tool handler checks HEVY_MCP_ALLOW_WRITES at call time:
Unset (default) โ the tool returns a preview instead of making the HTTP call:
Set to 1 โ the tool performs the real request.
The Hevy API has no DELETE endpoint on any resource. A bad write cannot be rolled back from the client โ it will persist on your account until you manually fix it in the Hevy app. Dry-run is the first line of defence; explicit opt-in for writes is the second.
The server exposes 23 tools grouped by resource. See docs/tools.md for input schemas and examples.
| Tool | Description |
|---|---|
hevy_get_user_info | Return the authenticated user (name, id, profile URL). |
| Tool | Description |
|---|---|
hevy_list_workouts | Paginated workouts (pageSize 1-10). |
hevy_get_workout | Fetch one workout by UUID. |
hevy_get_workout_count | Total number of workouts on the account. |
hevy_get_workout_events | Delta-sync feed: updated / deleted events since a timestamp. |
hevy_create_workout | Log a new workout (write โ dry-run default). |
hevy_update_workout | Full replace of an existing workout (write โ dry-run default). |
| Tool | Description |
|---|---|
hevy_list_routines | Paginated routines. |
hevy_get_routine | Fetch one routine by UUID. |
hevy_create_routine | Create a routine (write โ dry-run default). |
hevy_update_routine | Full replace of a routine (write โ dry-run default). |
| Tool | Description |
|---|---|
hevy_list_routine_folders | Paginated folders. |
hevy_get_routine_folder | Fetch one folder by positive integer id. |
hevy_create_routine_folder | Create a folder (write โ dry-run default). |
| Tool | Description |
|---|---|
hevy_list_exercise_templates | Paginated exercise library โ the only list that accepts pageSize up to 100. |
hevy_search_exercise_templates | Search templates by name (case-insensitive substring). Resolves a human name (e.g. "bench press") to an exercise_template_id. Paginates the full catalog; results cached for an hour. |
hevy_get_exercise_template | Fetch one template by id (8-char hex for built-ins, UUID for custom). |
hevy_create_exercise_template | Create a custom exercise (write โ dry-run default). |
hevy_get_exercise_history | All logged sets for a given exercise template. |
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/hevy-mcp)<a href="https://allmcps.com/mcp/hevy-mcp"><img src="https://allmcps.com/api/badge/hevy-mcp?style=directory" alt="Hevy MCP on AllMCPs" /></a>