get_workout_info
Retrieve detailed workout information for any specific date, including exercises performed, sets, reps, and weights used for fitness tracking and progress analysis.
Instructions
Get detailed workout information for a specific date.
Args: date: Date in YYYY-MM-DD format
Returns: Markdown-formatted workout details including exercises, sets, reps, and weights
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}