get-exercise-template
Retrieve detailed information about a specific exercise template by ID, including title, type, muscle groups, and customization status, via the Hevy MCP server.
Instructions
Get complete details of a specific exercise template by ID. Returns all template information including title, type, primary muscle group, secondary muscle groups, and whether it's a custom exercise.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exerciseTemplateId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"exerciseTemplateId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"exerciseTemplateId"
],
"type": "object"
}