get_daily_exercise
Retrieve your daily exercise data from MyFitnessPal including cardio activities with duration and calories burned, plus strength training details with sets, reps, and weights for any specific date.
Instructions
Get exercise activities: cardio (duration, calories) and strength (sets, reps, weight).
Args: date: Date in YYYY-MM-DD format (defaults to today)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"type": "object"
}