action spoonacular_clear_meal_plan_day { label: "Clear Meal Plan Day" description: "Delete all planned items from the user's meal plan for a specific day." provider: spoonacular method: DELETE path: "/mealplanner/{username}/day/{date}" encoding: json input: { type: "object" properties: { date: { type: "string" } username: { type: "string" } } required: ["date", "username"] additionalProperties: false } output: { type: "object" } }