{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "McpServerStartupFailureReason": { "enum": [ "reauthenticationRequired" ], "type": "string" }, "McpServerStartupState": { "enum": [ "starting", "ready", "failed", "cancelled" ], "type": "string" } }, "properties": { "error": { "type": [ "string", "null" ] }, "failureReason": { "anyOf": [ { "$ref": "#/definitions/McpServerStartupFailureReason" }, { "type": "null" } ] }, "name": { "type": "string" }, "status": { "$ref": "#/definitions/McpServerStartupState" }, "threadId": { "type": [ "string", "null" ] } }, "required": [ "name", "status" ], "title": "McpServerStatusUpdatedNotification", "type": "object" }