action spoonacular_convert_amounts { label: "Convert Amounts" description: "Convert amounts like \"2 cups of flour to grams\"." provider: spoonacular method: GET path: "/recipes/convert" encoding: json input: { type: "object" properties: { ingredientName: { type: "string" } sourceAmount: { type: "number" } sourceUnit: { type: "string" } targetUnit: { type: "string" } } required: ["ingredientName", "sourceAmount", "sourceUnit", "targetUnit"] additionalProperties: false } output: { type: "object" required: ["answer", "sourceAmount", "sourceUnit", "targetAmount", "targetUnit"] properties: { answer: { type: "string" } sourceAmount: { type: "number" } sourceUnit: { type: "string" } targetAmount: { type: "number" } targetUnit: { type: "string" } } } }