get_week_plan
Retrieve meal-plan entries between two dates, returning each day's planned recipes or manual items.
Instructions
List meal-plan entries between two dates (inclusive). Read-only. Returns an array of day objects — [{ date, list: [{ type: "recipe" | "manual", uuid?, name? }, …] }, …] — one per day that has any entries. Days with no plan are omitted from the response (so an empty array means nothing is planned in the range, not that the range is invalid). To set or clear a single day use update_week_plan_day.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from | Yes | Range start (inclusive), YYYY-MM-DD. Must be ≤ `to`; same value as `to` returns one day. | |
| to | Yes | Range end (inclusive), YYYY-MM-DD. | |
| listId | No | List UUID — call `list_lists` to discover one. Optional only in stdio mode (falls back to the PANTRIST_LIST_ID env var); required explicitly in HTTP mode. |