changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "server": {
+ "type": "string"
+ },
+ "tools": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "annotations": {
+ "additionalProperties": true,
+ "description": "The child's own annotations, verbatim; absent if it declared none.",
+ "properties": {},
+ "type": "object"
+ },
+ "description": {
+ "description": "First line only, capped at 120 characters.",
+ "type": "string"
+ },
+ "hasOutputSchema": {
+ "const": true,
+ "description": "Present when the tool declares an output schema, which get_tool_schema returns.",
+ "type": "boolean"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "description"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "server",
+ "tools"
+ ],
+ "type": "object"
+}