get_date_range_summary
Analyze nutrition trends and insights across specified date ranges to track dietary patterns and progress in MyFitnessPal data.
Instructions
Get aggregate nutrition data over a date range with trends and insights.
Args: start_date: Start date in YYYY-MM-DD format end_date: End date in YYYY-MM-DD format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"type": "string"
},
"start_date": {
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"type": "object"
}