Recipe Create Tool
recipe_create_toolCreate a new recipe in Grocy by providing a name, optional instructions, and an ingredient list with product IDs and amounts to manage household cooking.
Instructions
Create a new recipe in Grocy.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Recipe name (e.g. "Banana Bread"). | |
| description | No | Optional description or instructions for the recipe. | |
| ingredients | No | JSON array of ingredient objects. Each object should have "product_id" (integer) and "amount" (number). Use stock_search_tool to find product IDs. Example: '[{"product_id": 1, "amount": 2}, {"product_id": 5, "amount": 0.5}]'. | [] |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |