get_daily_meals
Retrieve your daily meal breakdown with foods, servings, and calorie information for any date to track nutrition and monitor eating habits.
Instructions
Get detailed meal-by-meal breakdown with all foods, servings, and calories.
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"
}