Skip to main content
Hevy MCP registers 25 tools across 6 categories. Read-only tools are safe for exploration and carry no risk of data change. Mutation tools — those that create or update data — are annotated with MCP mutation hints so compatible clients (such as Claude Desktop and Cursor) can surface a confirmation step before executing them.

Tool categories

Read vs Write tools

Read-only tools

Tools whose names start with get- or search- carry readOnlyHint: true in their MCP annotations. These tools only retrieve data from the Hevy API and produce no side effects. You can call them freely during exploration without worrying about modifying your account.

Mutation tools

Create tools (create-*) and update tools (update-*) carry readOnlyHint: false in their annotations. In addition:
  • Create tools set idempotentHint: false — retrying can produce duplicate records.
  • Update tools set destructiveHint: true and idempotentHint: true — they perform a full PUT-style replacement of the existing record, but repeating the same call yields the same result.
In clients that respect MCP mutation annotations (such as Claude Desktop or Cursor), these tools will prompt for confirmation before executing.
There are no delete tools in Hevy MCP. The Hevy API does not expose delete endpoints for workouts, routines, routine folders, exercise templates, or body measurements, so no corresponding tools exist.

Pagination

All list tools accept two optional parameters for controlling the result window: Most tools default to pageSize: 5 and enforce a maximum of 10 items per page. The get-exercise-templates tool is the exception — it allows up to 100 items per page, making it efficient for bulk catalog retrieval.
Use get-workout-count first to estimate how many pages to expect, then iterate with get-workouts to walk through the full history.

Workouts

7 tools for reading, logging, and editing workouts, plus the get-training-summary workflow.

Routines

5 tools for searching, reading, and creating reusable workout routines.

Exercise Templates

5 tools for browsing and creating the exercise catalog, including full-text search.

Body Measurements

4 tools for reading and recording dated body measurements.

Account

1 tool returning the authenticated user’s ID, display name, and profile URL.