cook-mcp-windy
Version:
HowToCook MCP Server - Intelligent Chinese recipe management and meal planning for AI assistants
10 lines • 505 B
TypeScript
import { Recipe, ShoppingList, ShoppingListRequest, WeeklyMealPlan } from '../types/index.js';
/**
* Generate shopping list from recipes
*/
export declare function generateShoppingListFromRecipes(recipes: Recipe[], request: ShoppingListRequest): ShoppingList;
/**
* Generate shopping list from meal plan
*/
export declare function generateShoppingListFromMealPlan(mealPlan: WeeklyMealPlan, request: Omit<ShoppingListRequest, 'recipeIds'>): ShoppingList;
//# sourceMappingURL=shoppingListUtils.d.ts.map