mirror of
https://github.com/aiclientproxy/proxycast.git
synced 2026-09-17 06:02:35 +08:00
61 lines
1.0 KiB
JSON
61 lines
1.0 KiB
JSON
{
|
|
"$defs": {
|
|
"McpServerStartupFailureReason": {
|
|
"enum": [
|
|
"reauthenticationRequired"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"McpServerStartupState": {
|
|
"enum": [
|
|
"cancelled",
|
|
"failed",
|
|
"ready",
|
|
"starting"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"error": {
|
|
"type": [
|
|
"null",
|
|
"string"
|
|
]
|
|
},
|
|
"failureReason": {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/$defs/McpServerStartupFailureReason"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"status": {
|
|
"$ref": "#/$defs/McpServerStartupState"
|
|
},
|
|
"threadId": {
|
|
"type": [
|
|
"null",
|
|
"string"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"error",
|
|
"failureReason",
|
|
"name",
|
|
"status",
|
|
"threadId"
|
|
],
|
|
"title": "McpServerStatusUpdatedNotification",
|
|
"type": "object"
|
|
}
|