Hevy MCP

by chrisdoc
Verified

get-workout-events

Sync workout updates efficiently by retrieving a paged list of events since a specified date. Enables clients to update local workout caches without fetching full datasets.

Instructions

Retrieve a paged list of workout events (updates or deletes) since a given date. Events are ordered from newest to oldest. The intention is to allow clients to keep their local cache of workouts up to date without having to fetch the entire list of workouts.

Input Schema

NameRequiredDescriptionDefault
pageNo
pageSizeNo
sinceNo1970-01-01T00:00:00Z

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "page": { "default": 1, "minimum": 1, "type": "integer" }, "pageSize": { "default": 5, "maximum": 10, "minimum": 1, "type": "integer" }, "since": { "default": "1970-01-01T00:00:00Z", "type": "string" } }, "type": "object" }
ID: vl8qtbflvm