Recipe Create By Name Tool
recipe_create_by_name_toolCreate a recipe using product names for ingredients; the system resolves them automatically, avoiding the need to look up IDs.
Instructions
Create a recipe with ingredients specified by product name instead of ID.
This is the easier alternative to recipe_create_tool — you can use product names directly, and they will be resolved automatically.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Recipe name (e.g. "Banana Bread"). | |
| description | No | Optional description or instructions. | |
| ingredients | No | JSON array of ingredient objects. Each should have "product" (name string) and "amount" (number). Example: '[{"product": "Flour", "amount": 2}, {"product": "Banana", "amount": 3}]'. | [] |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |