{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MCPServerTemplate", "title": "MCPServerTemplate", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "name": { "type": "string", "maxLength": 200 }, "url": { "type": "string", "format": "uri", "maxLength": 2048 }, "docs_url": { "type": "string", "format": "uri", "maxLength": 2048 }, "description": { "type": "string" }, "auth_type": { "$ref": "#/components/schemas/MCPAuthTypeEnum" }, "icon_key": { "type": "string", "maxLength": 100 }, "category": { "$ref": "#/components/schemas/CategoryEnum" } }, "required": [ "id", "name", "url" ] }