get-routine-folder
Retrieve detailed information about a specific routine folder by its ID using the Hevy MCP server. Access folder title, order position, and creation/update timestamps for efficient workout management.
Instructions
Get complete details of a specific routine folder by ID. Returns all folder information including title, index (order position), and creation/update timestamps.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folderId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"folderId": {
"type": "integer"
}
},
"required": [
"folderId"
],
"type": "object"
}