cookunity_get_cart
Retrieve current cart contents for a specific CookUnity delivery date to review items, quantities, and prices before confirming your meal order.
Instructions
Get cart contents for a specific delivery date. Always call fresh — NEVER use cached results.
Args:
date (string, optional): YYYY-MM-DD. Defaults to next Monday.
response_format ('markdown'|'json')
Returns (JSON): { date, can_edit, is_skipped, cutoff, items[{ name, inventory_id, quantity, price, chef }], total_items, total_price }
Note: If the order is already confirmed, cart may be empty — use cookunity_list_deliveries or cookunity_next_delivery instead to see confirmed order items.
Error Handling:
Returns "Date not found" if date is not in upcoming deliveries
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Delivery date in YYYY-MM-DD format (must be a Monday). Defaults to next Monday if omitted. | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |