cookunity_search_meals
Search CookUnity meals by keyword across name, description, cuisine, chef, ingredients, and diet tags to find suitable dishes for delivery.
Instructions
Search meals by keyword across name, description, cuisine, chef, ingredients, and diet tags.
Args:
query (string, required): Search keyword (min 1 char)
date (string, optional): YYYY-MM-DD. Defaults to next Monday.
limit (number): Results per page, default 20
offset (number): Pagination offset
response_format ('markdown'|'json'): Output format
Returns (JSON): { query, date, total, count, offset, has_more, meals[] }
Examples:
Find salmon dishes: { query: "salmon" }
Vegan meals: { query: "vegan" }
Chef search: { query: "Mario" }
Error Handling:
Empty query returns validation error
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Keyword to search across meal name, description, cuisine, chef, ingredients, diet tags | |
| date | No | Delivery date in YYYY-MM-DD format (must be a Monday). Defaults to next Monday if omitted. | |
| limit | No | Results per page | |
| offset | No | Pagination offset | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |