get-workouts
Retrieve a paginated list of workout details including titles, descriptions, start/end times, and exercises performed, ordered from newest to oldest. Use this tool to access and manage fitness data via the Hevy MCP server.
Instructions
Get a paginated list of workouts. Returns workout details including title, description, start/end times, and exercises performed. Results are ordered from newest to oldest.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
pageSize | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"default": 1,
"minimum": 1,
"type": "number"
},
"pageSize": {
"default": 5,
"maximum": 10,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}