V1: Recipe Lookup (10)
Read-only recipe and ingredient search.
list_categories,list_recipes,get_recipe_by_idfind_recipes_by_title,filter_recipes_by_cuisineget_recipe_ingredients,find_ingredient_by_name,list_recipes_by_ingredientget_ingredient_by_id,get_technique
V2: Meal Planning (14 total)
scale_recipe_servingscreate_meal_planget_meal_plangenerate_shopping_list
V3: Pantry & Discovery (18 total)
find_recipes_by_pantrysuggest_substitutionlist_common_ingredientsfind_similar_recipes
V4: Personalization (26 total)
add_favorite,list_favoriteslog_cook_event,get_cook_historyadd_recipe_note,get_recipe_notesrate_recipe,list_top_rated
V5: Workflow Helpers (30 total)
generate_equipment_listget_prep_checklistestimate_total_timesuggest_make_ahead
Usage Examples
# Lookup
find_recipes_by_title("sauce")
get_recipe_ingredients(30)
# Planning
plan = create_meal_plan("Week of Feb 16", [{"day": "Mon", "meal": "Dinner", "recipe_id": 30, "servings": 4}])
shopping = generate_shopping_list(plan_id)
# Pantry + workflow
find_recipes_by_pantry(["mayonnaise", "rice vinegar"])
estimate_total_time(11)