{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MCPServerInstallation", "title": "MCPServerInstallation", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "template_id": { "type": "string", "format": "uuid", "readOnly": true, "nullable": true }, "name": { "type": "string", "readOnly": true }, "icon_key": { "type": "string", "readOnly": true, "default": "", "description": "Lowercase key from the linked template for brand icons. Empty if custom install (no template)." }, "display_name": { "type": "string", "maxLength": 200 }, "url": { "type": "string", "format": "uri", "maxLength": 2048 }, "description": { "type": "string" }, "auth_type": { "$ref": "#/components/schemas/MCPAuthTypeEnum" }, "is_enabled": { "type": "boolean" }, "needs_reauth": { "type": "boolean", "readOnly": true }, "pending_oauth": { "type": "boolean", "readOnly": true }, "proxy_url": { "type": "string", "readOnly": true }, "tool_count": { "type": "integer", "readOnly": true, "description": "Number of live (non-removed) tools exposed by this installation." }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "updated_at": { "type": "string", "format": "date-time", "readOnly": true, "nullable": true } }, "required": [ "created_at", "icon_key", "id", "name", "needs_reauth", "pending_oauth", "proxy_url", "template_id", "tool_count", "updated_at" ] }