{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MCPServerStatusResponse", "title": "MCPServerStatusResponse", "type": "object", "properties": { "status": { "description": "Aggregated deployment status of the MCP server.\n- `deploying` \u2014 single version with desired replicas not yet fully ready.\n- `healthy` \u2014 single version running with no failing pods.\n- `pending` \u2014 no deployment status has been reported yet.\n- `unhealthy` \u2014 one or more failing pods across any version.\n- `upgrading` \u2014 multiple versions running with no failing pods.", "type": "string", "example": "healthy", "enum": [ "deploying", "healthy", "pending", "unhealthy", "upgrading" ], "x-speakeasy-unknown-values": "allow" } }, "required": [ "status" ] }