list_mealplans_by_date_range
List meal plans within a specified date range, returning details on meal titles, types, cook, and dishes for each scheduled meal.
Instructions
List meal plans within a specified date range.
Args:
date_range: Dictionary containing start and end dates in format YYYY-MM-DD
- start: Start date (required)
- end: End date (required)
Returns:
JSON string containing array of meal plan objects with:
- title: Meal title (cleaned)
- date: Date in YYYY-MM-DD format
- meal_type: Type of meal (breakfast, lunch, dinner, snack)
- cook: Person cooking the meal
- dishes: Array of dish names
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date_range | Yes |