action spoonacular_get_dish_pairing_for_wine { label: "Dish Pairing for Wine" description: "Find a dish that goes well with a given wine." provider: spoonacular method: GET path: "/food/wine/dishes" encoding: json input: { type: "object" properties: { wine: { type: "string" } } required: ["wine"] additionalProperties: false } output: { type: "object" required: ["pairings", "text"] properties: { pairings: { type: "array" items: { type: "string" } } text: { type: "string" } } } }