cookunity_get_meal_details
Retrieve comprehensive meal details including allergens, ingredients, nutrition facts, diet tags, and chef information for CookUnity meal delivery service.
Instructions
Get full details for a specific meal including allergens, complete ingredients list, nutrition facts, diet tags, and chef info.
Args:
meal_id (number, optional): Numeric meal ID (e.g. 12272)
inventory_id (string, optional): Inventory ID (e.g. "ii-135055242")
date (string, optional): YYYY-MM-DD menu date. Defaults to next Monday.
response_format ('markdown'|'json'): Output format
At least one of meal_id or inventory_id is required.
Returns (JSON): Full meal object with allergens[], ingredients[], nutritionalFacts (incl. protein, sugar), searchBy tags, chef info Returns (Markdown): Formatted card with sections for Description, Nutrition, Ingredients, Allergens, Chef, Tags
Examples:
By ID: { meal_id: 12272 }
By inventory: { inventory_id: "ii-135055242" }
Specific week: { meal_id: 12272, date: "2026-02-23" }
Error Handling:
Meal not found: suggests checking the date or using cookunity_search_meals
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| meal_id | No | Numeric meal ID (e.g. 12272). Provide meal_id or inventory_id. | |
| inventory_id | No | Inventory ID string (e.g. 'ii-135055242'). Provide meal_id or inventory_id. | |
| 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 |