action spoonacular_get_wine_description { label: "Wine Description" description: "Get a simple description of a certain wine, e.g. \"malbec\", \"riesling\", or \"merlot\"." provider: spoonacular method: GET path: "/food/wine/description" encoding: json input: { type: "object" properties: { wine: { type: "string" } } required: ["wine"] additionalProperties: false } output: { type: "object" required: ["wineDescription"] properties: { wineDescription: { type: "string" } } } }