hevy-workouts
Use when the user asks to inspect, summarize, plan, log, or update Hevy workouts, routines, exercises, or body measurements.
Manage Hevy workouts from the terminal: read and summarize training data, search exercise templates, and create or update workouts, routines, exercises, folders, or body measurements.
$ npx -y skills add chrisdoc/hevy-mcp --skill hevy-cli --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/hevy-cliContext preview
The summary Claude sees to decide when to auto-load this skill.
Manage Hevy workouts from the terminal: read and summarize training data, search exercise templates, and create or update workouts, routines, exercises, folders, or body measurements.
name: hevy-cli description: "Manage Hevy workouts from the terminal: read and summarize training data, search exercise templates, and create or update workouts, routines, exercises, folders, or body measurements."
Use this skill to manage workouts in the Hevy app. The CLI supports reads, creates, and updates. Deletion is unsupported.
# One-off use; npm downloads the published package when needed. npx @chrisdoc/hevy-cli --help # Local project install. npm i @chrisdoc/hevy-cli npx hevy --help # Persistent global install. npm i -g @chrisdoc/hevy-cli hevy --help
The package requires Node.js 24 or newer. Use `npx --yes @chrisdoc/hevy-cli ...` in non-interactive scripts. Installation is verified when `npx @chrisdoc/hevy-cli --version` or `hevy --version` prints a version.
The CLI reads credentials only from `HEVY_API_KEY`:
export HEVY_API_KEY='<your-hevy-api-key>'
Keep the key out of command arguments, JSON payloads, URLs, shell history, screenshots, logs, and responses. `--help` and `--version` work without it.
Read routes:
Create/update routes:
The CLI exposes no delete, update-exercise-template, or update-folder routes. If a user requests deletion of any resource, explain that deletion is not supported by the CLI or the Hevy API integration. Suggest a supported alternative, such as archiving the resource in Hevy if available or replacing it.
Run route help whenever a flag or argument is uncertain:
npx @chrisdoc/hevy-cli <command> --help
Use the narrowest read route and date/page range that answers the question. Use `--json` when output will be searched, filtered, or piped.
For exercise work, search first and use the exact returned template ID. Create a custom exercise only when the required movement is absent:
npx @chrisdoc/hevy-cli exercises search "bench press" --json npx @chrisdoc/hevy-cli exercises history <exercise-template-id> \ --start-date 2026-07-01T00:00:00Z \ --end-date 2026-07-31T23:59:59Z \ --json
Every create/update requires `--data <value>` and an explicit `--yes`. `--noYes`, omission, or any value other than `true` is rejected before the CLI reads a file/stdin or calls Hevy. `--data` accepts inline JSON, `@path` for a UTF-8 JSON file, or `@-` for JSON from stdin. Keys are camelCase and payloads are wrapperless; do not submit `{ "workout": ... }` or snake_case.
# Inline folder creation
npx @chrisdoc/hevy-cli folders create \
--data '{"name":"Strength"}' --yes
# Workout creation from a file
npx @chrisdoc/hevy-cli workouts create \
--data @workout.json --yes --json
# Piped full routine replacement
cat routine.json | npx @chrisdoc/hevy-cli routines update routine-123 \
--data @- --yes --json
# Numeric measurement update
npx @chrisdoc/hevy-cli measurements update 2026-07-27 \
--data '{"weightKg":80.5}' --yes --json
# Explicit-null measurement clearing
npx @chrisdoc/hevy-cli measurements update 2026-07-27 \
--data '{"fatPercent":null}' --yes --jsonWorkout and routine updates are full replacements. Include every exercise and set that should remain; omitted content is not preserved. A routine update cannot move a routine to another folder because Hevy's PUT endpoint has no `folderId`.
Measurement updates are patches over Hevy's replacement PUT. The CLI reads the existing date first, preserves omitted fields, replaces supplied numbers, and uses explicit `null` to clear a field. Measurement create needs at least one numeric field; update needs at least one supplied field. The date is the positional argument and cannot appear in `--data`.
Writes are never retried automatically. Creates are not idempotent, and an uncertain network result may already have committed. Verify an uncertain write with a read before deciding whether to retry. A duplicate measurement date is an API conflict (HTTP 409). HTTP 403 is a generic API failure because Hevy also uses it for routine and custom-exercise quotas.
When HTTP 403 occurs, report it as a generic API failure rather than an invalid API key. Check the operation's permissions and routine/custom-exercise quota. HTTP 401 is the authentication failure that should prompt checking `HEVY_API_KEY`.
Successful `--json` commands write one JSON value plus newline to stdout. Errors write one sanitized line to stderr. Exit codes:
Use `YYYY-MM-DD` for measurement dates and ISO timestamps with timezone offsets for history/event filters. Quote user-provided queries and IDs.
Talk to your Hevy workout data from Claude, Cursor, Codex, and other MCP clients. Connect to the hosted MCP · Use the Hevy CLI · Watch the 18-second demo · Explore all 22 tools
Repo: chrisdoc/hevy-mcp
Use when the user asks to inspect, summarize, plan, log, or update Hevy workouts, routines, exercises, or body measurements.