search_recipes
Find recipes by free-text query and optional category filters. Get paginated results of your own creations and public favorites.
Instructions
Search the user's recipes (their own creations + public favourites) by free-text and optional category filters. Read-only and paginated — returns { results: RecipeDto[], totalCount, totalPages, currentPage }. To fetch a single recipe by uuid use get_recipe; to delete one you own use delete_recipe.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| searchString | No | Free-text query matched against recipe name, description, and ingredient names. Case-insensitive. Omit to list all recipes (still paginated). | |
| categories | No | Optional category filter — multiple categories are OR-combined. Values must come from the recipe-categories enum (e.g. "Breakfast", "Vegetarian", "LowCarb"). | |
| currentPage | No | 1-based page index. Page size is fixed server-side. Defaults to 1. |