🧾 JSONhard
2. Add a structured outputSchema
This tool already has an inputSchema. Add an `outputSchema` so its result is machine-usable: • outputSchema: a JSON Schema object with a required number property "temperature"
How to approach this
An optional `outputSchema` describes the STRUCTURE of a tool's result. When present, the tool should return `structuredContent` matching it, and clients can validate the output — turning free-text results into typed data. Like inputSchema, it's an object JSON Schema (`type: "object"` + properties + required). Here the result must carry a numeric `temperature`.
config.json