action spoonacular_summarize_recipe { label: "Summarize Recipe" description: "Automatically generate a short description that summarizes key information about the recipe." provider: spoonacular method: GET path: "/recipes/{id}/summary" encoding: json input: { type: "object" properties: { id: { type: "number" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["id", "summary", "title"] properties: { id: { type: "integer" } summary: { type: "string" } title: { type: "string" } } } }