@ancplua/qyl-api-schema 0.5.15 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/api/runner.tsp +711 -31
- package/generated/json-schema/qyl-api-schema.json +4020 -510
- package/generated/openapi/qyl.openapi.json +16631 -5145
- package/generated/ts-runtime/api.d.ts +628 -109
- package/generated/ts-runtime/api.js +96 -8
- package/models/runner-mcp.tsp +990 -141
- package/models/runner.tsp +7 -7
- package/otel/logs.tsp +4 -0
- package/package.json +1 -1
|
@@ -4212,6 +4212,10 @@
|
|
|
4212
4212
|
],
|
|
4213
4213
|
"description": "Associated span ID"
|
|
4214
4214
|
},
|
|
4215
|
+
"event_name": {
|
|
4216
|
+
"type": "string",
|
|
4217
|
+
"description": "Fully qualified category identifying this log record as an event"
|
|
4218
|
+
},
|
|
4215
4219
|
"resource": {
|
|
4216
4220
|
"allOf": [
|
|
4217
4221
|
{
|
|
@@ -6115,831 +6119,1018 @@
|
|
|
6115
6119
|
},
|
|
6116
6120
|
"description": "Trace summary without the full span collection"
|
|
6117
6121
|
},
|
|
6118
|
-
"Runner.Mcp.
|
|
6122
|
+
"Runner.Mcp.RunnerMcpAssertionResult": {
|
|
6119
6123
|
"type": "object",
|
|
6120
6124
|
"required": [
|
|
6121
|
-
"
|
|
6122
|
-
"
|
|
6123
|
-
"
|
|
6125
|
+
"assertionId",
|
|
6126
|
+
"kind",
|
|
6127
|
+
"status"
|
|
6124
6128
|
],
|
|
6125
6129
|
"properties": {
|
|
6126
|
-
"
|
|
6127
|
-
"type": "string"
|
|
6128
|
-
"enum": [
|
|
6129
|
-
"audio"
|
|
6130
|
-
]
|
|
6130
|
+
"assertionId": {
|
|
6131
|
+
"type": "string"
|
|
6131
6132
|
},
|
|
6132
|
-
"
|
|
6133
|
-
"type": "string"
|
|
6134
|
-
"contentEncoding": "base64"
|
|
6133
|
+
"kind": {
|
|
6134
|
+
"type": "string"
|
|
6135
6135
|
},
|
|
6136
|
-
"
|
|
6136
|
+
"status": {
|
|
6137
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpAssertionStatus"
|
|
6138
|
+
},
|
|
6139
|
+
"message": {
|
|
6137
6140
|
"type": "string"
|
|
6138
|
-
}
|
|
6141
|
+
},
|
|
6142
|
+
"actual": {}
|
|
6139
6143
|
},
|
|
6140
6144
|
"unevaluatedProperties": {
|
|
6141
6145
|
"not": {}
|
|
6142
6146
|
},
|
|
6143
|
-
"
|
|
6144
|
-
|
|
6145
|
-
|
|
6146
|
-
|
|
6147
|
+
"description": "Outcome of one assertion with sanitized actual evidence when useful."
|
|
6148
|
+
},
|
|
6149
|
+
"Runner.Mcp.RunnerMcpAssertionStatus": {
|
|
6150
|
+
"type": "string",
|
|
6151
|
+
"enum": [
|
|
6152
|
+
"passed",
|
|
6153
|
+
"failed",
|
|
6154
|
+
"error",
|
|
6155
|
+
"skipped"
|
|
6147
6156
|
],
|
|
6148
|
-
"description": "
|
|
6157
|
+
"description": "Assertion outcome reported by an evaluation."
|
|
6149
6158
|
},
|
|
6150
|
-
"Runner.Mcp.
|
|
6159
|
+
"Runner.Mcp.RunnerMcpBuiltinServerConfiguration": {
|
|
6151
6160
|
"type": "object",
|
|
6152
6161
|
"required": [
|
|
6153
|
-
"
|
|
6162
|
+
"transport",
|
|
6163
|
+
"name"
|
|
6154
6164
|
],
|
|
6155
6165
|
"properties": {
|
|
6156
|
-
"
|
|
6166
|
+
"transport": {
|
|
6157
6167
|
"type": "string",
|
|
6158
|
-
"
|
|
6168
|
+
"enum": [
|
|
6169
|
+
"builtin"
|
|
6170
|
+
]
|
|
6171
|
+
},
|
|
6172
|
+
"name": {
|
|
6173
|
+
"type": "string",
|
|
6174
|
+
"minLength": 1
|
|
6159
6175
|
}
|
|
6160
6176
|
},
|
|
6161
6177
|
"unevaluatedProperties": {
|
|
6162
6178
|
"not": {}
|
|
6163
6179
|
},
|
|
6164
|
-
"
|
|
6165
|
-
{
|
|
6166
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpResourceContentMetadata"
|
|
6167
|
-
}
|
|
6168
|
-
],
|
|
6169
|
-
"description": "Base64-encoded resource content returned by an MCP server."
|
|
6170
|
-
},
|
|
6171
|
-
"Runner.Mcp.RunnerMcpContent": {
|
|
6172
|
-
"oneOf": [
|
|
6173
|
-
{
|
|
6174
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTextContent"
|
|
6175
|
-
},
|
|
6176
|
-
{
|
|
6177
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpImageContent"
|
|
6178
|
-
},
|
|
6179
|
-
{
|
|
6180
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpAudioContent"
|
|
6181
|
-
},
|
|
6182
|
-
{
|
|
6183
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEmbeddedResourceContent"
|
|
6184
|
-
},
|
|
6185
|
-
{
|
|
6186
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpResourceLinkContent"
|
|
6187
|
-
},
|
|
6188
|
-
{
|
|
6189
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpToolUseContent"
|
|
6190
|
-
},
|
|
6191
|
-
{
|
|
6192
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpToolResultContent"
|
|
6193
|
-
}
|
|
6194
|
-
],
|
|
6195
|
-
"description": "One MCP content item. The type literal selects the required variant fields."
|
|
6196
|
-
},
|
|
6197
|
-
"Runner.Mcp.RunnerMcpContentMetadata": {
|
|
6198
|
-
"type": "object",
|
|
6199
|
-
"properties": {
|
|
6200
|
-
"annotations": {
|
|
6201
|
-
"type": "object",
|
|
6202
|
-
"unevaluatedProperties": {}
|
|
6203
|
-
},
|
|
6204
|
-
"_meta": {
|
|
6205
|
-
"type": "object",
|
|
6206
|
-
"unevaluatedProperties": {}
|
|
6207
|
-
}
|
|
6208
|
-
},
|
|
6209
|
-
"description": "Metadata shared by every MCP content variant."
|
|
6180
|
+
"description": "Sanitized built-in MCP server configuration."
|
|
6210
6181
|
},
|
|
6211
|
-
"Runner.Mcp.
|
|
6182
|
+
"Runner.Mcp.RunnerMcpConnectionSnapshot": {
|
|
6212
6183
|
"type": "object",
|
|
6213
6184
|
"required": [
|
|
6214
|
-
"
|
|
6215
|
-
"
|
|
6185
|
+
"status",
|
|
6186
|
+
"changedAt"
|
|
6216
6187
|
],
|
|
6217
6188
|
"properties": {
|
|
6218
|
-
"
|
|
6189
|
+
"status": {
|
|
6190
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpConnectionStatus"
|
|
6191
|
+
},
|
|
6192
|
+
"changedAt": {
|
|
6219
6193
|
"type": "string",
|
|
6220
|
-
"
|
|
6221
|
-
"resource"
|
|
6222
|
-
]
|
|
6194
|
+
"format": "date-time"
|
|
6223
6195
|
},
|
|
6224
|
-
"
|
|
6225
|
-
"
|
|
6196
|
+
"connectedAt": {
|
|
6197
|
+
"type": "string",
|
|
6198
|
+
"format": "date-time"
|
|
6199
|
+
},
|
|
6200
|
+
"disconnectedAt": {
|
|
6201
|
+
"type": "string",
|
|
6202
|
+
"format": "date-time"
|
|
6203
|
+
},
|
|
6204
|
+
"initialization": {
|
|
6205
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpInitializationSnapshot"
|
|
6206
|
+
},
|
|
6207
|
+
"recentError": {
|
|
6208
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpError"
|
|
6226
6209
|
}
|
|
6227
6210
|
},
|
|
6228
6211
|
"unevaluatedProperties": {
|
|
6229
6212
|
"not": {}
|
|
6230
6213
|
},
|
|
6231
|
-
"
|
|
6232
|
-
|
|
6233
|
-
|
|
6234
|
-
|
|
6214
|
+
"description": "Current connection state and most recent initialization evidence for one MCP server."
|
|
6215
|
+
},
|
|
6216
|
+
"Runner.Mcp.RunnerMcpConnectionStatus": {
|
|
6217
|
+
"type": "string",
|
|
6218
|
+
"enum": [
|
|
6219
|
+
"disconnected",
|
|
6220
|
+
"connecting",
|
|
6221
|
+
"connected",
|
|
6222
|
+
"disconnecting",
|
|
6223
|
+
"reconnecting",
|
|
6224
|
+
"failed"
|
|
6235
6225
|
],
|
|
6236
|
-
"description": "
|
|
6226
|
+
"description": "Connection lifecycle for one configured MCP server."
|
|
6237
6227
|
},
|
|
6238
|
-
"Runner.Mcp.
|
|
6228
|
+
"Runner.Mcp.RunnerMcpDiscoveryCollection": {
|
|
6239
6229
|
"type": "object",
|
|
6240
6230
|
"required": [
|
|
6241
|
-
"
|
|
6231
|
+
"items",
|
|
6232
|
+
"count",
|
|
6233
|
+
"complete",
|
|
6234
|
+
"discoveredAt"
|
|
6242
6235
|
],
|
|
6243
6236
|
"properties": {
|
|
6244
|
-
"
|
|
6245
|
-
"type": "
|
|
6237
|
+
"items": {
|
|
6238
|
+
"type": "array",
|
|
6239
|
+
"items": {}
|
|
6246
6240
|
},
|
|
6247
|
-
"
|
|
6248
|
-
"type": "
|
|
6241
|
+
"count": {
|
|
6242
|
+
"type": "integer",
|
|
6243
|
+
"format": "int32",
|
|
6244
|
+
"minimum": 0
|
|
6249
6245
|
},
|
|
6250
|
-
"
|
|
6251
|
-
"type": "
|
|
6252
|
-
|
|
6253
|
-
|
|
6254
|
-
|
|
6246
|
+
"complete": {
|
|
6247
|
+
"type": "boolean"
|
|
6248
|
+
},
|
|
6249
|
+
"cursor": {
|
|
6250
|
+
"type": "string"
|
|
6255
6251
|
},
|
|
6256
|
-
"
|
|
6252
|
+
"nextCursor": {
|
|
6257
6253
|
"type": "string"
|
|
6254
|
+
},
|
|
6255
|
+
"discoveredAt": {
|
|
6256
|
+
"type": "string",
|
|
6257
|
+
"format": "date-time"
|
|
6258
6258
|
}
|
|
6259
6259
|
},
|
|
6260
6260
|
"unevaluatedProperties": {
|
|
6261
6261
|
"not": {}
|
|
6262
6262
|
},
|
|
6263
|
-
"description": "
|
|
6263
|
+
"description": "One discovered MCP entity collection. Every item remains the SDK-validated opaque entity."
|
|
6264
6264
|
},
|
|
6265
|
-
"Runner.Mcp.
|
|
6265
|
+
"Runner.Mcp.RunnerMcpDiscoverySnapshot": {
|
|
6266
6266
|
"type": "object",
|
|
6267
6267
|
"required": [
|
|
6268
|
-
"
|
|
6269
|
-
"
|
|
6270
|
-
"
|
|
6268
|
+
"serverId",
|
|
6269
|
+
"startedAt",
|
|
6270
|
+
"completedAt",
|
|
6271
|
+
"tools",
|
|
6272
|
+
"resources",
|
|
6273
|
+
"resourceTemplates",
|
|
6274
|
+
"prompts"
|
|
6271
6275
|
],
|
|
6272
6276
|
"properties": {
|
|
6273
|
-
"
|
|
6277
|
+
"serverId": {
|
|
6278
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerId"
|
|
6279
|
+
},
|
|
6280
|
+
"startedAt": {
|
|
6274
6281
|
"type": "string",
|
|
6275
|
-
"
|
|
6276
|
-
"image"
|
|
6277
|
-
]
|
|
6282
|
+
"format": "date-time"
|
|
6278
6283
|
},
|
|
6279
|
-
"
|
|
6284
|
+
"completedAt": {
|
|
6280
6285
|
"type": "string",
|
|
6281
|
-
"
|
|
6286
|
+
"format": "date-time"
|
|
6282
6287
|
},
|
|
6283
|
-
"
|
|
6284
|
-
"
|
|
6288
|
+
"tools": {
|
|
6289
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpDiscoveryCollection"
|
|
6290
|
+
},
|
|
6291
|
+
"resources": {
|
|
6292
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpDiscoveryCollection"
|
|
6293
|
+
},
|
|
6294
|
+
"resourceTemplates": {
|
|
6295
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpDiscoveryCollection"
|
|
6296
|
+
},
|
|
6297
|
+
"prompts": {
|
|
6298
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpDiscoveryCollection"
|
|
6285
6299
|
}
|
|
6286
6300
|
},
|
|
6287
6301
|
"unevaluatedProperties": {
|
|
6288
6302
|
"not": {}
|
|
6289
6303
|
},
|
|
6290
|
-
"
|
|
6291
|
-
{
|
|
6292
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpContentMetadata"
|
|
6293
|
-
}
|
|
6294
|
-
],
|
|
6295
|
-
"description": "Base64-encoded image content."
|
|
6296
|
-
},
|
|
6297
|
-
"Runner.Mcp.RunnerMcpResourceContent": {
|
|
6298
|
-
"oneOf": [
|
|
6299
|
-
{
|
|
6300
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTextResourceContent"
|
|
6301
|
-
},
|
|
6302
|
-
{
|
|
6303
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpBlobResourceContent"
|
|
6304
|
-
}
|
|
6305
|
-
],
|
|
6306
|
-
"description": "Exactly one MCP text or blob resource variant."
|
|
6304
|
+
"description": "Complete MCP capability discovery evidence for one server."
|
|
6307
6305
|
},
|
|
6308
|
-
"Runner.Mcp.
|
|
6306
|
+
"Runner.Mcp.RunnerMcpEnvironmentSecretReference": {
|
|
6309
6307
|
"type": "object",
|
|
6310
6308
|
"required": [
|
|
6311
|
-
"
|
|
6309
|
+
"name",
|
|
6310
|
+
"secret"
|
|
6312
6311
|
],
|
|
6313
6312
|
"properties": {
|
|
6314
|
-
"
|
|
6313
|
+
"name": {
|
|
6315
6314
|
"type": "string",
|
|
6316
|
-
"
|
|
6315
|
+
"pattern": "^[A-Za-z_][A-Za-z0-9_]*$"
|
|
6317
6316
|
},
|
|
6318
|
-
"
|
|
6319
|
-
"
|
|
6320
|
-
},
|
|
6321
|
-
"_meta": {
|
|
6322
|
-
"type": "object",
|
|
6323
|
-
"unevaluatedProperties": {}
|
|
6317
|
+
"secret": {
|
|
6318
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpSecretReference"
|
|
6324
6319
|
}
|
|
6325
6320
|
},
|
|
6326
|
-
"
|
|
6321
|
+
"unevaluatedProperties": {
|
|
6322
|
+
"not": {}
|
|
6323
|
+
},
|
|
6324
|
+
"description": "Environment variable whose value is resolved from a secret reference at connection time."
|
|
6327
6325
|
},
|
|
6328
|
-
"Runner.Mcp.
|
|
6326
|
+
"Runner.Mcp.RunnerMcpError": {
|
|
6329
6327
|
"type": "object",
|
|
6330
6328
|
"required": [
|
|
6331
|
-
"
|
|
6332
|
-
"
|
|
6333
|
-
"
|
|
6329
|
+
"category",
|
|
6330
|
+
"code",
|
|
6331
|
+
"message",
|
|
6332
|
+
"occurredAt",
|
|
6333
|
+
"retryable"
|
|
6334
6334
|
],
|
|
6335
6335
|
"properties": {
|
|
6336
|
-
"
|
|
6337
|
-
"
|
|
6338
|
-
"enum": [
|
|
6339
|
-
"resource_link"
|
|
6340
|
-
]
|
|
6341
|
-
},
|
|
6342
|
-
"uri": {
|
|
6343
|
-
"type": "string",
|
|
6344
|
-
"format": "uri"
|
|
6336
|
+
"category": {
|
|
6337
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpErrorCategory"
|
|
6345
6338
|
},
|
|
6346
|
-
"
|
|
6347
|
-
"type": "string"
|
|
6348
|
-
},
|
|
6349
|
-
"title": {
|
|
6339
|
+
"code": {
|
|
6350
6340
|
"type": "string"
|
|
6351
6341
|
},
|
|
6352
|
-
"
|
|
6342
|
+
"message": {
|
|
6353
6343
|
"type": "string"
|
|
6354
6344
|
},
|
|
6355
|
-
"
|
|
6356
|
-
"type": "string"
|
|
6345
|
+
"occurredAt": {
|
|
6346
|
+
"type": "string",
|
|
6347
|
+
"format": "date-time"
|
|
6357
6348
|
},
|
|
6358
|
-
"
|
|
6359
|
-
"type": "
|
|
6360
|
-
"format": "int64",
|
|
6361
|
-
"minimum": 0
|
|
6349
|
+
"retryable": {
|
|
6350
|
+
"type": "boolean"
|
|
6362
6351
|
},
|
|
6363
|
-
"
|
|
6364
|
-
"
|
|
6365
|
-
"items": {
|
|
6366
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpIcon"
|
|
6367
|
-
}
|
|
6352
|
+
"details": {
|
|
6353
|
+
"description": "Sanitized implementation details with credentials and secret values removed."
|
|
6368
6354
|
}
|
|
6369
6355
|
},
|
|
6370
6356
|
"unevaluatedProperties": {
|
|
6371
6357
|
"not": {}
|
|
6372
6358
|
},
|
|
6373
|
-
"
|
|
6374
|
-
{
|
|
6375
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpContentMetadata"
|
|
6376
|
-
}
|
|
6377
|
-
],
|
|
6378
|
-
"description": "A link to a resource that an MCP server can read."
|
|
6359
|
+
"description": "Typed, sanitized failure captured by the MCP workbench."
|
|
6379
6360
|
},
|
|
6380
|
-
"Runner.Mcp.
|
|
6381
|
-
"type": "
|
|
6382
|
-
"
|
|
6383
|
-
"
|
|
6361
|
+
"Runner.Mcp.RunnerMcpErrorCategory": {
|
|
6362
|
+
"type": "string",
|
|
6363
|
+
"enum": [
|
|
6364
|
+
"authentication",
|
|
6365
|
+
"transport",
|
|
6366
|
+
"protocol",
|
|
6367
|
+
"serialization",
|
|
6368
|
+
"schema_validation",
|
|
6369
|
+
"tool_error",
|
|
6370
|
+
"timeout",
|
|
6371
|
+
"cancelled",
|
|
6372
|
+
"internal"
|
|
6384
6373
|
],
|
|
6385
|
-
"
|
|
6386
|
-
"uri": {
|
|
6387
|
-
"type": "string",
|
|
6388
|
-
"format": "uri"
|
|
6389
|
-
},
|
|
6390
|
-
"_meta": {
|
|
6391
|
-
"type": "object",
|
|
6392
|
-
"unevaluatedProperties": {}
|
|
6393
|
-
}
|
|
6394
|
-
},
|
|
6395
|
-
"unevaluatedProperties": {
|
|
6396
|
-
"not": {}
|
|
6397
|
-
},
|
|
6398
|
-
"description": "Resource URI accepted by the runner's MCP projection."
|
|
6374
|
+
"description": "Stable category for a workbench, transport, protocol, or tool execution error."
|
|
6399
6375
|
},
|
|
6400
|
-
"Runner.Mcp.
|
|
6376
|
+
"Runner.Mcp.RunnerMcpEvaluationComparisonRequest": {
|
|
6401
6377
|
"type": "object",
|
|
6402
6378
|
"required": [
|
|
6403
|
-
"
|
|
6379
|
+
"baselineRunId",
|
|
6380
|
+
"candidateRunId"
|
|
6404
6381
|
],
|
|
6405
6382
|
"properties": {
|
|
6406
|
-
"
|
|
6407
|
-
"
|
|
6408
|
-
"items": {
|
|
6409
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpResourceContent"
|
|
6410
|
-
}
|
|
6383
|
+
"baselineRunId": {
|
|
6384
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunId"
|
|
6411
6385
|
},
|
|
6412
|
-
"
|
|
6413
|
-
"
|
|
6414
|
-
"unevaluatedProperties": {}
|
|
6386
|
+
"candidateRunId": {
|
|
6387
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunId"
|
|
6415
6388
|
}
|
|
6416
6389
|
},
|
|
6417
6390
|
"unevaluatedProperties": {
|
|
6418
6391
|
"not": {}
|
|
6419
6392
|
},
|
|
6420
|
-
"description": "
|
|
6393
|
+
"description": "Request to compare a baseline MCP evaluation run with a candidate run."
|
|
6421
6394
|
},
|
|
6422
|
-
"Runner.Mcp.
|
|
6395
|
+
"Runner.Mcp.RunnerMcpEvaluationExport": {
|
|
6423
6396
|
"type": "object",
|
|
6424
6397
|
"required": [
|
|
6425
|
-
"
|
|
6398
|
+
"id",
|
|
6399
|
+
"runId",
|
|
6400
|
+
"format",
|
|
6426
6401
|
"status",
|
|
6427
|
-
"
|
|
6428
|
-
"lastUpdatedAt"
|
|
6402
|
+
"requestedAt"
|
|
6429
6403
|
],
|
|
6430
6404
|
"properties": {
|
|
6431
|
-
"
|
|
6432
|
-
"
|
|
6405
|
+
"id": {
|
|
6406
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExportId"
|
|
6433
6407
|
},
|
|
6434
|
-
"
|
|
6435
|
-
"$ref": "#/$defs/Runner.Mcp.
|
|
6408
|
+
"runId": {
|
|
6409
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunId"
|
|
6436
6410
|
},
|
|
6437
|
-
"
|
|
6438
|
-
"
|
|
6411
|
+
"format": {
|
|
6412
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExportFormat"
|
|
6439
6413
|
},
|
|
6440
|
-
"
|
|
6414
|
+
"status": {
|
|
6415
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExportStatus"
|
|
6416
|
+
},
|
|
6417
|
+
"requestedAt": {
|
|
6441
6418
|
"type": "string",
|
|
6442
6419
|
"format": "date-time"
|
|
6443
6420
|
},
|
|
6444
|
-
"
|
|
6421
|
+
"completedAt": {
|
|
6445
6422
|
"type": "string",
|
|
6446
6423
|
"format": "date-time"
|
|
6447
6424
|
},
|
|
6448
|
-
"
|
|
6449
|
-
"type": "
|
|
6450
|
-
"format": "double"
|
|
6425
|
+
"mediaType": {
|
|
6426
|
+
"type": "string"
|
|
6451
6427
|
},
|
|
6452
|
-
"
|
|
6453
|
-
"type": "
|
|
6454
|
-
|
|
6428
|
+
"fileName": {
|
|
6429
|
+
"type": "string"
|
|
6430
|
+
},
|
|
6431
|
+
"byteSize": {
|
|
6432
|
+
"$ref": "#/$defs/Common.ByteSize"
|
|
6433
|
+
},
|
|
6434
|
+
"sha256": {
|
|
6435
|
+
"$ref": "#/$defs/Common.Sha256Hash"
|
|
6436
|
+
},
|
|
6437
|
+
"error": {
|
|
6438
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpError"
|
|
6455
6439
|
}
|
|
6456
6440
|
},
|
|
6457
6441
|
"unevaluatedProperties": {
|
|
6458
6442
|
"not": {}
|
|
6459
6443
|
},
|
|
6460
|
-
"description": "
|
|
6444
|
+
"description": "Metadata for one generated evaluation JSON or readable report artifact."
|
|
6461
6445
|
},
|
|
6462
|
-
"Runner.Mcp.
|
|
6446
|
+
"Runner.Mcp.RunnerMcpEvaluationExportAccepted": {
|
|
6463
6447
|
"type": "object",
|
|
6448
|
+
"required": [
|
|
6449
|
+
"export"
|
|
6450
|
+
],
|
|
6464
6451
|
"properties": {
|
|
6465
|
-
"
|
|
6466
|
-
"
|
|
6467
|
-
"format": "double"
|
|
6452
|
+
"export": {
|
|
6453
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExport"
|
|
6468
6454
|
}
|
|
6469
6455
|
},
|
|
6470
6456
|
"unevaluatedProperties": {
|
|
6471
6457
|
"not": {}
|
|
6472
6458
|
},
|
|
6473
|
-
"description": "
|
|
6474
|
-
},
|
|
6475
|
-
"Runner.Mcp.RunnerMcpTaskStatus": {
|
|
6476
|
-
"type": "string",
|
|
6477
|
-
"enum": [
|
|
6478
|
-
"working",
|
|
6479
|
-
"input_required",
|
|
6480
|
-
"completed",
|
|
6481
|
-
"failed",
|
|
6482
|
-
"cancelled"
|
|
6483
|
-
],
|
|
6484
|
-
"description": "Lifecycle state of an MCP task returned by a task-augmented tool call."
|
|
6459
|
+
"description": "An evaluation export was accepted and continues asynchronously."
|
|
6485
6460
|
},
|
|
6486
|
-
"Runner.Mcp.
|
|
6461
|
+
"Runner.Mcp.RunnerMcpEvaluationExportArtifact": {
|
|
6487
6462
|
"type": "object",
|
|
6488
6463
|
"required": [
|
|
6489
|
-
"
|
|
6490
|
-
"
|
|
6464
|
+
"export",
|
|
6465
|
+
"payload"
|
|
6491
6466
|
],
|
|
6492
6467
|
"properties": {
|
|
6493
|
-
"
|
|
6494
|
-
"
|
|
6495
|
-
"enum": [
|
|
6496
|
-
"text"
|
|
6497
|
-
]
|
|
6468
|
+
"export": {
|
|
6469
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExport"
|
|
6498
6470
|
},
|
|
6499
|
-
"
|
|
6500
|
-
"
|
|
6471
|
+
"payload": {
|
|
6472
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExportPayload"
|
|
6501
6473
|
}
|
|
6502
6474
|
},
|
|
6503
6475
|
"unevaluatedProperties": {
|
|
6504
6476
|
"not": {}
|
|
6505
6477
|
},
|
|
6506
|
-
"
|
|
6478
|
+
"description": "Ready evaluation export metadata and its TypeSpec-owned content."
|
|
6479
|
+
},
|
|
6480
|
+
"Runner.Mcp.RunnerMcpEvaluationExportFormat": {
|
|
6481
|
+
"type": "string",
|
|
6482
|
+
"enum": [
|
|
6483
|
+
"json",
|
|
6484
|
+
"report"
|
|
6485
|
+
],
|
|
6486
|
+
"description": "Supported evaluation export representation."
|
|
6487
|
+
},
|
|
6488
|
+
"Runner.Mcp.RunnerMcpEvaluationExportId": {
|
|
6489
|
+
"type": "string",
|
|
6490
|
+
"minLength": 1,
|
|
6491
|
+
"maxLength": 128,
|
|
6492
|
+
"description": "Opaque identifier for one generated evaluation export."
|
|
6493
|
+
},
|
|
6494
|
+
"Runner.Mcp.RunnerMcpEvaluationExportPayload": {
|
|
6495
|
+
"oneOf": [
|
|
6496
|
+
{
|
|
6497
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationJsonExportPayload"
|
|
6498
|
+
},
|
|
6507
6499
|
{
|
|
6508
|
-
"$ref": "#/$defs/Runner.Mcp.
|
|
6500
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationReportExportPayload"
|
|
6509
6501
|
}
|
|
6510
6502
|
],
|
|
6511
|
-
"description": "
|
|
6503
|
+
"description": "Exactly one generated evaluation export representation."
|
|
6512
6504
|
},
|
|
6513
|
-
"Runner.Mcp.
|
|
6505
|
+
"Runner.Mcp.RunnerMcpEvaluationExportRequest": {
|
|
6514
6506
|
"type": "object",
|
|
6515
6507
|
"required": [
|
|
6516
|
-
"
|
|
6508
|
+
"format",
|
|
6509
|
+
"idempotencyKey"
|
|
6517
6510
|
],
|
|
6518
6511
|
"properties": {
|
|
6519
|
-
"
|
|
6520
|
-
"
|
|
6512
|
+
"format": {
|
|
6513
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExportFormat"
|
|
6514
|
+
},
|
|
6515
|
+
"includeProtocolEvents": {
|
|
6516
|
+
"type": "boolean",
|
|
6517
|
+
"default": true
|
|
6518
|
+
},
|
|
6519
|
+
"includeTelemetry": {
|
|
6520
|
+
"type": "boolean",
|
|
6521
|
+
"default": true
|
|
6522
|
+
},
|
|
6523
|
+
"idempotencyKey": {
|
|
6524
|
+
"type": "string",
|
|
6525
|
+
"minLength": 8,
|
|
6526
|
+
"maxLength": 256
|
|
6521
6527
|
}
|
|
6522
6528
|
},
|
|
6523
6529
|
"unevaluatedProperties": {
|
|
6524
6530
|
"not": {}
|
|
6525
6531
|
},
|
|
6526
|
-
"
|
|
6527
|
-
{
|
|
6528
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpResourceContentMetadata"
|
|
6529
|
-
}
|
|
6530
|
-
],
|
|
6531
|
-
"description": "Text resource content returned by an MCP server."
|
|
6532
|
+
"description": "Request to generate a machine-readable or readable evaluation export."
|
|
6532
6533
|
},
|
|
6533
|
-
"Runner.Mcp.
|
|
6534
|
-
"type": "
|
|
6535
|
-
"
|
|
6536
|
-
"
|
|
6537
|
-
"
|
|
6534
|
+
"Runner.Mcp.RunnerMcpEvaluationExportStatus": {
|
|
6535
|
+
"type": "string",
|
|
6536
|
+
"enum": [
|
|
6537
|
+
"pending",
|
|
6538
|
+
"ready",
|
|
6539
|
+
"failed"
|
|
6540
|
+
],
|
|
6541
|
+
"description": "Lifecycle for generation of an evaluation export artifact."
|
|
6542
|
+
},
|
|
6543
|
+
"Runner.Mcp.RunnerMcpEvaluationJsonExportPayload": {
|
|
6544
|
+
"type": "object",
|
|
6545
|
+
"required": [
|
|
6546
|
+
"format",
|
|
6547
|
+
"run",
|
|
6548
|
+
"protocolEvents",
|
|
6549
|
+
"telemetry",
|
|
6550
|
+
"exportedAt"
|
|
6538
6551
|
],
|
|
6539
6552
|
"properties": {
|
|
6540
|
-
"
|
|
6541
|
-
"type": "string"
|
|
6542
|
-
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
},
|
|
6546
|
-
"description": {
|
|
6547
|
-
"type": "string"
|
|
6548
|
-
},
|
|
6549
|
-
"inputSchema": {
|
|
6550
|
-
"type": "object",
|
|
6551
|
-
"unevaluatedProperties": {}
|
|
6552
|
-
},
|
|
6553
|
-
"outputSchema": {
|
|
6554
|
-
"type": "object",
|
|
6555
|
-
"unevaluatedProperties": {}
|
|
6553
|
+
"format": {
|
|
6554
|
+
"type": "string",
|
|
6555
|
+
"enum": [
|
|
6556
|
+
"json"
|
|
6557
|
+
]
|
|
6556
6558
|
},
|
|
6557
|
-
"
|
|
6558
|
-
"
|
|
6559
|
-
"unevaluatedProperties": {}
|
|
6559
|
+
"run": {
|
|
6560
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRun"
|
|
6560
6561
|
},
|
|
6561
|
-
"
|
|
6562
|
-
"
|
|
6562
|
+
"protocolEvents": {
|
|
6563
|
+
"type": "array",
|
|
6564
|
+
"items": {
|
|
6565
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpProtocolEvent"
|
|
6566
|
+
}
|
|
6563
6567
|
},
|
|
6564
|
-
"
|
|
6568
|
+
"telemetry": {
|
|
6565
6569
|
"type": "array",
|
|
6566
6570
|
"items": {
|
|
6567
|
-
"$ref": "#/$defs/Runner.Mcp.
|
|
6571
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionTelemetryResponse"
|
|
6568
6572
|
}
|
|
6569
6573
|
},
|
|
6570
|
-
"
|
|
6571
|
-
"type": "
|
|
6572
|
-
"
|
|
6574
|
+
"exportedAt": {
|
|
6575
|
+
"type": "string",
|
|
6576
|
+
"format": "date-time"
|
|
6573
6577
|
}
|
|
6574
6578
|
},
|
|
6575
6579
|
"unevaluatedProperties": {
|
|
6576
6580
|
"not": {}
|
|
6577
6581
|
},
|
|
6578
|
-
"description": "
|
|
6582
|
+
"description": "Machine-readable evaluation export with retained execution, protocol, and optional telemetry evidence."
|
|
6579
6583
|
},
|
|
6580
|
-
"Runner.Mcp.
|
|
6584
|
+
"Runner.Mcp.RunnerMcpEvaluationReportExportPayload": {
|
|
6581
6585
|
"type": "object",
|
|
6582
6586
|
"required": [
|
|
6583
|
-
"
|
|
6587
|
+
"format",
|
|
6588
|
+
"markdown",
|
|
6589
|
+
"exportedAt"
|
|
6584
6590
|
],
|
|
6585
6591
|
"properties": {
|
|
6586
|
-
"
|
|
6587
|
-
"type": "string"
|
|
6588
|
-
|
|
6589
|
-
|
|
6590
|
-
|
|
6591
|
-
"unevaluatedProperties": {}
|
|
6592
|
+
"format": {
|
|
6593
|
+
"type": "string",
|
|
6594
|
+
"enum": [
|
|
6595
|
+
"report"
|
|
6596
|
+
]
|
|
6592
6597
|
},
|
|
6593
|
-
"
|
|
6594
|
-
"
|
|
6598
|
+
"markdown": {
|
|
6599
|
+
"type": "string"
|
|
6595
6600
|
},
|
|
6596
|
-
"
|
|
6597
|
-
"type": "
|
|
6598
|
-
"
|
|
6601
|
+
"exportedAt": {
|
|
6602
|
+
"type": "string",
|
|
6603
|
+
"format": "date-time"
|
|
6599
6604
|
}
|
|
6600
6605
|
},
|
|
6601
6606
|
"unevaluatedProperties": {
|
|
6602
6607
|
"not": {}
|
|
6603
6608
|
},
|
|
6604
|
-
"description": "
|
|
6609
|
+
"description": "Human-readable Markdown evaluation report."
|
|
6610
|
+
},
|
|
6611
|
+
"Runner.Mcp.RunnerMcpEvaluationResultStatus": {
|
|
6612
|
+
"type": "string",
|
|
6613
|
+
"enum": [
|
|
6614
|
+
"passed",
|
|
6615
|
+
"failed",
|
|
6616
|
+
"error",
|
|
6617
|
+
"skipped"
|
|
6618
|
+
],
|
|
6619
|
+
"description": "Outcome for one test case within an evaluation run."
|
|
6605
6620
|
},
|
|
6606
|
-
"Runner.Mcp.
|
|
6621
|
+
"Runner.Mcp.RunnerMcpEvaluationRun": {
|
|
6607
6622
|
"type": "object",
|
|
6608
6623
|
"required": [
|
|
6609
|
-
"
|
|
6610
|
-
"
|
|
6624
|
+
"id",
|
|
6625
|
+
"workspaceId",
|
|
6626
|
+
"testCases",
|
|
6627
|
+
"status",
|
|
6628
|
+
"createdAt",
|
|
6629
|
+
"results"
|
|
6611
6630
|
],
|
|
6612
6631
|
"properties": {
|
|
6613
|
-
"
|
|
6632
|
+
"id": {
|
|
6633
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunId"
|
|
6634
|
+
},
|
|
6635
|
+
"workspaceId": {
|
|
6636
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceId"
|
|
6637
|
+
},
|
|
6638
|
+
"suite": {
|
|
6639
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationSuiteSnapshot"
|
|
6640
|
+
},
|
|
6641
|
+
"testCases": {
|
|
6614
6642
|
"type": "array",
|
|
6615
6643
|
"items": {
|
|
6616
|
-
"$ref": "#/$defs/Runner.Mcp.
|
|
6644
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationTestCaseSnapshot"
|
|
6617
6645
|
}
|
|
6618
6646
|
},
|
|
6619
|
-
"
|
|
6620
|
-
"
|
|
6621
|
-
"unevaluatedProperties": {}
|
|
6647
|
+
"status": {
|
|
6648
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunStatus"
|
|
6622
6649
|
},
|
|
6623
|
-
"
|
|
6624
|
-
"type": "
|
|
6650
|
+
"createdAt": {
|
|
6651
|
+
"type": "string",
|
|
6652
|
+
"format": "date-time"
|
|
6653
|
+
},
|
|
6654
|
+
"startedAt": {
|
|
6655
|
+
"type": "string",
|
|
6656
|
+
"format": "date-time"
|
|
6625
6657
|
},
|
|
6626
|
-
"
|
|
6627
|
-
"
|
|
6658
|
+
"completedAt": {
|
|
6659
|
+
"type": "string",
|
|
6660
|
+
"format": "date-time"
|
|
6628
6661
|
},
|
|
6629
|
-
"
|
|
6630
|
-
"type": "
|
|
6631
|
-
"
|
|
6662
|
+
"results": {
|
|
6663
|
+
"type": "array",
|
|
6664
|
+
"items": {
|
|
6665
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationTestResult"
|
|
6666
|
+
}
|
|
6667
|
+
},
|
|
6668
|
+
"summary": {
|
|
6669
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationSummary"
|
|
6670
|
+
},
|
|
6671
|
+
"confirmation": {
|
|
6672
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionConfirmationEvidence"
|
|
6673
|
+
},
|
|
6674
|
+
"telemetry": {
|
|
6675
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetryCorrelation"
|
|
6676
|
+
},
|
|
6677
|
+
"error": {
|
|
6678
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpError"
|
|
6632
6679
|
}
|
|
6633
6680
|
},
|
|
6634
6681
|
"unevaluatedProperties": {
|
|
6635
6682
|
"not": {}
|
|
6636
6683
|
},
|
|
6637
|
-
"description": "
|
|
6684
|
+
"description": "Asynchronous MCP evaluation run with retained per-test evidence."
|
|
6638
6685
|
},
|
|
6639
|
-
"Runner.Mcp.
|
|
6686
|
+
"Runner.Mcp.RunnerMcpEvaluationRunAccepted": {
|
|
6640
6687
|
"type": "object",
|
|
6688
|
+
"required": [
|
|
6689
|
+
"run"
|
|
6690
|
+
],
|
|
6641
6691
|
"properties": {
|
|
6642
|
-
"
|
|
6643
|
-
"$ref": "#/$defs/Runner.Mcp.
|
|
6692
|
+
"run": {
|
|
6693
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRun"
|
|
6644
6694
|
}
|
|
6645
6695
|
},
|
|
6646
6696
|
"unevaluatedProperties": {
|
|
6647
6697
|
"not": {}
|
|
6648
6698
|
},
|
|
6649
|
-
"description": "
|
|
6699
|
+
"description": "An MCP evaluation run was accepted and continues asynchronously."
|
|
6650
6700
|
},
|
|
6651
|
-
"Runner.Mcp.
|
|
6701
|
+
"Runner.Mcp.RunnerMcpEvaluationRunComparison": {
|
|
6652
6702
|
"type": "object",
|
|
6653
6703
|
"required": [
|
|
6654
|
-
"
|
|
6655
|
-
"
|
|
6656
|
-
"
|
|
6704
|
+
"baselineRunId",
|
|
6705
|
+
"candidateRunId",
|
|
6706
|
+
"baseline",
|
|
6707
|
+
"candidate",
|
|
6708
|
+
"successRateDelta",
|
|
6709
|
+
"reliabilityDelta",
|
|
6710
|
+
"tests",
|
|
6711
|
+
"comparedAt"
|
|
6657
6712
|
],
|
|
6658
6713
|
"properties": {
|
|
6659
|
-
"
|
|
6660
|
-
"
|
|
6661
|
-
"enum": [
|
|
6662
|
-
"tool_result"
|
|
6663
|
-
]
|
|
6714
|
+
"baselineRunId": {
|
|
6715
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunId"
|
|
6664
6716
|
},
|
|
6665
|
-
"
|
|
6666
|
-
"
|
|
6717
|
+
"candidateRunId": {
|
|
6718
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunId"
|
|
6719
|
+
},
|
|
6720
|
+
"baseline": {
|
|
6721
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationSummary"
|
|
6722
|
+
},
|
|
6723
|
+
"candidate": {
|
|
6724
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationSummary"
|
|
6725
|
+
},
|
|
6726
|
+
"successRateDelta": {
|
|
6727
|
+
"type": "number",
|
|
6728
|
+
"format": "double"
|
|
6729
|
+
},
|
|
6730
|
+
"reliabilityDelta": {
|
|
6731
|
+
"type": "number",
|
|
6732
|
+
"format": "double"
|
|
6733
|
+
},
|
|
6734
|
+
"p95DurationDeltaMs": {
|
|
6735
|
+
"type": "number",
|
|
6736
|
+
"format": "double"
|
|
6737
|
+
},
|
|
6738
|
+
"tokenDelta": {
|
|
6739
|
+
"type": "integer",
|
|
6740
|
+
"format": "int64"
|
|
6741
|
+
},
|
|
6742
|
+
"costDeltaUsd": {
|
|
6743
|
+
"type": "number",
|
|
6744
|
+
"format": "double"
|
|
6667
6745
|
},
|
|
6668
|
-
"
|
|
6746
|
+
"tests": {
|
|
6669
6747
|
"type": "array",
|
|
6670
6748
|
"items": {
|
|
6671
|
-
"$ref": "#/$defs/Runner.Mcp.
|
|
6749
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationTestComparison"
|
|
6672
6750
|
}
|
|
6673
6751
|
},
|
|
6674
|
-
"
|
|
6675
|
-
"type": "
|
|
6676
|
-
"
|
|
6677
|
-
},
|
|
6678
|
-
"isError": {
|
|
6679
|
-
"type": "boolean"
|
|
6752
|
+
"comparedAt": {
|
|
6753
|
+
"type": "string",
|
|
6754
|
+
"format": "date-time"
|
|
6680
6755
|
}
|
|
6681
6756
|
},
|
|
6682
6757
|
"unevaluatedProperties": {
|
|
6683
6758
|
"not": {}
|
|
6684
6759
|
},
|
|
6685
|
-
"
|
|
6686
|
-
{
|
|
6687
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpContentMetadata"
|
|
6688
|
-
}
|
|
6689
|
-
],
|
|
6690
|
-
"description": "The result of an MCP sampling tool invocation."
|
|
6760
|
+
"description": "Aggregate comparison of two completed MCP evaluation runs."
|
|
6691
6761
|
},
|
|
6692
|
-
"Runner.Mcp.
|
|
6762
|
+
"Runner.Mcp.RunnerMcpEvaluationRunId": {
|
|
6693
6763
|
"type": "string",
|
|
6694
|
-
"
|
|
6695
|
-
|
|
6696
|
-
|
|
6697
|
-
"required"
|
|
6698
|
-
],
|
|
6699
|
-
"description": "Task-augmentation support advertised for an MCP tool."
|
|
6700
|
-
},
|
|
6701
|
-
"Runner.Mcp.RunnerMcpToolUseContent": {
|
|
6702
|
-
"type": "object",
|
|
6703
|
-
"required": [
|
|
6704
|
-
"type",
|
|
6705
|
-
"id",
|
|
6706
|
-
"name",
|
|
6707
|
-
"input"
|
|
6708
|
-
],
|
|
6709
|
-
"properties": {
|
|
6710
|
-
"type": {
|
|
6711
|
-
"type": "string",
|
|
6712
|
-
"enum": [
|
|
6713
|
-
"tool_use"
|
|
6714
|
-
]
|
|
6715
|
-
},
|
|
6716
|
-
"id": {
|
|
6717
|
-
"type": "string"
|
|
6718
|
-
},
|
|
6719
|
-
"name": {
|
|
6720
|
-
"type": "string"
|
|
6721
|
-
},
|
|
6722
|
-
"input": {}
|
|
6723
|
-
},
|
|
6724
|
-
"unevaluatedProperties": {
|
|
6725
|
-
"not": {}
|
|
6726
|
-
},
|
|
6727
|
-
"allOf": [
|
|
6728
|
-
{
|
|
6729
|
-
"$ref": "#/$defs/Runner.Mcp.RunnerMcpContentMetadata"
|
|
6730
|
-
}
|
|
6731
|
-
],
|
|
6732
|
-
"description": "An MCP sampling request to invoke a tool."
|
|
6764
|
+
"minLength": 1,
|
|
6765
|
+
"maxLength": 128,
|
|
6766
|
+
"description": "Opaque identifier for one MCP evaluation run."
|
|
6733
6767
|
},
|
|
6734
|
-
"Runner.Mcp.
|
|
6768
|
+
"Runner.Mcp.RunnerMcpEvaluationRunPage": {
|
|
6735
6769
|
"type": "object",
|
|
6736
6770
|
"required": [
|
|
6737
|
-
"
|
|
6771
|
+
"runs"
|
|
6738
6772
|
],
|
|
6739
6773
|
"properties": {
|
|
6740
|
-
"
|
|
6774
|
+
"runs": {
|
|
6741
6775
|
"type": "array",
|
|
6742
6776
|
"items": {
|
|
6743
|
-
"$ref": "#/$defs/Runner.Mcp.
|
|
6777
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRun"
|
|
6744
6778
|
}
|
|
6745
6779
|
},
|
|
6746
6780
|
"nextCursor": {
|
|
6747
6781
|
"type": "string"
|
|
6748
|
-
},
|
|
6749
|
-
"_meta": {
|
|
6750
|
-
"type": "object",
|
|
6751
|
-
"unevaluatedProperties": {}
|
|
6752
6782
|
}
|
|
6753
6783
|
},
|
|
6754
6784
|
"unevaluatedProperties": {
|
|
6755
6785
|
"not": {}
|
|
6756
6786
|
},
|
|
6757
|
-
"description": "
|
|
6758
|
-
},
|
|
6759
|
-
"Runner.RunnerLogEvents": {
|
|
6760
|
-
"$ref": "#/$defs/Runner.RunnerLogLine"
|
|
6787
|
+
"description": "Cursor page of MCP evaluation runs."
|
|
6761
6788
|
},
|
|
6762
|
-
"Runner.
|
|
6789
|
+
"Runner.Mcp.RunnerMcpEvaluationRunRequest": {
|
|
6763
6790
|
"type": "object",
|
|
6764
6791
|
"required": [
|
|
6765
|
-
"
|
|
6766
|
-
"stream",
|
|
6767
|
-
"line"
|
|
6792
|
+
"idempotencyKey"
|
|
6768
6793
|
],
|
|
6769
6794
|
"properties": {
|
|
6770
|
-
"
|
|
6771
|
-
"type": "string"
|
|
6795
|
+
"idempotencyKey": {
|
|
6796
|
+
"type": "string",
|
|
6797
|
+
"minLength": 8,
|
|
6798
|
+
"maxLength": 256
|
|
6772
6799
|
},
|
|
6773
|
-
"
|
|
6774
|
-
"$ref": "#/$defs/Runner.
|
|
6800
|
+
"confirmation": {
|
|
6801
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionConfirmationRequest"
|
|
6775
6802
|
},
|
|
6776
|
-
"
|
|
6777
|
-
"type": "
|
|
6803
|
+
"concurrency": {
|
|
6804
|
+
"type": "integer",
|
|
6805
|
+
"format": "int32",
|
|
6806
|
+
"minimum": 1,
|
|
6807
|
+
"maximum": 50,
|
|
6808
|
+
"default": 1
|
|
6809
|
+
},
|
|
6810
|
+
"failFast": {
|
|
6811
|
+
"type": "boolean",
|
|
6812
|
+
"default": false
|
|
6778
6813
|
}
|
|
6779
6814
|
},
|
|
6780
|
-
"
|
|
6781
|
-
"not": {}
|
|
6782
|
-
},
|
|
6783
|
-
"description": "One bounded child-process log line exposed by the runner."
|
|
6815
|
+
"description": "Request to execute one test case or suite asynchronously."
|
|
6784
6816
|
},
|
|
6785
|
-
"Runner.
|
|
6817
|
+
"Runner.Mcp.RunnerMcpEvaluationRunStatus": {
|
|
6786
6818
|
"type": "string",
|
|
6787
6819
|
"enum": [
|
|
6788
|
-
"
|
|
6789
|
-
"
|
|
6820
|
+
"queued",
|
|
6821
|
+
"running",
|
|
6822
|
+
"completed",
|
|
6823
|
+
"failed",
|
|
6824
|
+
"cancelled"
|
|
6790
6825
|
],
|
|
6791
|
-
"description": "
|
|
6826
|
+
"description": "Lifecycle for an MCP evaluation run."
|
|
6792
6827
|
},
|
|
6793
|
-
"Runner.
|
|
6828
|
+
"Runner.Mcp.RunnerMcpEvaluationSuiteSnapshot": {
|
|
6794
6829
|
"type": "object",
|
|
6795
6830
|
"required": [
|
|
6831
|
+
"id",
|
|
6796
6832
|
"name",
|
|
6797
|
-
"
|
|
6833
|
+
"testCaseIds",
|
|
6834
|
+
"tags"
|
|
6798
6835
|
],
|
|
6799
6836
|
"properties": {
|
|
6837
|
+
"id": {
|
|
6838
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpSuiteId"
|
|
6839
|
+
},
|
|
6800
6840
|
"name": {
|
|
6801
6841
|
"type": "string"
|
|
6802
6842
|
},
|
|
6803
|
-
"
|
|
6843
|
+
"description": {
|
|
6804
6844
|
"type": "string"
|
|
6845
|
+
},
|
|
6846
|
+
"testCaseIds": {
|
|
6847
|
+
"type": "array",
|
|
6848
|
+
"items": {
|
|
6849
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseId"
|
|
6850
|
+
}
|
|
6851
|
+
},
|
|
6852
|
+
"tags": {
|
|
6853
|
+
"type": "array",
|
|
6854
|
+
"items": {
|
|
6855
|
+
"type": "string"
|
|
6856
|
+
}
|
|
6805
6857
|
}
|
|
6806
6858
|
},
|
|
6807
6859
|
"unevaluatedProperties": {
|
|
6808
6860
|
"not": {}
|
|
6809
6861
|
},
|
|
6810
|
-
"description": "
|
|
6811
|
-
},
|
|
6812
|
-
"Runner.RunnerResourceEvents": {
|
|
6813
|
-
"$ref": "#/$defs/Runner.RunnerResourceState"
|
|
6814
|
-
},
|
|
6815
|
-
"Runner.RunnerResourceKind": {
|
|
6816
|
-
"type": "string",
|
|
6817
|
-
"enum": [
|
|
6818
|
-
"collector",
|
|
6819
|
-
"project",
|
|
6820
|
-
"command",
|
|
6821
|
-
"stdio",
|
|
6822
|
-
"http",
|
|
6823
|
-
"inproc"
|
|
6824
|
-
],
|
|
6825
|
-
"description": "Kind of process or connection supervised by the local qyl runner."
|
|
6826
|
-
},
|
|
6827
|
-
"Runner.RunnerResourceLifecycle": {
|
|
6828
|
-
"type": "string",
|
|
6829
|
-
"enum": [
|
|
6830
|
-
"pending",
|
|
6831
|
-
"starting",
|
|
6832
|
-
"ready",
|
|
6833
|
-
"stopping",
|
|
6834
|
-
"stopped",
|
|
6835
|
-
"failed"
|
|
6836
|
-
],
|
|
6837
|
-
"description": "Lifecycle state of a resource supervised by the local qyl runner."
|
|
6862
|
+
"description": "Immutable suite definition captured when an evaluation run starts."
|
|
6838
6863
|
},
|
|
6839
|
-
"Runner.
|
|
6864
|
+
"Runner.Mcp.RunnerMcpEvaluationSummary": {
|
|
6840
6865
|
"type": "object",
|
|
6841
6866
|
"required": [
|
|
6842
|
-
"
|
|
6843
|
-
"
|
|
6844
|
-
"
|
|
6867
|
+
"total",
|
|
6868
|
+
"passed",
|
|
6869
|
+
"failed",
|
|
6870
|
+
"errors",
|
|
6871
|
+
"skipped",
|
|
6872
|
+
"successRate",
|
|
6873
|
+
"reliability"
|
|
6845
6874
|
],
|
|
6846
6875
|
"properties": {
|
|
6847
|
-
"
|
|
6848
|
-
"type": "string"
|
|
6849
|
-
},
|
|
6850
|
-
"lifecycle": {
|
|
6851
|
-
"$ref": "#/$defs/Runner.RunnerResourceLifecycle"
|
|
6852
|
-
},
|
|
6853
|
-
"timestamp": {
|
|
6854
|
-
"type": "string",
|
|
6855
|
-
"format": "date-time"
|
|
6856
|
-
},
|
|
6857
|
-
"kind": {
|
|
6858
|
-
"$ref": "#/$defs/Runner.RunnerResourceKind"
|
|
6859
|
-
},
|
|
6860
|
-
"allocatedPort": {
|
|
6876
|
+
"total": {
|
|
6861
6877
|
"type": "integer",
|
|
6862
6878
|
"format": "int32",
|
|
6863
|
-
"minimum":
|
|
6864
|
-
"maximum": 65535
|
|
6865
|
-
},
|
|
6866
|
-
"endpoint": {
|
|
6867
|
-
"type": "string",
|
|
6868
|
-
"format": "uri"
|
|
6869
|
-
},
|
|
6870
|
-
"lastError": {
|
|
6871
|
-
"type": "string"
|
|
6872
|
-
},
|
|
6873
|
-
"serverInfo": {
|
|
6874
|
-
"$ref": "#/$defs/Runner.RunnerMcpServerInfo"
|
|
6879
|
+
"minimum": 0
|
|
6875
6880
|
},
|
|
6876
|
-
"
|
|
6881
|
+
"passed": {
|
|
6877
6882
|
"type": "integer",
|
|
6878
6883
|
"format": "int32",
|
|
6879
6884
|
"minimum": 0
|
|
6880
6885
|
},
|
|
6881
|
-
"
|
|
6886
|
+
"failed": {
|
|
6882
6887
|
"type": "integer",
|
|
6883
6888
|
"format": "int32",
|
|
6884
6889
|
"minimum": 0
|
|
6885
|
-
}
|
|
6890
|
+
},
|
|
6891
|
+
"errors": {
|
|
6892
|
+
"type": "integer",
|
|
6893
|
+
"format": "int32",
|
|
6894
|
+
"minimum": 0
|
|
6895
|
+
},
|
|
6896
|
+
"skipped": {
|
|
6897
|
+
"type": "integer",
|
|
6898
|
+
"format": "int32",
|
|
6899
|
+
"minimum": 0
|
|
6900
|
+
},
|
|
6901
|
+
"successRate": {
|
|
6902
|
+
"$ref": "#/$defs/Common.Ratio"
|
|
6903
|
+
},
|
|
6904
|
+
"reliability": {
|
|
6905
|
+
"$ref": "#/$defs/Common.Ratio"
|
|
6906
|
+
},
|
|
6907
|
+
"meanDurationMs": {
|
|
6908
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
6909
|
+
},
|
|
6910
|
+
"p50DurationMs": {
|
|
6911
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
6912
|
+
},
|
|
6913
|
+
"p95DurationMs": {
|
|
6914
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
6915
|
+
},
|
|
6916
|
+
"p99DurationMs": {
|
|
6917
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
6918
|
+
},
|
|
6919
|
+
"tokenUsage": {
|
|
6920
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionTokenUsage"
|
|
6921
|
+
},
|
|
6922
|
+
"cost": {
|
|
6923
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionCost"
|
|
6924
|
+
}
|
|
6886
6925
|
},
|
|
6887
6926
|
"unevaluatedProperties": {
|
|
6888
6927
|
"not": {}
|
|
6889
6928
|
},
|
|
6890
|
-
"description": "
|
|
6929
|
+
"description": "Aggregate correctness, reliability, latency, usage, and cost for an MCP evaluation run."
|
|
6891
6930
|
},
|
|
6892
|
-
"
|
|
6931
|
+
"Runner.Mcp.RunnerMcpEvaluationTestCaseSnapshot": {
|
|
6893
6932
|
"type": "object",
|
|
6894
6933
|
"required": [
|
|
6895
|
-
"
|
|
6896
|
-
"
|
|
6934
|
+
"id",
|
|
6935
|
+
"serverId",
|
|
6936
|
+
"name",
|
|
6937
|
+
"toolName",
|
|
6938
|
+
"timeoutMs",
|
|
6939
|
+
"assertions",
|
|
6940
|
+
"tags"
|
|
6897
6941
|
],
|
|
6898
6942
|
"properties": {
|
|
6899
|
-
"
|
|
6943
|
+
"id": {
|
|
6944
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseId"
|
|
6945
|
+
},
|
|
6946
|
+
"serverId": {
|
|
6947
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerId"
|
|
6948
|
+
},
|
|
6949
|
+
"name": {
|
|
6950
|
+
"type": "string"
|
|
6951
|
+
},
|
|
6952
|
+
"description": {
|
|
6953
|
+
"type": "string"
|
|
6954
|
+
},
|
|
6955
|
+
"toolName": {
|
|
6956
|
+
"type": "string"
|
|
6957
|
+
},
|
|
6958
|
+
"arguments": {},
|
|
6959
|
+
"timeoutMs": {
|
|
6960
|
+
"type": "integer",
|
|
6961
|
+
"format": "int32"
|
|
6962
|
+
},
|
|
6963
|
+
"assertions": {
|
|
6964
|
+
"type": "array",
|
|
6965
|
+
"items": {
|
|
6966
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestAssertion"
|
|
6967
|
+
}
|
|
6968
|
+
},
|
|
6969
|
+
"tags": {
|
|
6970
|
+
"type": "array",
|
|
6971
|
+
"items": {
|
|
6972
|
+
"type": "string"
|
|
6973
|
+
}
|
|
6974
|
+
}
|
|
6975
|
+
},
|
|
6976
|
+
"unevaluatedProperties": {
|
|
6977
|
+
"not": {}
|
|
6978
|
+
},
|
|
6979
|
+
"description": "Immutable reusable-test definition captured when an evaluation run starts."
|
|
6980
|
+
},
|
|
6981
|
+
"Runner.Mcp.RunnerMcpEvaluationTestComparison": {
|
|
6982
|
+
"type": "object",
|
|
6983
|
+
"required": [
|
|
6984
|
+
"testCaseId",
|
|
6985
|
+
"status"
|
|
6986
|
+
],
|
|
6987
|
+
"properties": {
|
|
6988
|
+
"testCaseId": {
|
|
6989
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseId"
|
|
6990
|
+
},
|
|
6991
|
+
"status": {
|
|
6992
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpRegressionStatus"
|
|
6993
|
+
},
|
|
6994
|
+
"baselineStatus": {
|
|
6995
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationResultStatus"
|
|
6996
|
+
},
|
|
6997
|
+
"candidateStatus": {
|
|
6998
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationResultStatus"
|
|
6999
|
+
},
|
|
7000
|
+
"durationDeltaMs": {
|
|
7001
|
+
"type": "number",
|
|
7002
|
+
"format": "double"
|
|
7003
|
+
}
|
|
7004
|
+
},
|
|
7005
|
+
"unevaluatedProperties": {
|
|
7006
|
+
"not": {}
|
|
7007
|
+
},
|
|
7008
|
+
"description": "Per-test comparison across a baseline and candidate MCP evaluation run."
|
|
7009
|
+
},
|
|
7010
|
+
"Runner.Mcp.RunnerMcpEvaluationTestResult": {
|
|
7011
|
+
"type": "object",
|
|
7012
|
+
"required": [
|
|
7013
|
+
"testCase",
|
|
7014
|
+
"status",
|
|
7015
|
+
"assertions"
|
|
7016
|
+
],
|
|
7017
|
+
"properties": {
|
|
7018
|
+
"testCase": {
|
|
7019
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationTestCaseSnapshot"
|
|
7020
|
+
},
|
|
7021
|
+
"executionId": {
|
|
7022
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionId"
|
|
7023
|
+
},
|
|
7024
|
+
"status": {
|
|
7025
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationResultStatus"
|
|
7026
|
+
},
|
|
7027
|
+
"startedAt": {
|
|
6900
7028
|
"type": "string",
|
|
6901
|
-
"
|
|
6902
|
-
"heartbeat"
|
|
6903
|
-
]
|
|
7029
|
+
"format": "date-time"
|
|
6904
7030
|
},
|
|
6905
|
-
"
|
|
7031
|
+
"completedAt": {
|
|
6906
7032
|
"type": "string",
|
|
6907
7033
|
"format": "date-time"
|
|
7034
|
+
},
|
|
7035
|
+
"durationMs": {
|
|
7036
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
7037
|
+
},
|
|
7038
|
+
"assertions": {
|
|
7039
|
+
"type": "array",
|
|
7040
|
+
"items": {
|
|
7041
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpAssertionResult"
|
|
7042
|
+
}
|
|
7043
|
+
},
|
|
7044
|
+
"error": {
|
|
7045
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpError"
|
|
6908
7046
|
}
|
|
6909
7047
|
},
|
|
6910
7048
|
"unevaluatedProperties": {
|
|
6911
7049
|
"not": {}
|
|
6912
7050
|
},
|
|
6913
|
-
"description": "
|
|
7051
|
+
"description": "One test-case result retained by an MCP evaluation run."
|
|
6914
7052
|
},
|
|
6915
|
-
"
|
|
6916
|
-
"
|
|
6917
|
-
|
|
6918
|
-
|
|
7053
|
+
"Runner.Mcp.RunnerMcpExactAssertion": {
|
|
7054
|
+
"type": "object",
|
|
7055
|
+
"required": [
|
|
7056
|
+
"id",
|
|
7057
|
+
"kind",
|
|
7058
|
+
"expected"
|
|
7059
|
+
],
|
|
7060
|
+
"properties": {
|
|
7061
|
+
"id": {
|
|
7062
|
+
"type": "string"
|
|
6919
7063
|
},
|
|
6920
|
-
{
|
|
6921
|
-
"
|
|
7064
|
+
"kind": {
|
|
7065
|
+
"type": "string",
|
|
7066
|
+
"enum": [
|
|
7067
|
+
"exact"
|
|
7068
|
+
]
|
|
7069
|
+
},
|
|
7070
|
+
"path": {
|
|
7071
|
+
"type": "string"
|
|
7072
|
+
},
|
|
7073
|
+
"expected": {}
|
|
7074
|
+
},
|
|
7075
|
+
"unevaluatedProperties": {
|
|
7076
|
+
"not": {}
|
|
7077
|
+
},
|
|
7078
|
+
"description": "Exact JSON value assertion at an optional JSON Pointer path."
|
|
7079
|
+
},
|
|
7080
|
+
"Runner.Mcp.RunnerMcpExecutionAccepted": {
|
|
7081
|
+
"type": "object",
|
|
7082
|
+
"required": [
|
|
7083
|
+
"execution"
|
|
7084
|
+
],
|
|
7085
|
+
"properties": {
|
|
7086
|
+
"execution": {
|
|
7087
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionRecord"
|
|
6922
7088
|
}
|
|
6923
|
-
|
|
7089
|
+
},
|
|
7090
|
+
"unevaluatedProperties": {
|
|
7091
|
+
"not": {}
|
|
7092
|
+
},
|
|
7093
|
+
"description": "An MCP execution was accepted and continues asynchronously."
|
|
6924
7094
|
},
|
|
6925
|
-
"
|
|
7095
|
+
"Runner.Mcp.RunnerMcpExecutionCancelRequest": {
|
|
6926
7096
|
"type": "object",
|
|
6927
7097
|
"required": [
|
|
6928
|
-
"
|
|
6929
|
-
"data",
|
|
6930
|
-
"timestamp"
|
|
7098
|
+
"idempotencyKey"
|
|
6931
7099
|
],
|
|
6932
7100
|
"properties": {
|
|
6933
|
-
"
|
|
7101
|
+
"reason": {
|
|
7102
|
+
"type": "string",
|
|
7103
|
+
"maxLength": 1000
|
|
7104
|
+
},
|
|
7105
|
+
"idempotencyKey": {
|
|
6934
7106
|
"type": "string",
|
|
7107
|
+
"minLength": 8,
|
|
7108
|
+
"maxLength": 256
|
|
7109
|
+
}
|
|
7110
|
+
},
|
|
7111
|
+
"unevaluatedProperties": {
|
|
7112
|
+
"not": {}
|
|
7113
|
+
},
|
|
7114
|
+
"description": "Request to cancel an asynchronous MCP execution where the transport permits cancellation."
|
|
7115
|
+
},
|
|
7116
|
+
"Runner.Mcp.RunnerMcpExecutionConfirmationEvidence": {
|
|
7117
|
+
"type": "object",
|
|
7118
|
+
"required": [
|
|
7119
|
+
"acknowledged",
|
|
7120
|
+
"acknowledgement",
|
|
7121
|
+
"confirmedAt"
|
|
7122
|
+
],
|
|
7123
|
+
"properties": {
|
|
7124
|
+
"acknowledged": {
|
|
7125
|
+
"type": "boolean",
|
|
6935
7126
|
"enum": [
|
|
6936
|
-
|
|
7127
|
+
true
|
|
6937
7128
|
]
|
|
6938
7129
|
},
|
|
6939
|
-
"
|
|
6940
|
-
"
|
|
7130
|
+
"acknowledgement": {
|
|
7131
|
+
"type": "string"
|
|
6941
7132
|
},
|
|
6942
|
-
"
|
|
7133
|
+
"confirmedAt": {
|
|
6943
7134
|
"type": "string",
|
|
6944
7135
|
"format": "date-time"
|
|
6945
7136
|
}
|
|
@@ -6947,7 +7138,3326 @@
|
|
|
6947
7138
|
"unevaluatedProperties": {
|
|
6948
7139
|
"not": {}
|
|
6949
7140
|
},
|
|
6950
|
-
"description": "
|
|
7141
|
+
"description": "Server-timestamped confirmation evidence persisted for a consequential MCP tool invocation."
|
|
7142
|
+
},
|
|
7143
|
+
"Runner.Mcp.RunnerMcpExecutionConfirmationRequest": {
|
|
7144
|
+
"type": "object",
|
|
7145
|
+
"required": [
|
|
7146
|
+
"acknowledged",
|
|
7147
|
+
"acknowledgement"
|
|
7148
|
+
],
|
|
7149
|
+
"properties": {
|
|
7150
|
+
"acknowledged": {
|
|
7151
|
+
"type": "boolean",
|
|
7152
|
+
"enum": [
|
|
7153
|
+
true
|
|
7154
|
+
]
|
|
7155
|
+
},
|
|
7156
|
+
"acknowledgement": {
|
|
7157
|
+
"type": "string"
|
|
7158
|
+
}
|
|
7159
|
+
},
|
|
7160
|
+
"unevaluatedProperties": {
|
|
7161
|
+
"not": {}
|
|
7162
|
+
},
|
|
7163
|
+
"description": "Client acknowledgement supplied when requesting a consequential MCP tool invocation."
|
|
7164
|
+
},
|
|
7165
|
+
"Runner.Mcp.RunnerMcpExecutionCost": {
|
|
7166
|
+
"type": "object",
|
|
7167
|
+
"required": [
|
|
7168
|
+
"amountUsd",
|
|
7169
|
+
"estimated"
|
|
7170
|
+
],
|
|
7171
|
+
"properties": {
|
|
7172
|
+
"amountUsd": {
|
|
7173
|
+
"$ref": "#/$defs/Common.CostUsd"
|
|
7174
|
+
},
|
|
7175
|
+
"estimated": {
|
|
7176
|
+
"type": "boolean"
|
|
7177
|
+
},
|
|
7178
|
+
"source": {
|
|
7179
|
+
"type": "string"
|
|
7180
|
+
}
|
|
7181
|
+
},
|
|
7182
|
+
"unevaluatedProperties": {
|
|
7183
|
+
"not": {}
|
|
7184
|
+
},
|
|
7185
|
+
"description": "USD cost reported or estimated for one MCP execution when available."
|
|
7186
|
+
},
|
|
7187
|
+
"Runner.Mcp.RunnerMcpExecutionEffect": {
|
|
7188
|
+
"type": "string",
|
|
7189
|
+
"enum": [
|
|
7190
|
+
"read_only",
|
|
7191
|
+
"consequential",
|
|
7192
|
+
"unknown"
|
|
7193
|
+
],
|
|
7194
|
+
"description": "How consequential the workbench considers an MCP tool invocation."
|
|
7195
|
+
},
|
|
7196
|
+
"Runner.Mcp.RunnerMcpExecutionId": {
|
|
7197
|
+
"type": "string",
|
|
7198
|
+
"minLength": 1,
|
|
7199
|
+
"maxLength": 128,
|
|
7200
|
+
"description": "Opaque identifier for one asynchronous MCP tool execution."
|
|
7201
|
+
},
|
|
7202
|
+
"Runner.Mcp.RunnerMcpExecutionPage": {
|
|
7203
|
+
"type": "object",
|
|
7204
|
+
"required": [
|
|
7205
|
+
"executions"
|
|
7206
|
+
],
|
|
7207
|
+
"properties": {
|
|
7208
|
+
"executions": {
|
|
7209
|
+
"type": "array",
|
|
7210
|
+
"items": {
|
|
7211
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionRecord"
|
|
7212
|
+
}
|
|
7213
|
+
},
|
|
7214
|
+
"nextCursor": {
|
|
7215
|
+
"type": "string"
|
|
7216
|
+
}
|
|
7217
|
+
},
|
|
7218
|
+
"unevaluatedProperties": {
|
|
7219
|
+
"not": {}
|
|
7220
|
+
},
|
|
7221
|
+
"description": "Cursor page of MCP execution records."
|
|
7222
|
+
},
|
|
7223
|
+
"Runner.Mcp.RunnerMcpExecutionRecord": {
|
|
7224
|
+
"type": "object",
|
|
7225
|
+
"required": [
|
|
7226
|
+
"id",
|
|
7227
|
+
"workspaceId",
|
|
7228
|
+
"serverId",
|
|
7229
|
+
"request",
|
|
7230
|
+
"effect",
|
|
7231
|
+
"status",
|
|
7232
|
+
"createdAt",
|
|
7233
|
+
"attemptCount",
|
|
7234
|
+
"retryCount"
|
|
7235
|
+
],
|
|
7236
|
+
"properties": {
|
|
7237
|
+
"id": {
|
|
7238
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionId"
|
|
7239
|
+
},
|
|
7240
|
+
"workspaceId": {
|
|
7241
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceId"
|
|
7242
|
+
},
|
|
7243
|
+
"serverId": {
|
|
7244
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerId"
|
|
7245
|
+
},
|
|
7246
|
+
"request": {
|
|
7247
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionRequest"
|
|
7248
|
+
},
|
|
7249
|
+
"effect": {
|
|
7250
|
+
"allOf": [
|
|
7251
|
+
{
|
|
7252
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionEffect"
|
|
7253
|
+
}
|
|
7254
|
+
],
|
|
7255
|
+
"description": "Server-derived effect from the SDK-validated discovered Tool and its annotations."
|
|
7256
|
+
},
|
|
7257
|
+
"confirmation": {
|
|
7258
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionConfirmationEvidence"
|
|
7259
|
+
},
|
|
7260
|
+
"status": {
|
|
7261
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionStatus"
|
|
7262
|
+
},
|
|
7263
|
+
"createdAt": {
|
|
7264
|
+
"type": "string",
|
|
7265
|
+
"format": "date-time"
|
|
7266
|
+
},
|
|
7267
|
+
"startedAt": {
|
|
7268
|
+
"type": "string",
|
|
7269
|
+
"format": "date-time"
|
|
7270
|
+
},
|
|
7271
|
+
"completedAt": {
|
|
7272
|
+
"type": "string",
|
|
7273
|
+
"format": "date-time"
|
|
7274
|
+
},
|
|
7275
|
+
"durationMs": {
|
|
7276
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
7277
|
+
},
|
|
7278
|
+
"attemptCount": {
|
|
7279
|
+
"type": "integer",
|
|
7280
|
+
"format": "int32",
|
|
7281
|
+
"minimum": 0
|
|
7282
|
+
},
|
|
7283
|
+
"retryCount": {
|
|
7284
|
+
"type": "integer",
|
|
7285
|
+
"format": "int32",
|
|
7286
|
+
"minimum": 0
|
|
7287
|
+
},
|
|
7288
|
+
"cancelRequestedAt": {
|
|
7289
|
+
"type": "string",
|
|
7290
|
+
"format": "date-time"
|
|
7291
|
+
},
|
|
7292
|
+
"cancelledAt": {
|
|
7293
|
+
"type": "string",
|
|
7294
|
+
"format": "date-time"
|
|
7295
|
+
},
|
|
7296
|
+
"result": {
|
|
7297
|
+
"description": "Complete opaque SDK tool-call result after output sanitization."
|
|
7298
|
+
},
|
|
7299
|
+
"error": {
|
|
7300
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpError"
|
|
7301
|
+
},
|
|
7302
|
+
"tokenUsage": {
|
|
7303
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionTokenUsage"
|
|
7304
|
+
},
|
|
7305
|
+
"cost": {
|
|
7306
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionCost"
|
|
7307
|
+
},
|
|
7308
|
+
"telemetry": {
|
|
7309
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetryCorrelation"
|
|
7310
|
+
}
|
|
7311
|
+
},
|
|
7312
|
+
"unevaluatedProperties": {
|
|
7313
|
+
"not": {}
|
|
7314
|
+
},
|
|
7315
|
+
"description": "Persisted asynchronous execution evidence. SDK tool results remain opaque."
|
|
7316
|
+
},
|
|
7317
|
+
"Runner.Mcp.RunnerMcpExecutionRequest": {
|
|
7318
|
+
"type": "object",
|
|
7319
|
+
"required": [
|
|
7320
|
+
"toolName",
|
|
7321
|
+
"timeoutMs",
|
|
7322
|
+
"idempotencyKey"
|
|
7323
|
+
],
|
|
7324
|
+
"properties": {
|
|
7325
|
+
"toolName": {
|
|
7326
|
+
"type": "string",
|
|
7327
|
+
"minLength": 1
|
|
7328
|
+
},
|
|
7329
|
+
"arguments": {
|
|
7330
|
+
"description": "Opaque tool arguments validated against the SDK tool schema before execution."
|
|
7331
|
+
},
|
|
7332
|
+
"timeoutMs": {
|
|
7333
|
+
"type": "integer",
|
|
7334
|
+
"format": "int32",
|
|
7335
|
+
"minimum": 1,
|
|
7336
|
+
"maximum": 3600000,
|
|
7337
|
+
"default": 30000
|
|
7338
|
+
},
|
|
7339
|
+
"confirmation": {
|
|
7340
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionConfirmationRequest"
|
|
7341
|
+
},
|
|
7342
|
+
"idempotencyKey": {
|
|
7343
|
+
"type": "string",
|
|
7344
|
+
"minLength": 8,
|
|
7345
|
+
"maxLength": 256
|
|
7346
|
+
}
|
|
7347
|
+
},
|
|
7348
|
+
"unevaluatedProperties": {
|
|
7349
|
+
"not": {}
|
|
7350
|
+
},
|
|
7351
|
+
"description": "Request to asynchronously invoke one discovered MCP tool."
|
|
7352
|
+
},
|
|
7353
|
+
"Runner.Mcp.RunnerMcpExecutionStatus": {
|
|
7354
|
+
"type": "string",
|
|
7355
|
+
"enum": [
|
|
7356
|
+
"queued",
|
|
7357
|
+
"running",
|
|
7358
|
+
"cancelling",
|
|
7359
|
+
"succeeded",
|
|
7360
|
+
"failed",
|
|
7361
|
+
"cancelled",
|
|
7362
|
+
"timed_out"
|
|
7363
|
+
],
|
|
7364
|
+
"description": "Asynchronous MCP execution lifecycle."
|
|
7365
|
+
},
|
|
7366
|
+
"Runner.Mcp.RunnerMcpExecutionTelemetryResponse": {
|
|
7367
|
+
"type": "object",
|
|
7368
|
+
"required": [
|
|
7369
|
+
"signals",
|
|
7370
|
+
"correlation",
|
|
7371
|
+
"traces",
|
|
7372
|
+
"logs",
|
|
7373
|
+
"metrics",
|
|
7374
|
+
"queriedAt",
|
|
7375
|
+
"selfExportSuppressed"
|
|
7376
|
+
],
|
|
7377
|
+
"properties": {
|
|
7378
|
+
"signals": {
|
|
7379
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetrySignalSummary"
|
|
7380
|
+
},
|
|
7381
|
+
"correlation": {
|
|
7382
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetryCorrelation"
|
|
7383
|
+
},
|
|
7384
|
+
"traces": {
|
|
7385
|
+
"type": "array",
|
|
7386
|
+
"items": {
|
|
7387
|
+
"$ref": "#/$defs/OTel.Traces.Trace"
|
|
7388
|
+
}
|
|
7389
|
+
},
|
|
7390
|
+
"logs": {
|
|
7391
|
+
"type": "array",
|
|
7392
|
+
"items": {
|
|
7393
|
+
"$ref": "#/$defs/OTel.Logs.LogRecord"
|
|
7394
|
+
}
|
|
7395
|
+
},
|
|
7396
|
+
"metrics": {
|
|
7397
|
+
"type": "array",
|
|
7398
|
+
"items": {
|
|
7399
|
+
"$ref": "#/$defs/OTel.Metrics.MetricPoint"
|
|
7400
|
+
}
|
|
7401
|
+
},
|
|
7402
|
+
"queriedAt": {
|
|
7403
|
+
"type": "string",
|
|
7404
|
+
"format": "date-time"
|
|
7405
|
+
},
|
|
7406
|
+
"selfExportSuppressed": {
|
|
7407
|
+
"type": "boolean",
|
|
7408
|
+
"enum": [
|
|
7409
|
+
true
|
|
7410
|
+
],
|
|
7411
|
+
"description": "Confirms that workbench telemetry querying is excluded from workbench export instrumentation."
|
|
7412
|
+
}
|
|
7413
|
+
},
|
|
7414
|
+
"unevaluatedProperties": {
|
|
7415
|
+
"not": {}
|
|
7416
|
+
},
|
|
7417
|
+
"description": "Correlated Qyl observability evidence for one MCP execution. Signals unsupported by the connected Qyl read API are explicitly unavailable."
|
|
7418
|
+
},
|
|
7419
|
+
"Runner.Mcp.RunnerMcpExecutionTokenUsage": {
|
|
7420
|
+
"type": "object",
|
|
7421
|
+
"required": [
|
|
7422
|
+
"estimated"
|
|
7423
|
+
],
|
|
7424
|
+
"properties": {
|
|
7425
|
+
"inputTokens": {
|
|
7426
|
+
"$ref": "#/$defs/Common.TokenCount"
|
|
7427
|
+
},
|
|
7428
|
+
"outputTokens": {
|
|
7429
|
+
"$ref": "#/$defs/Common.TokenCount"
|
|
7430
|
+
},
|
|
7431
|
+
"totalTokens": {
|
|
7432
|
+
"$ref": "#/$defs/Common.TokenCount"
|
|
7433
|
+
},
|
|
7434
|
+
"estimated": {
|
|
7435
|
+
"type": "boolean"
|
|
7436
|
+
}
|
|
7437
|
+
},
|
|
7438
|
+
"unevaluatedProperties": {
|
|
7439
|
+
"not": {}
|
|
7440
|
+
},
|
|
7441
|
+
"description": "Token usage reported or derived for one MCP execution when available."
|
|
7442
|
+
},
|
|
7443
|
+
"Runner.Mcp.RunnerMcpHeaderSecretReference": {
|
|
7444
|
+
"type": "object",
|
|
7445
|
+
"required": [
|
|
7446
|
+
"name",
|
|
7447
|
+
"secret"
|
|
7448
|
+
],
|
|
7449
|
+
"properties": {
|
|
7450
|
+
"name": {
|
|
7451
|
+
"type": "string",
|
|
7452
|
+
"minLength": 1
|
|
7453
|
+
},
|
|
7454
|
+
"secret": {
|
|
7455
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpSecretReference"
|
|
7456
|
+
},
|
|
7457
|
+
"scheme": {
|
|
7458
|
+
"allOf": [
|
|
7459
|
+
{
|
|
7460
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpHeaderSecretScheme"
|
|
7461
|
+
}
|
|
7462
|
+
],
|
|
7463
|
+
"description": "Optional HTTP authentication scheme applied to the resolved secret. Omit for a raw header value."
|
|
7464
|
+
}
|
|
7465
|
+
},
|
|
7466
|
+
"unevaluatedProperties": {
|
|
7467
|
+
"not": {}
|
|
7468
|
+
},
|
|
7469
|
+
"description": "HTTP header whose value is resolved from a secret reference at connection time."
|
|
7470
|
+
},
|
|
7471
|
+
"Runner.Mcp.RunnerMcpHeaderSecretScheme": {
|
|
7472
|
+
"type": "string",
|
|
7473
|
+
"enum": [
|
|
7474
|
+
"bearer",
|
|
7475
|
+
"basic"
|
|
7476
|
+
],
|
|
7477
|
+
"description": "HTTP authentication scheme applied to an environment-resolved header secret."
|
|
7478
|
+
},
|
|
7479
|
+
"Runner.Mcp.RunnerMcpInProcessServerConfiguration": {
|
|
7480
|
+
"type": "object",
|
|
7481
|
+
"required": [
|
|
7482
|
+
"transport",
|
|
7483
|
+
"implementation"
|
|
7484
|
+
],
|
|
7485
|
+
"properties": {
|
|
7486
|
+
"transport": {
|
|
7487
|
+
"type": "string",
|
|
7488
|
+
"enum": [
|
|
7489
|
+
"inproc"
|
|
7490
|
+
]
|
|
7491
|
+
},
|
|
7492
|
+
"implementation": {
|
|
7493
|
+
"type": "string",
|
|
7494
|
+
"minLength": 1
|
|
7495
|
+
}
|
|
7496
|
+
},
|
|
7497
|
+
"unevaluatedProperties": {
|
|
7498
|
+
"not": {}
|
|
7499
|
+
},
|
|
7500
|
+
"description": "Sanitized in-process MCP server configuration."
|
|
7501
|
+
},
|
|
7502
|
+
"Runner.Mcp.RunnerMcpInitializationSnapshot": {
|
|
7503
|
+
"type": "object",
|
|
7504
|
+
"required": [
|
|
7505
|
+
"initializedAt",
|
|
7506
|
+
"protocolVersion",
|
|
7507
|
+
"serverIdentity",
|
|
7508
|
+
"capabilities",
|
|
7509
|
+
"result"
|
|
7510
|
+
],
|
|
7511
|
+
"properties": {
|
|
7512
|
+
"initializedAt": {
|
|
7513
|
+
"type": "string",
|
|
7514
|
+
"format": "date-time"
|
|
7515
|
+
},
|
|
7516
|
+
"protocolVersion": {
|
|
7517
|
+
"type": "string"
|
|
7518
|
+
},
|
|
7519
|
+
"serverIdentity": {
|
|
7520
|
+
"description": "Opaque SDK server-info entity."
|
|
7521
|
+
},
|
|
7522
|
+
"capabilities": {
|
|
7523
|
+
"description": "Opaque SDK server-capabilities entity."
|
|
7524
|
+
},
|
|
7525
|
+
"instructions": {
|
|
7526
|
+
"type": "string"
|
|
7527
|
+
},
|
|
7528
|
+
"sessionInfo": {
|
|
7529
|
+
"description": "Opaque SDK session information when the transport exposes it."
|
|
7530
|
+
},
|
|
7531
|
+
"result": {
|
|
7532
|
+
"description": "Complete opaque SDK initialize result."
|
|
7533
|
+
}
|
|
7534
|
+
},
|
|
7535
|
+
"unevaluatedProperties": {
|
|
7536
|
+
"not": {}
|
|
7537
|
+
},
|
|
7538
|
+
"description": "SDK-validated MCP initialize result projected through a Qyl-owned connection snapshot."
|
|
7539
|
+
},
|
|
7540
|
+
"Runner.Mcp.RunnerMcpLatencyAssertion": {
|
|
7541
|
+
"type": "object",
|
|
7542
|
+
"required": [
|
|
7543
|
+
"id",
|
|
7544
|
+
"kind",
|
|
7545
|
+
"maxDurationMs"
|
|
7546
|
+
],
|
|
7547
|
+
"properties": {
|
|
7548
|
+
"id": {
|
|
7549
|
+
"type": "string"
|
|
7550
|
+
},
|
|
7551
|
+
"kind": {
|
|
7552
|
+
"type": "string",
|
|
7553
|
+
"enum": [
|
|
7554
|
+
"latency"
|
|
7555
|
+
]
|
|
7556
|
+
},
|
|
7557
|
+
"maxDurationMs": {
|
|
7558
|
+
"type": "number",
|
|
7559
|
+
"format": "double",
|
|
7560
|
+
"minimum": 0
|
|
7561
|
+
}
|
|
7562
|
+
},
|
|
7563
|
+
"unevaluatedProperties": {
|
|
7564
|
+
"not": {}
|
|
7565
|
+
},
|
|
7566
|
+
"description": "Maximum execution latency assertion."
|
|
7567
|
+
},
|
|
7568
|
+
"Runner.Mcp.RunnerMcpPartialAssertion": {
|
|
7569
|
+
"type": "object",
|
|
7570
|
+
"required": [
|
|
7571
|
+
"id",
|
|
7572
|
+
"kind",
|
|
7573
|
+
"expected"
|
|
7574
|
+
],
|
|
7575
|
+
"properties": {
|
|
7576
|
+
"id": {
|
|
7577
|
+
"type": "string"
|
|
7578
|
+
},
|
|
7579
|
+
"kind": {
|
|
7580
|
+
"type": "string",
|
|
7581
|
+
"enum": [
|
|
7582
|
+
"partial"
|
|
7583
|
+
]
|
|
7584
|
+
},
|
|
7585
|
+
"path": {
|
|
7586
|
+
"type": "string"
|
|
7587
|
+
},
|
|
7588
|
+
"expected": {}
|
|
7589
|
+
},
|
|
7590
|
+
"unevaluatedProperties": {
|
|
7591
|
+
"not": {}
|
|
7592
|
+
},
|
|
7593
|
+
"description": "Partial JSON object or array containment assertion at an optional JSON Pointer path."
|
|
7594
|
+
},
|
|
7595
|
+
"Runner.Mcp.RunnerMcpPatternAssertion": {
|
|
7596
|
+
"type": "object",
|
|
7597
|
+
"required": [
|
|
7598
|
+
"id",
|
|
7599
|
+
"kind",
|
|
7600
|
+
"pattern"
|
|
7601
|
+
],
|
|
7602
|
+
"properties": {
|
|
7603
|
+
"id": {
|
|
7604
|
+
"type": "string"
|
|
7605
|
+
},
|
|
7606
|
+
"kind": {
|
|
7607
|
+
"type": "string",
|
|
7608
|
+
"enum": [
|
|
7609
|
+
"pattern"
|
|
7610
|
+
]
|
|
7611
|
+
},
|
|
7612
|
+
"path": {
|
|
7613
|
+
"type": "string"
|
|
7614
|
+
},
|
|
7615
|
+
"pattern": {
|
|
7616
|
+
"type": "string"
|
|
7617
|
+
},
|
|
7618
|
+
"flags": {
|
|
7619
|
+
"type": "string"
|
|
7620
|
+
}
|
|
7621
|
+
},
|
|
7622
|
+
"unevaluatedProperties": {
|
|
7623
|
+
"not": {}
|
|
7624
|
+
},
|
|
7625
|
+
"description": "Regular-expression assertion at an optional JSON Pointer path."
|
|
7626
|
+
},
|
|
7627
|
+
"Runner.Mcp.RunnerMcpPrincipalIdentity": {
|
|
7628
|
+
"type": "object",
|
|
7629
|
+
"required": [
|
|
7630
|
+
"id",
|
|
7631
|
+
"local"
|
|
7632
|
+
],
|
|
7633
|
+
"properties": {
|
|
7634
|
+
"id": {
|
|
7635
|
+
"type": "string"
|
|
7636
|
+
},
|
|
7637
|
+
"displayName": {
|
|
7638
|
+
"type": "string"
|
|
7639
|
+
},
|
|
7640
|
+
"local": {
|
|
7641
|
+
"type": "boolean",
|
|
7642
|
+
"enum": [
|
|
7643
|
+
true
|
|
7644
|
+
]
|
|
7645
|
+
}
|
|
7646
|
+
},
|
|
7647
|
+
"unevaluatedProperties": {
|
|
7648
|
+
"not": {}
|
|
7649
|
+
},
|
|
7650
|
+
"description": "Authenticated local principal metadata. No credential or session token is represented here."
|
|
7651
|
+
},
|
|
7652
|
+
"Runner.Mcp.RunnerMcpProtocolDirection": {
|
|
7653
|
+
"type": "string",
|
|
7654
|
+
"enum": [
|
|
7655
|
+
"client_to_server",
|
|
7656
|
+
"server_to_client",
|
|
7657
|
+
"local"
|
|
7658
|
+
],
|
|
7659
|
+
"description": "Direction of a captured MCP protocol or transport event."
|
|
7660
|
+
},
|
|
7661
|
+
"Runner.Mcp.RunnerMcpProtocolEvent": {
|
|
7662
|
+
"type": "object",
|
|
7663
|
+
"required": [
|
|
7664
|
+
"id",
|
|
7665
|
+
"serverId",
|
|
7666
|
+
"direction",
|
|
7667
|
+
"kind",
|
|
7668
|
+
"timestamp",
|
|
7669
|
+
"redactionApplied"
|
|
7670
|
+
],
|
|
7671
|
+
"properties": {
|
|
7672
|
+
"id": {
|
|
7673
|
+
"type": "string"
|
|
7674
|
+
},
|
|
7675
|
+
"serverId": {
|
|
7676
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerId"
|
|
7677
|
+
},
|
|
7678
|
+
"direction": {
|
|
7679
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpProtocolDirection"
|
|
7680
|
+
},
|
|
7681
|
+
"kind": {
|
|
7682
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpProtocolEventKind"
|
|
7683
|
+
},
|
|
7684
|
+
"method": {
|
|
7685
|
+
"type": "string"
|
|
7686
|
+
},
|
|
7687
|
+
"requestId": {
|
|
7688
|
+
"description": "Opaque JSON-RPC request identifier, which may be a string or number."
|
|
7689
|
+
},
|
|
7690
|
+
"timestamp": {
|
|
7691
|
+
"type": "string",
|
|
7692
|
+
"format": "date-time"
|
|
7693
|
+
},
|
|
7694
|
+
"durationMs": {
|
|
7695
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
7696
|
+
},
|
|
7697
|
+
"payload": {
|
|
7698
|
+
"description": "Opaque SDK message or transport payload after credential and secret redaction."
|
|
7699
|
+
},
|
|
7700
|
+
"redactionApplied": {
|
|
7701
|
+
"type": "boolean",
|
|
7702
|
+
"enum": [
|
|
7703
|
+
true
|
|
7704
|
+
]
|
|
7705
|
+
},
|
|
7706
|
+
"executionId": {
|
|
7707
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionId"
|
|
7708
|
+
},
|
|
7709
|
+
"traceId": {
|
|
7710
|
+
"$ref": "#/$defs/Common.TraceId"
|
|
7711
|
+
}
|
|
7712
|
+
},
|
|
7713
|
+
"unevaluatedProperties": {
|
|
7714
|
+
"not": {}
|
|
7715
|
+
},
|
|
7716
|
+
"description": "Chronological diagnostic event carrying only a redacted opaque SDK message or local transport payload."
|
|
7717
|
+
},
|
|
7718
|
+
"Runner.Mcp.RunnerMcpProtocolEventKind": {
|
|
7719
|
+
"type": "string",
|
|
7720
|
+
"enum": [
|
|
7721
|
+
"request",
|
|
7722
|
+
"response",
|
|
7723
|
+
"notification",
|
|
7724
|
+
"error",
|
|
7725
|
+
"transport"
|
|
7726
|
+
],
|
|
7727
|
+
"description": "Kind of captured MCP protocol or transport event."
|
|
7728
|
+
},
|
|
7729
|
+
"Runner.Mcp.RunnerMcpProtocolEventPage": {
|
|
7730
|
+
"type": "object",
|
|
7731
|
+
"required": [
|
|
7732
|
+
"events"
|
|
7733
|
+
],
|
|
7734
|
+
"properties": {
|
|
7735
|
+
"events": {
|
|
7736
|
+
"type": "array",
|
|
7737
|
+
"items": {
|
|
7738
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpProtocolEvent"
|
|
7739
|
+
}
|
|
7740
|
+
},
|
|
7741
|
+
"nextCursor": {
|
|
7742
|
+
"type": "string"
|
|
7743
|
+
}
|
|
7744
|
+
},
|
|
7745
|
+
"unevaluatedProperties": {
|
|
7746
|
+
"not": {}
|
|
7747
|
+
},
|
|
7748
|
+
"description": "Cursor page of chronological MCP protocol diagnostic events."
|
|
7749
|
+
},
|
|
7750
|
+
"Runner.Mcp.RunnerMcpRegressionStatus": {
|
|
7751
|
+
"type": "string",
|
|
7752
|
+
"enum": [
|
|
7753
|
+
"improved",
|
|
7754
|
+
"regressed",
|
|
7755
|
+
"unchanged",
|
|
7756
|
+
"added",
|
|
7757
|
+
"removed"
|
|
7758
|
+
],
|
|
7759
|
+
"description": "Regression classification for one test case across two evaluation runs."
|
|
7760
|
+
},
|
|
7761
|
+
"Runner.Mcp.RunnerMcpSchemaAssertion": {
|
|
7762
|
+
"type": "object",
|
|
7763
|
+
"required": [
|
|
7764
|
+
"id",
|
|
7765
|
+
"kind",
|
|
7766
|
+
"schema"
|
|
7767
|
+
],
|
|
7768
|
+
"properties": {
|
|
7769
|
+
"id": {
|
|
7770
|
+
"type": "string"
|
|
7771
|
+
},
|
|
7772
|
+
"kind": {
|
|
7773
|
+
"type": "string",
|
|
7774
|
+
"enum": [
|
|
7775
|
+
"schema"
|
|
7776
|
+
]
|
|
7777
|
+
},
|
|
7778
|
+
"path": {
|
|
7779
|
+
"type": "string"
|
|
7780
|
+
},
|
|
7781
|
+
"schema": {}
|
|
7782
|
+
},
|
|
7783
|
+
"unevaluatedProperties": {
|
|
7784
|
+
"not": {}
|
|
7785
|
+
},
|
|
7786
|
+
"description": "JSON Schema assertion at an optional JSON Pointer path."
|
|
7787
|
+
},
|
|
7788
|
+
"Runner.Mcp.RunnerMcpSecretReference": {
|
|
7789
|
+
"type": "object",
|
|
7790
|
+
"required": [
|
|
7791
|
+
"source",
|
|
7792
|
+
"environmentVariable"
|
|
7793
|
+
],
|
|
7794
|
+
"properties": {
|
|
7795
|
+
"source": {
|
|
7796
|
+
"type": "string",
|
|
7797
|
+
"enum": [
|
|
7798
|
+
"environment"
|
|
7799
|
+
]
|
|
7800
|
+
},
|
|
7801
|
+
"environmentVariable": {
|
|
7802
|
+
"type": "string",
|
|
7803
|
+
"pattern": "^[A-Za-z_][A-Za-z0-9_]*$"
|
|
7804
|
+
}
|
|
7805
|
+
},
|
|
7806
|
+
"unevaluatedProperties": {
|
|
7807
|
+
"not": {}
|
|
7808
|
+
},
|
|
7809
|
+
"description": "Reference to a secret resolved from the runner environment. The environment value is never part of this contract."
|
|
7810
|
+
},
|
|
7811
|
+
"Runner.Mcp.RunnerMcpServer": {
|
|
7812
|
+
"type": "object",
|
|
7813
|
+
"required": [
|
|
7814
|
+
"id",
|
|
7815
|
+
"workspaceId",
|
|
7816
|
+
"name",
|
|
7817
|
+
"configuration",
|
|
7818
|
+
"connection",
|
|
7819
|
+
"createdAt",
|
|
7820
|
+
"updatedAt"
|
|
7821
|
+
],
|
|
7822
|
+
"properties": {
|
|
7823
|
+
"id": {
|
|
7824
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerId"
|
|
7825
|
+
},
|
|
7826
|
+
"workspaceId": {
|
|
7827
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceId"
|
|
7828
|
+
},
|
|
7829
|
+
"name": {
|
|
7830
|
+
"type": "string"
|
|
7831
|
+
},
|
|
7832
|
+
"description": {
|
|
7833
|
+
"type": "string"
|
|
7834
|
+
},
|
|
7835
|
+
"configuration": {
|
|
7836
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerConfiguration"
|
|
7837
|
+
},
|
|
7838
|
+
"connection": {
|
|
7839
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpConnectionSnapshot"
|
|
7840
|
+
},
|
|
7841
|
+
"createdAt": {
|
|
7842
|
+
"type": "string",
|
|
7843
|
+
"format": "date-time"
|
|
7844
|
+
},
|
|
7845
|
+
"updatedAt": {
|
|
7846
|
+
"type": "string",
|
|
7847
|
+
"format": "date-time"
|
|
7848
|
+
}
|
|
7849
|
+
},
|
|
7850
|
+
"unevaluatedProperties": {
|
|
7851
|
+
"not": {}
|
|
7852
|
+
},
|
|
7853
|
+
"description": "Persisted sanitized MCP server configuration and current runtime connection state."
|
|
7854
|
+
},
|
|
7855
|
+
"Runner.Mcp.RunnerMcpServerActionAccepted": {
|
|
7856
|
+
"type": "object",
|
|
7857
|
+
"required": [
|
|
7858
|
+
"server"
|
|
7859
|
+
],
|
|
7860
|
+
"properties": {
|
|
7861
|
+
"server": {
|
|
7862
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServer"
|
|
7863
|
+
}
|
|
7864
|
+
},
|
|
7865
|
+
"unevaluatedProperties": {
|
|
7866
|
+
"not": {}
|
|
7867
|
+
},
|
|
7868
|
+
"description": "An MCP server connection action was accepted and continues asynchronously."
|
|
7869
|
+
},
|
|
7870
|
+
"Runner.Mcp.RunnerMcpServerConfiguration": {
|
|
7871
|
+
"oneOf": [
|
|
7872
|
+
{
|
|
7873
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpStdioServerConfiguration"
|
|
7874
|
+
},
|
|
7875
|
+
{
|
|
7876
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpStreamableHttpServerConfiguration"
|
|
7877
|
+
},
|
|
7878
|
+
{
|
|
7879
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpSseServerConfiguration"
|
|
7880
|
+
},
|
|
7881
|
+
{
|
|
7882
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpInProcessServerConfiguration"
|
|
7883
|
+
},
|
|
7884
|
+
{
|
|
7885
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpBuiltinServerConfiguration"
|
|
7886
|
+
}
|
|
7887
|
+
],
|
|
7888
|
+
"description": "Exactly one sanitized MCP server transport configuration."
|
|
7889
|
+
},
|
|
7890
|
+
"Runner.Mcp.RunnerMcpServerCreateRequest": {
|
|
7891
|
+
"type": "object",
|
|
7892
|
+
"required": [
|
|
7893
|
+
"name",
|
|
7894
|
+
"configuration"
|
|
7895
|
+
],
|
|
7896
|
+
"properties": {
|
|
7897
|
+
"name": {
|
|
7898
|
+
"type": "string",
|
|
7899
|
+
"minLength": 1,
|
|
7900
|
+
"maxLength": 120
|
|
7901
|
+
},
|
|
7902
|
+
"description": {
|
|
7903
|
+
"type": "string",
|
|
7904
|
+
"maxLength": 2000
|
|
7905
|
+
},
|
|
7906
|
+
"configuration": {
|
|
7907
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerConfiguration"
|
|
7908
|
+
},
|
|
7909
|
+
"autoConnect": {
|
|
7910
|
+
"type": "boolean",
|
|
7911
|
+
"default": false
|
|
7912
|
+
}
|
|
7913
|
+
},
|
|
7914
|
+
"unevaluatedProperties": {
|
|
7915
|
+
"not": {}
|
|
7916
|
+
},
|
|
7917
|
+
"description": "Request to add an MCP server configuration to a workspace."
|
|
7918
|
+
},
|
|
7919
|
+
"Runner.Mcp.RunnerMcpServerId": {
|
|
7920
|
+
"type": "string",
|
|
7921
|
+
"minLength": 1,
|
|
7922
|
+
"maxLength": 128,
|
|
7923
|
+
"description": "Opaque identifier for one configured MCP server."
|
|
7924
|
+
},
|
|
7925
|
+
"Runner.Mcp.RunnerMcpServerListResponse": {
|
|
7926
|
+
"type": "object",
|
|
7927
|
+
"required": [
|
|
7928
|
+
"servers"
|
|
7929
|
+
],
|
|
7930
|
+
"properties": {
|
|
7931
|
+
"servers": {
|
|
7932
|
+
"type": "array",
|
|
7933
|
+
"items": {
|
|
7934
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServer"
|
|
7935
|
+
}
|
|
7936
|
+
}
|
|
7937
|
+
},
|
|
7938
|
+
"unevaluatedProperties": {
|
|
7939
|
+
"not": {}
|
|
7940
|
+
},
|
|
7941
|
+
"description": "Configured MCP servers in one authenticated workspace."
|
|
7942
|
+
},
|
|
7943
|
+
"Runner.Mcp.RunnerMcpServerUpdateRequest": {
|
|
7944
|
+
"type": "object",
|
|
7945
|
+
"properties": {
|
|
7946
|
+
"name": {
|
|
7947
|
+
"type": "string",
|
|
7948
|
+
"minLength": 1,
|
|
7949
|
+
"maxLength": 120
|
|
7950
|
+
},
|
|
7951
|
+
"description": {
|
|
7952
|
+
"type": "string",
|
|
7953
|
+
"maxLength": 2000
|
|
7954
|
+
},
|
|
7955
|
+
"configuration": {
|
|
7956
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerConfiguration"
|
|
7957
|
+
}
|
|
7958
|
+
},
|
|
7959
|
+
"unevaluatedProperties": {
|
|
7960
|
+
"not": {}
|
|
7961
|
+
},
|
|
7962
|
+
"description": "Request to replace mutable MCP server metadata or its complete sanitized transport configuration."
|
|
7963
|
+
},
|
|
7964
|
+
"Runner.Mcp.RunnerMcpSessionBootstrapResponse": {
|
|
7965
|
+
"type": "object",
|
|
7966
|
+
"unevaluatedProperties": {
|
|
7967
|
+
"not": {}
|
|
7968
|
+
},
|
|
7969
|
+
"allOf": [
|
|
7970
|
+
{
|
|
7971
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkbenchSession"
|
|
7972
|
+
}
|
|
7973
|
+
],
|
|
7974
|
+
"description": "Loopback session bootstrap response. The cookie value is carried only in Set-Cookie and never in the JSON body."
|
|
7975
|
+
},
|
|
7976
|
+
"Runner.Mcp.RunnerMcpSessionId": {
|
|
7977
|
+
"type": "string",
|
|
7978
|
+
"minLength": 1,
|
|
7979
|
+
"maxLength": 128,
|
|
7980
|
+
"description": "Opaque identifier for one authenticated local runner session."
|
|
7981
|
+
},
|
|
7982
|
+
"Runner.Mcp.RunnerMcpSseServerConfiguration": {
|
|
7983
|
+
"type": "object",
|
|
7984
|
+
"required": [
|
|
7985
|
+
"transport",
|
|
7986
|
+
"endpoint"
|
|
7987
|
+
],
|
|
7988
|
+
"properties": {
|
|
7989
|
+
"transport": {
|
|
7990
|
+
"type": "string",
|
|
7991
|
+
"enum": [
|
|
7992
|
+
"sse"
|
|
7993
|
+
]
|
|
7994
|
+
},
|
|
7995
|
+
"endpoint": {
|
|
7996
|
+
"type": "string",
|
|
7997
|
+
"format": "uri"
|
|
7998
|
+
},
|
|
7999
|
+
"headers": {
|
|
8000
|
+
"type": "array",
|
|
8001
|
+
"items": {
|
|
8002
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpHeaderSecretReference"
|
|
8003
|
+
}
|
|
8004
|
+
}
|
|
8005
|
+
},
|
|
8006
|
+
"unevaluatedProperties": {
|
|
8007
|
+
"not": {}
|
|
8008
|
+
},
|
|
8009
|
+
"description": "Sanitized legacy MCP SSE transport configuration."
|
|
8010
|
+
},
|
|
8011
|
+
"Runner.Mcp.RunnerMcpStatusAssertion": {
|
|
8012
|
+
"type": "object",
|
|
8013
|
+
"required": [
|
|
8014
|
+
"id",
|
|
8015
|
+
"kind",
|
|
8016
|
+
"expected"
|
|
8017
|
+
],
|
|
8018
|
+
"properties": {
|
|
8019
|
+
"id": {
|
|
8020
|
+
"type": "string"
|
|
8021
|
+
},
|
|
8022
|
+
"kind": {
|
|
8023
|
+
"type": "string",
|
|
8024
|
+
"enum": [
|
|
8025
|
+
"status"
|
|
8026
|
+
]
|
|
8027
|
+
},
|
|
8028
|
+
"expected": {
|
|
8029
|
+
"type": "array",
|
|
8030
|
+
"items": {
|
|
8031
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionStatus"
|
|
8032
|
+
},
|
|
8033
|
+
"minItems": 1
|
|
8034
|
+
}
|
|
8035
|
+
},
|
|
8036
|
+
"unevaluatedProperties": {
|
|
8037
|
+
"not": {}
|
|
8038
|
+
},
|
|
8039
|
+
"description": "Execution-status assertion for an MCP test case."
|
|
8040
|
+
},
|
|
8041
|
+
"Runner.Mcp.RunnerMcpStdioServerConfiguration": {
|
|
8042
|
+
"type": "object",
|
|
8043
|
+
"required": [
|
|
8044
|
+
"transport",
|
|
8045
|
+
"command"
|
|
8046
|
+
],
|
|
8047
|
+
"properties": {
|
|
8048
|
+
"transport": {
|
|
8049
|
+
"type": "string",
|
|
8050
|
+
"enum": [
|
|
8051
|
+
"stdio"
|
|
8052
|
+
]
|
|
8053
|
+
},
|
|
8054
|
+
"command": {
|
|
8055
|
+
"type": "string",
|
|
8056
|
+
"minLength": 1
|
|
8057
|
+
},
|
|
8058
|
+
"arguments": {
|
|
8059
|
+
"type": "array",
|
|
8060
|
+
"items": {
|
|
8061
|
+
"type": "string"
|
|
8062
|
+
}
|
|
8063
|
+
},
|
|
8064
|
+
"workingDirectory": {
|
|
8065
|
+
"type": "string"
|
|
8066
|
+
},
|
|
8067
|
+
"environment": {
|
|
8068
|
+
"type": "array",
|
|
8069
|
+
"items": {
|
|
8070
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEnvironmentSecretReference"
|
|
8071
|
+
}
|
|
8072
|
+
}
|
|
8073
|
+
},
|
|
8074
|
+
"unevaluatedProperties": {
|
|
8075
|
+
"not": {}
|
|
8076
|
+
},
|
|
8077
|
+
"description": "Sanitized local stdio transport configuration. Arguments must not contain secrets."
|
|
8078
|
+
},
|
|
8079
|
+
"Runner.Mcp.RunnerMcpStreamableHttpServerConfiguration": {
|
|
8080
|
+
"type": "object",
|
|
8081
|
+
"required": [
|
|
8082
|
+
"transport",
|
|
8083
|
+
"endpoint"
|
|
8084
|
+
],
|
|
8085
|
+
"properties": {
|
|
8086
|
+
"transport": {
|
|
8087
|
+
"type": "string",
|
|
8088
|
+
"enum": [
|
|
8089
|
+
"streamable_http"
|
|
8090
|
+
]
|
|
8091
|
+
},
|
|
8092
|
+
"endpoint": {
|
|
8093
|
+
"type": "string",
|
|
8094
|
+
"format": "uri"
|
|
8095
|
+
},
|
|
8096
|
+
"headers": {
|
|
8097
|
+
"type": "array",
|
|
8098
|
+
"items": {
|
|
8099
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpHeaderSecretReference"
|
|
8100
|
+
}
|
|
8101
|
+
}
|
|
8102
|
+
},
|
|
8103
|
+
"unevaluatedProperties": {
|
|
8104
|
+
"not": {}
|
|
8105
|
+
},
|
|
8106
|
+
"description": "Sanitized MCP Streamable HTTP transport configuration."
|
|
8107
|
+
},
|
|
8108
|
+
"Runner.Mcp.RunnerMcpSuiteId": {
|
|
8109
|
+
"type": "string",
|
|
8110
|
+
"minLength": 1,
|
|
8111
|
+
"maxLength": 128,
|
|
8112
|
+
"description": "Opaque identifier for one reusable MCP test suite."
|
|
8113
|
+
},
|
|
8114
|
+
"Runner.Mcp.RunnerMcpSuiteRunRequest": {
|
|
8115
|
+
"type": "object",
|
|
8116
|
+
"properties": {
|
|
8117
|
+
"selectedTestCaseIds": {
|
|
8118
|
+
"type": "array",
|
|
8119
|
+
"items": {
|
|
8120
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseId"
|
|
8121
|
+
},
|
|
8122
|
+
"minItems": 1
|
|
8123
|
+
}
|
|
8124
|
+
},
|
|
8125
|
+
"unevaluatedProperties": {
|
|
8126
|
+
"not": {}
|
|
8127
|
+
},
|
|
8128
|
+
"allOf": [
|
|
8129
|
+
{
|
|
8130
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunRequest"
|
|
8131
|
+
}
|
|
8132
|
+
],
|
|
8133
|
+
"description": "Request to run a complete suite or an explicit subset of its persisted test cases asynchronously."
|
|
8134
|
+
},
|
|
8135
|
+
"Runner.Mcp.RunnerMcpTelemetryAvailability": {
|
|
8136
|
+
"type": "string",
|
|
8137
|
+
"enum": [
|
|
8138
|
+
"available",
|
|
8139
|
+
"partial",
|
|
8140
|
+
"unavailable"
|
|
8141
|
+
],
|
|
8142
|
+
"description": "Whether correlated Qyl observability evidence was available."
|
|
8143
|
+
},
|
|
8144
|
+
"Runner.Mcp.RunnerMcpTelemetryCorrelation": {
|
|
8145
|
+
"type": "object",
|
|
8146
|
+
"required": [
|
|
8147
|
+
"traceIds",
|
|
8148
|
+
"spanIds"
|
|
8149
|
+
],
|
|
8150
|
+
"properties": {
|
|
8151
|
+
"executionId": {
|
|
8152
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionId"
|
|
8153
|
+
},
|
|
8154
|
+
"evaluationRunId": {
|
|
8155
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunId"
|
|
8156
|
+
},
|
|
8157
|
+
"testCaseId": {
|
|
8158
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseId"
|
|
8159
|
+
},
|
|
8160
|
+
"traceIds": {
|
|
8161
|
+
"type": "array",
|
|
8162
|
+
"items": {
|
|
8163
|
+
"$ref": "#/$defs/Common.TraceId"
|
|
8164
|
+
}
|
|
8165
|
+
},
|
|
8166
|
+
"spanIds": {
|
|
8167
|
+
"type": "array",
|
|
8168
|
+
"items": {
|
|
8169
|
+
"$ref": "#/$defs/Common.SpanId"
|
|
8170
|
+
}
|
|
8171
|
+
}
|
|
8172
|
+
},
|
|
8173
|
+
"unevaluatedProperties": {
|
|
8174
|
+
"not": {}
|
|
8175
|
+
},
|
|
8176
|
+
"description": "Qyl observability identifiers correlating workbench, MCP, and downstream activity."
|
|
8177
|
+
},
|
|
8178
|
+
"Runner.Mcp.RunnerMcpTelemetrySignalAvailability": {
|
|
8179
|
+
"type": "object",
|
|
8180
|
+
"required": [
|
|
8181
|
+
"status",
|
|
8182
|
+
"itemCount"
|
|
8183
|
+
],
|
|
8184
|
+
"properties": {
|
|
8185
|
+
"status": {
|
|
8186
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetryAvailability"
|
|
8187
|
+
},
|
|
8188
|
+
"unavailableReason": {
|
|
8189
|
+
"type": "string"
|
|
8190
|
+
},
|
|
8191
|
+
"itemCount": {
|
|
8192
|
+
"type": "integer",
|
|
8193
|
+
"format": "int32",
|
|
8194
|
+
"minimum": 0
|
|
8195
|
+
}
|
|
8196
|
+
},
|
|
8197
|
+
"unevaluatedProperties": {
|
|
8198
|
+
"not": {}
|
|
8199
|
+
},
|
|
8200
|
+
"description": "Availability and retained item count for one correlated Qyl telemetry signal."
|
|
8201
|
+
},
|
|
8202
|
+
"Runner.Mcp.RunnerMcpTelemetrySignalSummary": {
|
|
8203
|
+
"type": "object",
|
|
8204
|
+
"required": [
|
|
8205
|
+
"traces",
|
|
8206
|
+
"logs",
|
|
8207
|
+
"metrics",
|
|
8208
|
+
"exceptions",
|
|
8209
|
+
"toolCallEvents"
|
|
8210
|
+
],
|
|
8211
|
+
"properties": {
|
|
8212
|
+
"traces": {
|
|
8213
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetrySignalAvailability"
|
|
8214
|
+
},
|
|
8215
|
+
"logs": {
|
|
8216
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetrySignalAvailability"
|
|
8217
|
+
},
|
|
8218
|
+
"metrics": {
|
|
8219
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetrySignalAvailability"
|
|
8220
|
+
},
|
|
8221
|
+
"exceptions": {
|
|
8222
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetrySignalAvailability"
|
|
8223
|
+
},
|
|
8224
|
+
"toolCallEvents": {
|
|
8225
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTelemetrySignalAvailability"
|
|
8226
|
+
}
|
|
8227
|
+
},
|
|
8228
|
+
"unevaluatedProperties": {
|
|
8229
|
+
"not": {}
|
|
8230
|
+
},
|
|
8231
|
+
"description": "Per-signal availability for correlated workbench observability evidence."
|
|
8232
|
+
},
|
|
8233
|
+
"Runner.Mcp.RunnerMcpTestAssertion": {
|
|
8234
|
+
"oneOf": [
|
|
8235
|
+
{
|
|
8236
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpStatusAssertion"
|
|
8237
|
+
},
|
|
8238
|
+
{
|
|
8239
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExactAssertion"
|
|
8240
|
+
},
|
|
8241
|
+
{
|
|
8242
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpPartialAssertion"
|
|
8243
|
+
},
|
|
8244
|
+
{
|
|
8245
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpSchemaAssertion"
|
|
8246
|
+
},
|
|
8247
|
+
{
|
|
8248
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpPatternAssertion"
|
|
8249
|
+
},
|
|
8250
|
+
{
|
|
8251
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpLatencyAssertion"
|
|
8252
|
+
}
|
|
8253
|
+
],
|
|
8254
|
+
"description": "Exactly one supported MCP evaluation assertion."
|
|
8255
|
+
},
|
|
8256
|
+
"Runner.Mcp.RunnerMcpTestCase": {
|
|
8257
|
+
"type": "object",
|
|
8258
|
+
"required": [
|
|
8259
|
+
"id",
|
|
8260
|
+
"workspaceId",
|
|
8261
|
+
"serverId",
|
|
8262
|
+
"name",
|
|
8263
|
+
"toolName",
|
|
8264
|
+
"timeoutMs",
|
|
8265
|
+
"assertions",
|
|
8266
|
+
"tags",
|
|
8267
|
+
"createdAt",
|
|
8268
|
+
"updatedAt"
|
|
8269
|
+
],
|
|
8270
|
+
"properties": {
|
|
8271
|
+
"id": {
|
|
8272
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseId"
|
|
8273
|
+
},
|
|
8274
|
+
"workspaceId": {
|
|
8275
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceId"
|
|
8276
|
+
},
|
|
8277
|
+
"serverId": {
|
|
8278
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerId"
|
|
8279
|
+
},
|
|
8280
|
+
"name": {
|
|
8281
|
+
"type": "string"
|
|
8282
|
+
},
|
|
8283
|
+
"description": {
|
|
8284
|
+
"type": "string"
|
|
8285
|
+
},
|
|
8286
|
+
"toolName": {
|
|
8287
|
+
"type": "string"
|
|
8288
|
+
},
|
|
8289
|
+
"arguments": {},
|
|
8290
|
+
"timeoutMs": {
|
|
8291
|
+
"type": "integer",
|
|
8292
|
+
"format": "int32",
|
|
8293
|
+
"minimum": 1,
|
|
8294
|
+
"maximum": 3600000
|
|
8295
|
+
},
|
|
8296
|
+
"assertions": {
|
|
8297
|
+
"type": "array",
|
|
8298
|
+
"items": {
|
|
8299
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestAssertion"
|
|
8300
|
+
}
|
|
8301
|
+
},
|
|
8302
|
+
"tags": {
|
|
8303
|
+
"type": "array",
|
|
8304
|
+
"items": {
|
|
8305
|
+
"type": "string"
|
|
8306
|
+
}
|
|
8307
|
+
},
|
|
8308
|
+
"createdAt": {
|
|
8309
|
+
"type": "string",
|
|
8310
|
+
"format": "date-time"
|
|
8311
|
+
},
|
|
8312
|
+
"updatedAt": {
|
|
8313
|
+
"type": "string",
|
|
8314
|
+
"format": "date-time"
|
|
8315
|
+
}
|
|
8316
|
+
},
|
|
8317
|
+
"unevaluatedProperties": {
|
|
8318
|
+
"not": {}
|
|
8319
|
+
},
|
|
8320
|
+
"description": "Reusable tool invocation and assertions persisted in one workspace."
|
|
8321
|
+
},
|
|
8322
|
+
"Runner.Mcp.RunnerMcpTestCaseCreateRequest": {
|
|
8323
|
+
"type": "object",
|
|
8324
|
+
"required": [
|
|
8325
|
+
"serverId",
|
|
8326
|
+
"name",
|
|
8327
|
+
"toolName",
|
|
8328
|
+
"timeoutMs",
|
|
8329
|
+
"assertions"
|
|
8330
|
+
],
|
|
8331
|
+
"properties": {
|
|
8332
|
+
"serverId": {
|
|
8333
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerId"
|
|
8334
|
+
},
|
|
8335
|
+
"name": {
|
|
8336
|
+
"type": "string",
|
|
8337
|
+
"minLength": 1,
|
|
8338
|
+
"maxLength": 160
|
|
8339
|
+
},
|
|
8340
|
+
"description": {
|
|
8341
|
+
"type": "string",
|
|
8342
|
+
"maxLength": 4000
|
|
8343
|
+
},
|
|
8344
|
+
"toolName": {
|
|
8345
|
+
"type": "string",
|
|
8346
|
+
"minLength": 1
|
|
8347
|
+
},
|
|
8348
|
+
"arguments": {},
|
|
8349
|
+
"timeoutMs": {
|
|
8350
|
+
"type": "integer",
|
|
8351
|
+
"format": "int32",
|
|
8352
|
+
"minimum": 1,
|
|
8353
|
+
"maximum": 3600000,
|
|
8354
|
+
"default": 30000
|
|
8355
|
+
},
|
|
8356
|
+
"assertions": {
|
|
8357
|
+
"type": "array",
|
|
8358
|
+
"items": {
|
|
8359
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestAssertion"
|
|
8360
|
+
},
|
|
8361
|
+
"minItems": 1
|
|
8362
|
+
},
|
|
8363
|
+
"tags": {
|
|
8364
|
+
"type": "array",
|
|
8365
|
+
"items": {
|
|
8366
|
+
"type": "string"
|
|
8367
|
+
}
|
|
8368
|
+
}
|
|
8369
|
+
},
|
|
8370
|
+
"unevaluatedProperties": {
|
|
8371
|
+
"not": {}
|
|
8372
|
+
},
|
|
8373
|
+
"description": "Request to create a reusable MCP test case."
|
|
8374
|
+
},
|
|
8375
|
+
"Runner.Mcp.RunnerMcpTestCaseId": {
|
|
8376
|
+
"type": "string",
|
|
8377
|
+
"minLength": 1,
|
|
8378
|
+
"maxLength": 128,
|
|
8379
|
+
"description": "Opaque identifier for one reusable MCP test case."
|
|
8380
|
+
},
|
|
8381
|
+
"Runner.Mcp.RunnerMcpTestCasePage": {
|
|
8382
|
+
"type": "object",
|
|
8383
|
+
"required": [
|
|
8384
|
+
"testCases"
|
|
8385
|
+
],
|
|
8386
|
+
"properties": {
|
|
8387
|
+
"testCases": {
|
|
8388
|
+
"type": "array",
|
|
8389
|
+
"items": {
|
|
8390
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCase"
|
|
8391
|
+
}
|
|
8392
|
+
},
|
|
8393
|
+
"nextCursor": {
|
|
8394
|
+
"type": "string"
|
|
8395
|
+
}
|
|
8396
|
+
},
|
|
8397
|
+
"unevaluatedProperties": {
|
|
8398
|
+
"not": {}
|
|
8399
|
+
},
|
|
8400
|
+
"description": "Cursor page of reusable MCP test cases."
|
|
8401
|
+
},
|
|
8402
|
+
"Runner.Mcp.RunnerMcpTestCaseRunRequest": {
|
|
8403
|
+
"type": "object",
|
|
8404
|
+
"unevaluatedProperties": {
|
|
8405
|
+
"not": {}
|
|
8406
|
+
},
|
|
8407
|
+
"allOf": [
|
|
8408
|
+
{
|
|
8409
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunRequest"
|
|
8410
|
+
}
|
|
8411
|
+
],
|
|
8412
|
+
"description": "Request to run one persisted MCP test case asynchronously."
|
|
8413
|
+
},
|
|
8414
|
+
"Runner.Mcp.RunnerMcpTestCaseUpdateRequest": {
|
|
8415
|
+
"type": "object",
|
|
8416
|
+
"properties": {
|
|
8417
|
+
"serverId": {
|
|
8418
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerId"
|
|
8419
|
+
},
|
|
8420
|
+
"name": {
|
|
8421
|
+
"type": "string",
|
|
8422
|
+
"minLength": 1,
|
|
8423
|
+
"maxLength": 160
|
|
8424
|
+
},
|
|
8425
|
+
"description": {
|
|
8426
|
+
"type": "string",
|
|
8427
|
+
"maxLength": 4000
|
|
8428
|
+
},
|
|
8429
|
+
"toolName": {
|
|
8430
|
+
"type": "string",
|
|
8431
|
+
"minLength": 1
|
|
8432
|
+
},
|
|
8433
|
+
"arguments": {},
|
|
8434
|
+
"timeoutMs": {
|
|
8435
|
+
"type": "integer",
|
|
8436
|
+
"format": "int32",
|
|
8437
|
+
"minimum": 1,
|
|
8438
|
+
"maximum": 3600000
|
|
8439
|
+
},
|
|
8440
|
+
"assertions": {
|
|
8441
|
+
"type": "array",
|
|
8442
|
+
"items": {
|
|
8443
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestAssertion"
|
|
8444
|
+
},
|
|
8445
|
+
"minItems": 1
|
|
8446
|
+
},
|
|
8447
|
+
"tags": {
|
|
8448
|
+
"type": "array",
|
|
8449
|
+
"items": {
|
|
8450
|
+
"type": "string"
|
|
8451
|
+
}
|
|
8452
|
+
}
|
|
8453
|
+
},
|
|
8454
|
+
"unevaluatedProperties": {
|
|
8455
|
+
"not": {}
|
|
8456
|
+
},
|
|
8457
|
+
"description": "Request to update mutable MCP test-case fields."
|
|
8458
|
+
},
|
|
8459
|
+
"Runner.Mcp.RunnerMcpTestSuite": {
|
|
8460
|
+
"type": "object",
|
|
8461
|
+
"required": [
|
|
8462
|
+
"id",
|
|
8463
|
+
"workspaceId",
|
|
8464
|
+
"name",
|
|
8465
|
+
"testCaseIds",
|
|
8466
|
+
"tags",
|
|
8467
|
+
"createdAt",
|
|
8468
|
+
"updatedAt"
|
|
8469
|
+
],
|
|
8470
|
+
"properties": {
|
|
8471
|
+
"id": {
|
|
8472
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpSuiteId"
|
|
8473
|
+
},
|
|
8474
|
+
"workspaceId": {
|
|
8475
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceId"
|
|
8476
|
+
},
|
|
8477
|
+
"name": {
|
|
8478
|
+
"type": "string"
|
|
8479
|
+
},
|
|
8480
|
+
"description": {
|
|
8481
|
+
"type": "string"
|
|
8482
|
+
},
|
|
8483
|
+
"testCaseIds": {
|
|
8484
|
+
"type": "array",
|
|
8485
|
+
"items": {
|
|
8486
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseId"
|
|
8487
|
+
},
|
|
8488
|
+
"minItems": 1
|
|
8489
|
+
},
|
|
8490
|
+
"tags": {
|
|
8491
|
+
"type": "array",
|
|
8492
|
+
"items": {
|
|
8493
|
+
"type": "string"
|
|
8494
|
+
}
|
|
8495
|
+
},
|
|
8496
|
+
"createdAt": {
|
|
8497
|
+
"type": "string",
|
|
8498
|
+
"format": "date-time"
|
|
8499
|
+
},
|
|
8500
|
+
"updatedAt": {
|
|
8501
|
+
"type": "string",
|
|
8502
|
+
"format": "date-time"
|
|
8503
|
+
}
|
|
8504
|
+
},
|
|
8505
|
+
"unevaluatedProperties": {
|
|
8506
|
+
"not": {}
|
|
8507
|
+
},
|
|
8508
|
+
"description": "Reusable ordered group of MCP test cases."
|
|
8509
|
+
},
|
|
8510
|
+
"Runner.Mcp.RunnerMcpTestSuiteCreateRequest": {
|
|
8511
|
+
"type": "object",
|
|
8512
|
+
"required": [
|
|
8513
|
+
"name",
|
|
8514
|
+
"testCaseIds"
|
|
8515
|
+
],
|
|
8516
|
+
"properties": {
|
|
8517
|
+
"name": {
|
|
8518
|
+
"type": "string",
|
|
8519
|
+
"minLength": 1,
|
|
8520
|
+
"maxLength": 160
|
|
8521
|
+
},
|
|
8522
|
+
"description": {
|
|
8523
|
+
"type": "string",
|
|
8524
|
+
"maxLength": 4000
|
|
8525
|
+
},
|
|
8526
|
+
"testCaseIds": {
|
|
8527
|
+
"type": "array",
|
|
8528
|
+
"items": {
|
|
8529
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseId"
|
|
8530
|
+
},
|
|
8531
|
+
"minItems": 1
|
|
8532
|
+
},
|
|
8533
|
+
"tags": {
|
|
8534
|
+
"type": "array",
|
|
8535
|
+
"items": {
|
|
8536
|
+
"type": "string"
|
|
8537
|
+
}
|
|
8538
|
+
}
|
|
8539
|
+
},
|
|
8540
|
+
"unevaluatedProperties": {
|
|
8541
|
+
"not": {}
|
|
8542
|
+
},
|
|
8543
|
+
"description": "Request to create a reusable MCP test suite."
|
|
8544
|
+
},
|
|
8545
|
+
"Runner.Mcp.RunnerMcpTestSuitePage": {
|
|
8546
|
+
"type": "object",
|
|
8547
|
+
"required": [
|
|
8548
|
+
"suites"
|
|
8549
|
+
],
|
|
8550
|
+
"properties": {
|
|
8551
|
+
"suites": {
|
|
8552
|
+
"type": "array",
|
|
8553
|
+
"items": {
|
|
8554
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestSuite"
|
|
8555
|
+
}
|
|
8556
|
+
},
|
|
8557
|
+
"nextCursor": {
|
|
8558
|
+
"type": "string"
|
|
8559
|
+
}
|
|
8560
|
+
},
|
|
8561
|
+
"unevaluatedProperties": {
|
|
8562
|
+
"not": {}
|
|
8563
|
+
},
|
|
8564
|
+
"description": "Cursor page of reusable MCP test suites."
|
|
8565
|
+
},
|
|
8566
|
+
"Runner.Mcp.RunnerMcpTestSuiteUpdateRequest": {
|
|
8567
|
+
"type": "object",
|
|
8568
|
+
"properties": {
|
|
8569
|
+
"name": {
|
|
8570
|
+
"type": "string",
|
|
8571
|
+
"minLength": 1,
|
|
8572
|
+
"maxLength": 160
|
|
8573
|
+
},
|
|
8574
|
+
"description": {
|
|
8575
|
+
"type": "string",
|
|
8576
|
+
"maxLength": 4000
|
|
8577
|
+
},
|
|
8578
|
+
"testCaseIds": {
|
|
8579
|
+
"type": "array",
|
|
8580
|
+
"items": {
|
|
8581
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseId"
|
|
8582
|
+
},
|
|
8583
|
+
"minItems": 1
|
|
8584
|
+
},
|
|
8585
|
+
"tags": {
|
|
8586
|
+
"type": "array",
|
|
8587
|
+
"items": {
|
|
8588
|
+
"type": "string"
|
|
8589
|
+
}
|
|
8590
|
+
}
|
|
8591
|
+
},
|
|
8592
|
+
"unevaluatedProperties": {
|
|
8593
|
+
"not": {}
|
|
8594
|
+
},
|
|
8595
|
+
"description": "Request to update mutable MCP test-suite fields."
|
|
8596
|
+
},
|
|
8597
|
+
"Runner.Mcp.RunnerMcpToolInputMode": {
|
|
8598
|
+
"type": "string",
|
|
8599
|
+
"enum": [
|
|
8600
|
+
"form",
|
|
8601
|
+
"json"
|
|
8602
|
+
],
|
|
8603
|
+
"description": "Preferred tool-argument editor for one authenticated workspace."
|
|
8604
|
+
},
|
|
8605
|
+
"Runner.Mcp.RunnerMcpTransportKind": {
|
|
8606
|
+
"type": "string",
|
|
8607
|
+
"enum": [
|
|
8608
|
+
"stdio",
|
|
8609
|
+
"streamable_http",
|
|
8610
|
+
"sse",
|
|
8611
|
+
"inproc",
|
|
8612
|
+
"builtin"
|
|
8613
|
+
],
|
|
8614
|
+
"description": "Supported MCP server transport owned by the local runner."
|
|
8615
|
+
},
|
|
8616
|
+
"Runner.Mcp.RunnerMcpWorkbenchSession": {
|
|
8617
|
+
"type": "object",
|
|
8618
|
+
"required": [
|
|
8619
|
+
"id",
|
|
8620
|
+
"principal",
|
|
8621
|
+
"workspaceIds",
|
|
8622
|
+
"createdAt"
|
|
8623
|
+
],
|
|
8624
|
+
"properties": {
|
|
8625
|
+
"id": {
|
|
8626
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpSessionId"
|
|
8627
|
+
},
|
|
8628
|
+
"principal": {
|
|
8629
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpPrincipalIdentity"
|
|
8630
|
+
},
|
|
8631
|
+
"workspaceIds": {
|
|
8632
|
+
"type": "array",
|
|
8633
|
+
"items": {
|
|
8634
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceId"
|
|
8635
|
+
}
|
|
8636
|
+
},
|
|
8637
|
+
"activeWorkspaceId": {
|
|
8638
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceId"
|
|
8639
|
+
},
|
|
8640
|
+
"createdAt": {
|
|
8641
|
+
"type": "string",
|
|
8642
|
+
"format": "date-time"
|
|
8643
|
+
},
|
|
8644
|
+
"expiresAt": {
|
|
8645
|
+
"type": "string",
|
|
8646
|
+
"format": "date-time"
|
|
8647
|
+
}
|
|
8648
|
+
},
|
|
8649
|
+
"description": "Metadata for the authenticated local workbench session. The HttpOnly session cookie is never returned in this model."
|
|
8650
|
+
},
|
|
8651
|
+
"Runner.Mcp.RunnerMcpWorkspace": {
|
|
8652
|
+
"type": "object",
|
|
8653
|
+
"required": [
|
|
8654
|
+
"id",
|
|
8655
|
+
"ownerId",
|
|
8656
|
+
"name",
|
|
8657
|
+
"createdAt",
|
|
8658
|
+
"updatedAt"
|
|
8659
|
+
],
|
|
8660
|
+
"properties": {
|
|
8661
|
+
"id": {
|
|
8662
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceId"
|
|
8663
|
+
},
|
|
8664
|
+
"ownerId": {
|
|
8665
|
+
"type": "string"
|
|
8666
|
+
},
|
|
8667
|
+
"name": {
|
|
8668
|
+
"type": "string"
|
|
8669
|
+
},
|
|
8670
|
+
"description": {
|
|
8671
|
+
"type": "string"
|
|
8672
|
+
},
|
|
8673
|
+
"createdAt": {
|
|
8674
|
+
"type": "string",
|
|
8675
|
+
"format": "date-time"
|
|
8676
|
+
},
|
|
8677
|
+
"updatedAt": {
|
|
8678
|
+
"type": "string",
|
|
8679
|
+
"format": "date-time"
|
|
8680
|
+
}
|
|
8681
|
+
},
|
|
8682
|
+
"unevaluatedProperties": {
|
|
8683
|
+
"not": {}
|
|
8684
|
+
},
|
|
8685
|
+
"description": "One isolated MCP workbench workspace owned by the authenticated local principal."
|
|
8686
|
+
},
|
|
8687
|
+
"Runner.Mcp.RunnerMcpWorkspaceCreateRequest": {
|
|
8688
|
+
"type": "object",
|
|
8689
|
+
"required": [
|
|
8690
|
+
"name"
|
|
8691
|
+
],
|
|
8692
|
+
"properties": {
|
|
8693
|
+
"name": {
|
|
8694
|
+
"type": "string",
|
|
8695
|
+
"minLength": 1,
|
|
8696
|
+
"maxLength": 120
|
|
8697
|
+
},
|
|
8698
|
+
"description": {
|
|
8699
|
+
"type": "string",
|
|
8700
|
+
"maxLength": 2000
|
|
8701
|
+
}
|
|
8702
|
+
},
|
|
8703
|
+
"unevaluatedProperties": {
|
|
8704
|
+
"not": {}
|
|
8705
|
+
},
|
|
8706
|
+
"description": "Request to create an isolated MCP workbench workspace."
|
|
8707
|
+
},
|
|
8708
|
+
"Runner.Mcp.RunnerMcpWorkspaceId": {
|
|
8709
|
+
"type": "string",
|
|
8710
|
+
"minLength": 1,
|
|
8711
|
+
"maxLength": 128,
|
|
8712
|
+
"description": "Opaque identifier for one MCP workbench workspace."
|
|
8713
|
+
},
|
|
8714
|
+
"Runner.Mcp.RunnerMcpWorkspaceListResponse": {
|
|
8715
|
+
"type": "object",
|
|
8716
|
+
"required": [
|
|
8717
|
+
"workspaces"
|
|
8718
|
+
],
|
|
8719
|
+
"properties": {
|
|
8720
|
+
"workspaces": {
|
|
8721
|
+
"type": "array",
|
|
8722
|
+
"items": {
|
|
8723
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspace"
|
|
8724
|
+
}
|
|
8725
|
+
}
|
|
8726
|
+
},
|
|
8727
|
+
"unevaluatedProperties": {
|
|
8728
|
+
"not": {}
|
|
8729
|
+
},
|
|
8730
|
+
"description": "Workspaces visible to the authenticated local session."
|
|
8731
|
+
},
|
|
8732
|
+
"Runner.Mcp.RunnerMcpWorkspacePreferences": {
|
|
8733
|
+
"type": "object",
|
|
8734
|
+
"required": [
|
|
8735
|
+
"workspaceId",
|
|
8736
|
+
"inputMode",
|
|
8737
|
+
"compactMode",
|
|
8738
|
+
"updatedAt"
|
|
8739
|
+
],
|
|
8740
|
+
"properties": {
|
|
8741
|
+
"workspaceId": {
|
|
8742
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceId"
|
|
8743
|
+
},
|
|
8744
|
+
"selectedServerId": {
|
|
8745
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerId"
|
|
8746
|
+
},
|
|
8747
|
+
"selectedToolName": {
|
|
8748
|
+
"type": "string",
|
|
8749
|
+
"maxLength": 1024
|
|
8750
|
+
},
|
|
8751
|
+
"inputMode": {
|
|
8752
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpToolInputMode"
|
|
8753
|
+
},
|
|
8754
|
+
"activePanel": {
|
|
8755
|
+
"type": "string",
|
|
8756
|
+
"maxLength": 128
|
|
8757
|
+
},
|
|
8758
|
+
"compactMode": {
|
|
8759
|
+
"type": "boolean"
|
|
8760
|
+
},
|
|
8761
|
+
"updatedAt": {
|
|
8762
|
+
"type": "string",
|
|
8763
|
+
"format": "date-time"
|
|
8764
|
+
}
|
|
8765
|
+
},
|
|
8766
|
+
"unevaluatedProperties": {
|
|
8767
|
+
"not": {}
|
|
8768
|
+
},
|
|
8769
|
+
"description": "Saved presentation preferences isolated to one authenticated MCP workspace."
|
|
8770
|
+
},
|
|
8771
|
+
"Runner.Mcp.RunnerMcpWorkspacePreferencesUpdateRequest": {
|
|
8772
|
+
"type": "object",
|
|
8773
|
+
"properties": {
|
|
8774
|
+
"selectedServerId": {
|
|
8775
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerId"
|
|
8776
|
+
},
|
|
8777
|
+
"selectedToolName": {
|
|
8778
|
+
"type": "string",
|
|
8779
|
+
"maxLength": 1024
|
|
8780
|
+
},
|
|
8781
|
+
"inputMode": {
|
|
8782
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpToolInputMode"
|
|
8783
|
+
},
|
|
8784
|
+
"activePanel": {
|
|
8785
|
+
"type": "string",
|
|
8786
|
+
"maxLength": 128
|
|
8787
|
+
},
|
|
8788
|
+
"compactMode": {
|
|
8789
|
+
"type": "boolean"
|
|
8790
|
+
}
|
|
8791
|
+
},
|
|
8792
|
+
"unevaluatedProperties": {
|
|
8793
|
+
"not": {}
|
|
8794
|
+
},
|
|
8795
|
+
"description": "Request to replace saved presentation preferences for one authenticated MCP workspace."
|
|
8796
|
+
},
|
|
8797
|
+
"Runner.Mcp.RunnerMcpWorkspaceUpdateRequest": {
|
|
8798
|
+
"type": "object",
|
|
8799
|
+
"properties": {
|
|
8800
|
+
"name": {
|
|
8801
|
+
"type": "string",
|
|
8802
|
+
"minLength": 1,
|
|
8803
|
+
"maxLength": 120
|
|
8804
|
+
},
|
|
8805
|
+
"description": {
|
|
8806
|
+
"type": "string",
|
|
8807
|
+
"maxLength": 2000
|
|
8808
|
+
}
|
|
8809
|
+
},
|
|
8810
|
+
"unevaluatedProperties": {
|
|
8811
|
+
"not": {}
|
|
8812
|
+
},
|
|
8813
|
+
"description": "Request to update mutable MCP workbench workspace metadata."
|
|
8814
|
+
},
|
|
8815
|
+
"Runner.RunnerLogEvents": {
|
|
8816
|
+
"$ref": "#/$defs/Runner.RunnerLogLine"
|
|
8817
|
+
},
|
|
8818
|
+
"Runner.RunnerLogLine": {
|
|
8819
|
+
"type": "object",
|
|
8820
|
+
"required": [
|
|
8821
|
+
"resource",
|
|
8822
|
+
"stream",
|
|
8823
|
+
"line"
|
|
8824
|
+
],
|
|
8825
|
+
"properties": {
|
|
8826
|
+
"resource": {
|
|
8827
|
+
"type": "string"
|
|
8828
|
+
},
|
|
8829
|
+
"stream": {
|
|
8830
|
+
"$ref": "#/$defs/Runner.RunnerLogStream"
|
|
8831
|
+
},
|
|
8832
|
+
"line": {
|
|
8833
|
+
"type": "string"
|
|
8834
|
+
}
|
|
8835
|
+
},
|
|
8836
|
+
"unevaluatedProperties": {
|
|
8837
|
+
"not": {}
|
|
8838
|
+
},
|
|
8839
|
+
"description": "One bounded child-process log line exposed by the runner."
|
|
8840
|
+
},
|
|
8841
|
+
"Runner.RunnerLogStream": {
|
|
8842
|
+
"type": "string",
|
|
8843
|
+
"enum": [
|
|
8844
|
+
"out",
|
|
8845
|
+
"err"
|
|
8846
|
+
],
|
|
8847
|
+
"description": "Origin stream for one captured child-process log line."
|
|
8848
|
+
},
|
|
8849
|
+
"Runner.RunnerMcpExecutionUpdateEvents": {
|
|
8850
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionRecord"
|
|
8851
|
+
},
|
|
8852
|
+
"Runner.RunnerMcpProtocolEvents": {
|
|
8853
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpProtocolEvent"
|
|
8854
|
+
},
|
|
8855
|
+
"Runner.RunnerResourceEvents": {
|
|
8856
|
+
"$ref": "#/$defs/Runner.RunnerResourceState"
|
|
8857
|
+
},
|
|
8858
|
+
"Runner.RunnerResourceKind": {
|
|
8859
|
+
"type": "string",
|
|
8860
|
+
"enum": [
|
|
8861
|
+
"collector",
|
|
8862
|
+
"project",
|
|
8863
|
+
"command",
|
|
8864
|
+
"stdio",
|
|
8865
|
+
"http",
|
|
8866
|
+
"inproc"
|
|
8867
|
+
],
|
|
8868
|
+
"description": "Kind of process or connection supervised by the local qyl runner."
|
|
8869
|
+
},
|
|
8870
|
+
"Runner.RunnerResourceLifecycle": {
|
|
8871
|
+
"type": "string",
|
|
8872
|
+
"enum": [
|
|
8873
|
+
"pending",
|
|
8874
|
+
"starting",
|
|
8875
|
+
"ready",
|
|
8876
|
+
"stopping",
|
|
8877
|
+
"stopped",
|
|
8878
|
+
"failed"
|
|
8879
|
+
],
|
|
8880
|
+
"description": "Lifecycle state of a resource supervised by the local qyl runner."
|
|
8881
|
+
},
|
|
8882
|
+
"Runner.RunnerResourceState": {
|
|
8883
|
+
"type": "object",
|
|
8884
|
+
"required": [
|
|
8885
|
+
"name",
|
|
8886
|
+
"lifecycle",
|
|
8887
|
+
"timestamp"
|
|
8888
|
+
],
|
|
8889
|
+
"properties": {
|
|
8890
|
+
"name": {
|
|
8891
|
+
"type": "string"
|
|
8892
|
+
},
|
|
8893
|
+
"lifecycle": {
|
|
8894
|
+
"$ref": "#/$defs/Runner.RunnerResourceLifecycle"
|
|
8895
|
+
},
|
|
8896
|
+
"timestamp": {
|
|
8897
|
+
"type": "string",
|
|
8898
|
+
"format": "date-time"
|
|
8899
|
+
},
|
|
8900
|
+
"kind": {
|
|
8901
|
+
"$ref": "#/$defs/Runner.RunnerResourceKind"
|
|
8902
|
+
},
|
|
8903
|
+
"allocatedPort": {
|
|
8904
|
+
"type": "integer",
|
|
8905
|
+
"format": "int32",
|
|
8906
|
+
"minimum": 1,
|
|
8907
|
+
"maximum": 65535
|
|
8908
|
+
},
|
|
8909
|
+
"endpoint": {
|
|
8910
|
+
"type": "string",
|
|
8911
|
+
"format": "uri"
|
|
8912
|
+
},
|
|
8913
|
+
"lastError": {
|
|
8914
|
+
"type": "string"
|
|
8915
|
+
},
|
|
8916
|
+
"serverIdentity": {
|
|
8917
|
+
"description": "Opaque SDK server-info entity when this resource is an initialized MCP connection."
|
|
8918
|
+
},
|
|
8919
|
+
"toolCount": {
|
|
8920
|
+
"type": "integer",
|
|
8921
|
+
"format": "int32",
|
|
8922
|
+
"minimum": 0
|
|
8923
|
+
},
|
|
8924
|
+
"restarts": {
|
|
8925
|
+
"type": "integer",
|
|
8926
|
+
"format": "int32",
|
|
8927
|
+
"minimum": 0
|
|
8928
|
+
}
|
|
8929
|
+
},
|
|
8930
|
+
"unevaluatedProperties": {
|
|
8931
|
+
"not": {}
|
|
8932
|
+
},
|
|
8933
|
+
"description": "Current client-visible state of one runner resource."
|
|
8934
|
+
},
|
|
8935
|
+
"Streaming.HeartbeatEvent": {
|
|
8936
|
+
"type": "object",
|
|
8937
|
+
"required": [
|
|
8938
|
+
"type",
|
|
8939
|
+
"timestamp"
|
|
8940
|
+
],
|
|
8941
|
+
"properties": {
|
|
8942
|
+
"type": {
|
|
8943
|
+
"type": "string",
|
|
8944
|
+
"enum": [
|
|
8945
|
+
"heartbeat"
|
|
8946
|
+
]
|
|
8947
|
+
},
|
|
8948
|
+
"timestamp": {
|
|
8949
|
+
"type": "string",
|
|
8950
|
+
"format": "date-time"
|
|
8951
|
+
}
|
|
8952
|
+
},
|
|
8953
|
+
"unevaluatedProperties": {
|
|
8954
|
+
"not": {}
|
|
8955
|
+
},
|
|
8956
|
+
"description": "Keep-alive event emitted while no new log is available."
|
|
8957
|
+
},
|
|
8958
|
+
"Streaming.LogEvents": {
|
|
8959
|
+
"anyOf": [
|
|
8960
|
+
{
|
|
8961
|
+
"$ref": "#/$defs/Streaming.LogStreamEvent"
|
|
8962
|
+
},
|
|
8963
|
+
{
|
|
8964
|
+
"$ref": "#/$defs/Streaming.HeartbeatEvent"
|
|
8965
|
+
}
|
|
8966
|
+
]
|
|
8967
|
+
},
|
|
8968
|
+
"Streaming.LogStreamEvent": {
|
|
8969
|
+
"type": "object",
|
|
8970
|
+
"required": [
|
|
8971
|
+
"type",
|
|
8972
|
+
"data",
|
|
8973
|
+
"timestamp"
|
|
8974
|
+
],
|
|
8975
|
+
"properties": {
|
|
8976
|
+
"type": {
|
|
8977
|
+
"type": "string",
|
|
8978
|
+
"enum": [
|
|
8979
|
+
"log"
|
|
8980
|
+
]
|
|
8981
|
+
},
|
|
8982
|
+
"data": {
|
|
8983
|
+
"$ref": "#/$defs/OTel.Logs.LogRecord"
|
|
8984
|
+
},
|
|
8985
|
+
"timestamp": {
|
|
8986
|
+
"type": "string",
|
|
8987
|
+
"format": "date-time"
|
|
8988
|
+
}
|
|
8989
|
+
},
|
|
8990
|
+
"unevaluatedProperties": {
|
|
8991
|
+
"not": {}
|
|
8992
|
+
},
|
|
8993
|
+
"description": "One log delivered by the collector's live stream."
|
|
8994
|
+
},
|
|
8995
|
+
"Operations.GenAiEtlAuditApi_evaluate.Request": {
|
|
8996
|
+
"$ref": "#/$defs/Cost.GenAiEtlAuditEvaluationRequest"
|
|
8997
|
+
},
|
|
8998
|
+
"Operations.GenAiEtlAuditApi_evaluate.Response.200": {
|
|
8999
|
+
"$ref": "#/$defs/Cost.GenAiEtlAuditEvaluationResponse"
|
|
9000
|
+
},
|
|
9001
|
+
"Operations.GenAiEtlAuditApi_evaluate.Response.400": {
|
|
9002
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9003
|
+
},
|
|
9004
|
+
"Operations.GenAiEtlAuditApi_evaluate.Response.401": {
|
|
9005
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9006
|
+
},
|
|
9007
|
+
"Operations.GenAiEtlAuditApi_evaluate.Response.500": {
|
|
9008
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9009
|
+
},
|
|
9010
|
+
"Operations.GenAiEtlAuditApi_report.Response.200": {
|
|
9011
|
+
"$ref": "#/$defs/Cost.GenAiEtlAuditReport"
|
|
9012
|
+
},
|
|
9013
|
+
"Operations.GenAiEtlAuditApi_report.Response.400": {
|
|
9014
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9015
|
+
},
|
|
9016
|
+
"Operations.GenAiEtlAuditApi_report.Response.401": {
|
|
9017
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9018
|
+
},
|
|
9019
|
+
"Operations.GenAiEtlAuditApi_report.Response.500": {
|
|
9020
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9021
|
+
},
|
|
9022
|
+
"Operations.LogsApi_list.Response.200": {
|
|
9023
|
+
"type": "object",
|
|
9024
|
+
"required": [
|
|
9025
|
+
"items",
|
|
9026
|
+
"has_more"
|
|
9027
|
+
],
|
|
9028
|
+
"properties": {
|
|
9029
|
+
"items": {
|
|
9030
|
+
"type": "array",
|
|
9031
|
+
"items": {
|
|
9032
|
+
"$ref": "#/$defs/OTel.Logs.LogRecord"
|
|
9033
|
+
},
|
|
9034
|
+
"description": "List of items in this page"
|
|
9035
|
+
},
|
|
9036
|
+
"next_cursor": {
|
|
9037
|
+
"type": "string",
|
|
9038
|
+
"description": "Cursor for the next page (null if no more pages)"
|
|
9039
|
+
},
|
|
9040
|
+
"prev_cursor": {
|
|
9041
|
+
"type": "string",
|
|
9042
|
+
"description": "Cursor for the previous page (null if first page)"
|
|
9043
|
+
},
|
|
9044
|
+
"has_more": {
|
|
9045
|
+
"type": "boolean",
|
|
9046
|
+
"description": "Whether there are more items available"
|
|
9047
|
+
}
|
|
9048
|
+
},
|
|
9049
|
+
"unevaluatedProperties": {
|
|
9050
|
+
"not": {}
|
|
9051
|
+
},
|
|
9052
|
+
"description": "Cursor-based paginated response wrapper"
|
|
9053
|
+
},
|
|
9054
|
+
"Operations.LogsApi_list.Response.400": {
|
|
9055
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9056
|
+
},
|
|
9057
|
+
"Operations.LogsApi_list.Response.401": {
|
|
9058
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9059
|
+
},
|
|
9060
|
+
"Operations.LogsApi_list.Response.500": {
|
|
9061
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9062
|
+
},
|
|
9063
|
+
"Operations.MetricsApi_list.Response.200": {
|
|
9064
|
+
"type": "object",
|
|
9065
|
+
"required": [
|
|
9066
|
+
"items",
|
|
9067
|
+
"has_more"
|
|
9068
|
+
],
|
|
9069
|
+
"properties": {
|
|
9070
|
+
"items": {
|
|
9071
|
+
"type": "array",
|
|
9072
|
+
"items": {
|
|
9073
|
+
"$ref": "#/$defs/OTel.Metrics.MetricPoint"
|
|
9074
|
+
},
|
|
9075
|
+
"description": "List of items in this page"
|
|
9076
|
+
},
|
|
9077
|
+
"next_cursor": {
|
|
9078
|
+
"type": "string",
|
|
9079
|
+
"description": "Cursor for the next page (null if no more pages)"
|
|
9080
|
+
},
|
|
9081
|
+
"prev_cursor": {
|
|
9082
|
+
"type": "string",
|
|
9083
|
+
"description": "Cursor for the previous page (null if first page)"
|
|
9084
|
+
},
|
|
9085
|
+
"has_more": {
|
|
9086
|
+
"type": "boolean",
|
|
9087
|
+
"description": "Whether there are more items available"
|
|
9088
|
+
}
|
|
9089
|
+
},
|
|
9090
|
+
"unevaluatedProperties": {
|
|
9091
|
+
"not": {}
|
|
9092
|
+
},
|
|
9093
|
+
"description": "Cursor-based paginated response wrapper"
|
|
9094
|
+
},
|
|
9095
|
+
"Operations.MetricsApi_list.Response.400": {
|
|
9096
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9097
|
+
},
|
|
9098
|
+
"Operations.MetricsApi_list.Response.401": {
|
|
9099
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9100
|
+
},
|
|
9101
|
+
"Operations.MetricsApi_list.Response.500": {
|
|
9102
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9103
|
+
},
|
|
9104
|
+
"Operations.ProfilesApi_get.Response.200": {
|
|
9105
|
+
"$ref": "#/$defs/OTel.Profiles.Profile"
|
|
9106
|
+
},
|
|
9107
|
+
"Operations.ProfilesApi_get.Response.401": {
|
|
9108
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9109
|
+
},
|
|
9110
|
+
"Operations.ProfilesApi_get.Response.404": {
|
|
9111
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9112
|
+
},
|
|
9113
|
+
"Operations.ProfilesApi_get.Response.500": {
|
|
9114
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9115
|
+
},
|
|
9116
|
+
"Operations.ProfilesApi_getBySpan.Response.200": {
|
|
9117
|
+
"type": "array",
|
|
9118
|
+
"items": {
|
|
9119
|
+
"$ref": "#/$defs/OTel.Profiles.Profile"
|
|
9120
|
+
}
|
|
9121
|
+
},
|
|
9122
|
+
"Operations.ProfilesApi_getBySpan.Response.400": {
|
|
9123
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9124
|
+
},
|
|
9125
|
+
"Operations.ProfilesApi_getBySpan.Response.401": {
|
|
9126
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9127
|
+
},
|
|
9128
|
+
"Operations.ProfilesApi_getBySpan.Response.500": {
|
|
9129
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9130
|
+
},
|
|
9131
|
+
"Operations.ProfilesApi_getByTrace.Response.200": {
|
|
9132
|
+
"type": "array",
|
|
9133
|
+
"items": {
|
|
9134
|
+
"$ref": "#/$defs/OTel.Profiles.Profile"
|
|
9135
|
+
}
|
|
9136
|
+
},
|
|
9137
|
+
"Operations.ProfilesApi_getByTrace.Response.400": {
|
|
9138
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9139
|
+
},
|
|
9140
|
+
"Operations.ProfilesApi_getByTrace.Response.401": {
|
|
9141
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9142
|
+
},
|
|
9143
|
+
"Operations.ProfilesApi_getByTrace.Response.500": {
|
|
9144
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9145
|
+
},
|
|
9146
|
+
"Operations.ProfilesApi_list.Response.200": {
|
|
9147
|
+
"type": "array",
|
|
9148
|
+
"items": {
|
|
9149
|
+
"$ref": "#/$defs/OTel.Profiles.Profile"
|
|
9150
|
+
}
|
|
9151
|
+
},
|
|
9152
|
+
"Operations.ProfilesApi_list.Response.400": {
|
|
9153
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9154
|
+
},
|
|
9155
|
+
"Operations.ProfilesApi_list.Response.401": {
|
|
9156
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9157
|
+
},
|
|
9158
|
+
"Operations.ProfilesApi_list.Response.500": {
|
|
9159
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9160
|
+
},
|
|
9161
|
+
"Operations.RunnerMcpEvaluationRunsApi_compare.Request": {
|
|
9162
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationComparisonRequest"
|
|
9163
|
+
},
|
|
9164
|
+
"Operations.RunnerMcpEvaluationRunsApi_compare.Response.200": {
|
|
9165
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunComparison"
|
|
9166
|
+
},
|
|
9167
|
+
"Operations.RunnerMcpEvaluationRunsApi_compare.Response.400": {
|
|
9168
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9169
|
+
},
|
|
9170
|
+
"Operations.RunnerMcpEvaluationRunsApi_compare.Response.401": {
|
|
9171
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9172
|
+
},
|
|
9173
|
+
"Operations.RunnerMcpEvaluationRunsApi_compare.Response.403": {
|
|
9174
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9175
|
+
},
|
|
9176
|
+
"Operations.RunnerMcpEvaluationRunsApi_compare.Response.404": {
|
|
9177
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9178
|
+
},
|
|
9179
|
+
"Operations.RunnerMcpEvaluationRunsApi_compare.Response.409": {
|
|
9180
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9181
|
+
},
|
|
9182
|
+
"Operations.RunnerMcpEvaluationRunsApi_compare.Response.500": {
|
|
9183
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9184
|
+
},
|
|
9185
|
+
"Operations.RunnerMcpEvaluationRunsApi_compare.Response.503": {
|
|
9186
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9187
|
+
},
|
|
9188
|
+
"Operations.RunnerMcpEvaluationRunsApi_export.Request": {
|
|
9189
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExportRequest"
|
|
9190
|
+
},
|
|
9191
|
+
"Operations.RunnerMcpEvaluationRunsApi_export.Response.202": {
|
|
9192
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExportAccepted"
|
|
9193
|
+
},
|
|
9194
|
+
"Operations.RunnerMcpEvaluationRunsApi_export.Response.400": {
|
|
9195
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9196
|
+
},
|
|
9197
|
+
"Operations.RunnerMcpEvaluationRunsApi_export.Response.401": {
|
|
9198
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9199
|
+
},
|
|
9200
|
+
"Operations.RunnerMcpEvaluationRunsApi_export.Response.403": {
|
|
9201
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9202
|
+
},
|
|
9203
|
+
"Operations.RunnerMcpEvaluationRunsApi_export.Response.404": {
|
|
9204
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9205
|
+
},
|
|
9206
|
+
"Operations.RunnerMcpEvaluationRunsApi_export.Response.409": {
|
|
9207
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9208
|
+
},
|
|
9209
|
+
"Operations.RunnerMcpEvaluationRunsApi_export.Response.500": {
|
|
9210
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9211
|
+
},
|
|
9212
|
+
"Operations.RunnerMcpEvaluationRunsApi_export.Response.503": {
|
|
9213
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9214
|
+
},
|
|
9215
|
+
"Operations.RunnerMcpEvaluationRunsApi_get.Response.200": {
|
|
9216
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRun"
|
|
9217
|
+
},
|
|
9218
|
+
"Operations.RunnerMcpEvaluationRunsApi_get.Response.401": {
|
|
9219
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9220
|
+
},
|
|
9221
|
+
"Operations.RunnerMcpEvaluationRunsApi_get.Response.403": {
|
|
9222
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9223
|
+
},
|
|
9224
|
+
"Operations.RunnerMcpEvaluationRunsApi_get.Response.404": {
|
|
9225
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9226
|
+
},
|
|
9227
|
+
"Operations.RunnerMcpEvaluationRunsApi_get.Response.500": {
|
|
9228
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9229
|
+
},
|
|
9230
|
+
"Operations.RunnerMcpEvaluationRunsApi_get.Response.503": {
|
|
9231
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9232
|
+
},
|
|
9233
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExport.Response.200": {
|
|
9234
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExport"
|
|
9235
|
+
},
|
|
9236
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExport.Response.401": {
|
|
9237
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9238
|
+
},
|
|
9239
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExport.Response.403": {
|
|
9240
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9241
|
+
},
|
|
9242
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExport.Response.404": {
|
|
9243
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9244
|
+
},
|
|
9245
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExport.Response.500": {
|
|
9246
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9247
|
+
},
|
|
9248
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExport.Response.503": {
|
|
9249
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9250
|
+
},
|
|
9251
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExportContent.Response.200": {
|
|
9252
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationExportArtifact"
|
|
9253
|
+
},
|
|
9254
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExportContent.Response.401": {
|
|
9255
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9256
|
+
},
|
|
9257
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExportContent.Response.403": {
|
|
9258
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9259
|
+
},
|
|
9260
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExportContent.Response.404": {
|
|
9261
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9262
|
+
},
|
|
9263
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExportContent.Response.409": {
|
|
9264
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9265
|
+
},
|
|
9266
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExportContent.Response.500": {
|
|
9267
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9268
|
+
},
|
|
9269
|
+
"Operations.RunnerMcpEvaluationRunsApi_getExportContent.Response.503": {
|
|
9270
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9271
|
+
},
|
|
9272
|
+
"Operations.RunnerMcpEvaluationRunsApi_list.Response.200": {
|
|
9273
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunPage"
|
|
9274
|
+
},
|
|
9275
|
+
"Operations.RunnerMcpEvaluationRunsApi_list.Response.400": {
|
|
9276
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9277
|
+
},
|
|
9278
|
+
"Operations.RunnerMcpEvaluationRunsApi_list.Response.401": {
|
|
9279
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9280
|
+
},
|
|
9281
|
+
"Operations.RunnerMcpEvaluationRunsApi_list.Response.403": {
|
|
9282
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9283
|
+
},
|
|
9284
|
+
"Operations.RunnerMcpEvaluationRunsApi_list.Response.404": {
|
|
9285
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9286
|
+
},
|
|
9287
|
+
"Operations.RunnerMcpEvaluationRunsApi_list.Response.500": {
|
|
9288
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9289
|
+
},
|
|
9290
|
+
"Operations.RunnerMcpEvaluationRunsApi_list.Response.503": {
|
|
9291
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9292
|
+
},
|
|
9293
|
+
"Operations.RunnerMcpExecutionsApi_cancel.Request": {
|
|
9294
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionCancelRequest"
|
|
9295
|
+
},
|
|
9296
|
+
"Operations.RunnerMcpExecutionsApi_cancel.Response.202": {
|
|
9297
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionAccepted"
|
|
9298
|
+
},
|
|
9299
|
+
"Operations.RunnerMcpExecutionsApi_cancel.Response.400": {
|
|
9300
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9301
|
+
},
|
|
9302
|
+
"Operations.RunnerMcpExecutionsApi_cancel.Response.401": {
|
|
9303
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9304
|
+
},
|
|
9305
|
+
"Operations.RunnerMcpExecutionsApi_cancel.Response.403": {
|
|
9306
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9307
|
+
},
|
|
9308
|
+
"Operations.RunnerMcpExecutionsApi_cancel.Response.404": {
|
|
9309
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9310
|
+
},
|
|
9311
|
+
"Operations.RunnerMcpExecutionsApi_cancel.Response.409": {
|
|
9312
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9313
|
+
},
|
|
9314
|
+
"Operations.RunnerMcpExecutionsApi_cancel.Response.500": {
|
|
9315
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9316
|
+
},
|
|
9317
|
+
"Operations.RunnerMcpExecutionsApi_cancel.Response.503": {
|
|
9318
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9319
|
+
},
|
|
9320
|
+
"Operations.RunnerMcpExecutionsApi_get.Response.200": {
|
|
9321
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionRecord"
|
|
9322
|
+
},
|
|
9323
|
+
"Operations.RunnerMcpExecutionsApi_get.Response.401": {
|
|
9324
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9325
|
+
},
|
|
9326
|
+
"Operations.RunnerMcpExecutionsApi_get.Response.403": {
|
|
9327
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9328
|
+
},
|
|
9329
|
+
"Operations.RunnerMcpExecutionsApi_get.Response.404": {
|
|
9330
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9331
|
+
},
|
|
9332
|
+
"Operations.RunnerMcpExecutionsApi_get.Response.500": {
|
|
9333
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9334
|
+
},
|
|
9335
|
+
"Operations.RunnerMcpExecutionsApi_get.Response.503": {
|
|
9336
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9337
|
+
},
|
|
9338
|
+
"Operations.RunnerMcpExecutionsApi_list.Response.200": {
|
|
9339
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionPage"
|
|
9340
|
+
},
|
|
9341
|
+
"Operations.RunnerMcpExecutionsApi_list.Response.400": {
|
|
9342
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9343
|
+
},
|
|
9344
|
+
"Operations.RunnerMcpExecutionsApi_list.Response.401": {
|
|
9345
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9346
|
+
},
|
|
9347
|
+
"Operations.RunnerMcpExecutionsApi_list.Response.403": {
|
|
9348
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9349
|
+
},
|
|
9350
|
+
"Operations.RunnerMcpExecutionsApi_list.Response.404": {
|
|
9351
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9352
|
+
},
|
|
9353
|
+
"Operations.RunnerMcpExecutionsApi_list.Response.500": {
|
|
9354
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9355
|
+
},
|
|
9356
|
+
"Operations.RunnerMcpExecutionsApi_list.Response.503": {
|
|
9357
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9358
|
+
},
|
|
9359
|
+
"Operations.RunnerMcpExecutionsApi_start.Request": {
|
|
9360
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionRequest"
|
|
9361
|
+
},
|
|
9362
|
+
"Operations.RunnerMcpExecutionsApi_start.Response.202": {
|
|
9363
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionAccepted"
|
|
9364
|
+
},
|
|
9365
|
+
"Operations.RunnerMcpExecutionsApi_start.Response.400": {
|
|
9366
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9367
|
+
},
|
|
9368
|
+
"Operations.RunnerMcpExecutionsApi_start.Response.401": {
|
|
9369
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9370
|
+
},
|
|
9371
|
+
"Operations.RunnerMcpExecutionsApi_start.Response.403": {
|
|
9372
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9373
|
+
},
|
|
9374
|
+
"Operations.RunnerMcpExecutionsApi_start.Response.404": {
|
|
9375
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9376
|
+
},
|
|
9377
|
+
"Operations.RunnerMcpExecutionsApi_start.Response.409": {
|
|
9378
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9379
|
+
},
|
|
9380
|
+
"Operations.RunnerMcpExecutionsApi_start.Response.500": {
|
|
9381
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9382
|
+
},
|
|
9383
|
+
"Operations.RunnerMcpExecutionsApi_start.Response.502": {
|
|
9384
|
+
"$ref": "#/$defs/Common.Errors.BadGatewayError"
|
|
9385
|
+
},
|
|
9386
|
+
"Operations.RunnerMcpExecutionsApi_start.Response.503": {
|
|
9387
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9388
|
+
},
|
|
9389
|
+
"Operations.RunnerMcpExecutionsApi_streamUpdates.Response.401": {
|
|
9390
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9391
|
+
},
|
|
9392
|
+
"Operations.RunnerMcpExecutionsApi_streamUpdates.Response.403": {
|
|
9393
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9394
|
+
},
|
|
9395
|
+
"Operations.RunnerMcpExecutionsApi_streamUpdates.Response.404": {
|
|
9396
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9397
|
+
},
|
|
9398
|
+
"Operations.RunnerMcpExecutionsApi_streamUpdates.Response.500": {
|
|
9399
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9400
|
+
},
|
|
9401
|
+
"Operations.RunnerMcpExecutionsApi_streamUpdates.Response.503": {
|
|
9402
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9403
|
+
},
|
|
9404
|
+
"Operations.RunnerMcpExecutionsApi_telemetry.Response.200": {
|
|
9405
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpExecutionTelemetryResponse"
|
|
9406
|
+
},
|
|
9407
|
+
"Operations.RunnerMcpExecutionsApi_telemetry.Response.401": {
|
|
9408
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9409
|
+
},
|
|
9410
|
+
"Operations.RunnerMcpExecutionsApi_telemetry.Response.403": {
|
|
9411
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9412
|
+
},
|
|
9413
|
+
"Operations.RunnerMcpExecutionsApi_telemetry.Response.404": {
|
|
9414
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9415
|
+
},
|
|
9416
|
+
"Operations.RunnerMcpExecutionsApi_telemetry.Response.500": {
|
|
9417
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9418
|
+
},
|
|
9419
|
+
"Operations.RunnerMcpExecutionsApi_telemetry.Response.503": {
|
|
9420
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9421
|
+
},
|
|
9422
|
+
"Operations.RunnerMcpServersApi_connect.Response.202": {
|
|
9423
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerActionAccepted"
|
|
9424
|
+
},
|
|
9425
|
+
"Operations.RunnerMcpServersApi_connect.Response.401": {
|
|
9426
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9427
|
+
},
|
|
9428
|
+
"Operations.RunnerMcpServersApi_connect.Response.403": {
|
|
9429
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9430
|
+
},
|
|
9431
|
+
"Operations.RunnerMcpServersApi_connect.Response.404": {
|
|
9432
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9433
|
+
},
|
|
9434
|
+
"Operations.RunnerMcpServersApi_connect.Response.409": {
|
|
9435
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9436
|
+
},
|
|
9437
|
+
"Operations.RunnerMcpServersApi_connect.Response.500": {
|
|
9438
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9439
|
+
},
|
|
9440
|
+
"Operations.RunnerMcpServersApi_connect.Response.502": {
|
|
9441
|
+
"$ref": "#/$defs/Common.Errors.BadGatewayError"
|
|
9442
|
+
},
|
|
9443
|
+
"Operations.RunnerMcpServersApi_connect.Response.503": {
|
|
9444
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9445
|
+
},
|
|
9446
|
+
"Operations.RunnerMcpServersApi_create.Request": {
|
|
9447
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerCreateRequest"
|
|
9448
|
+
},
|
|
9449
|
+
"Operations.RunnerMcpServersApi_create.Response.200": {
|
|
9450
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServer"
|
|
9451
|
+
},
|
|
9452
|
+
"Operations.RunnerMcpServersApi_create.Response.400": {
|
|
9453
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9454
|
+
},
|
|
9455
|
+
"Operations.RunnerMcpServersApi_create.Response.401": {
|
|
9456
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9457
|
+
},
|
|
9458
|
+
"Operations.RunnerMcpServersApi_create.Response.403": {
|
|
9459
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9460
|
+
},
|
|
9461
|
+
"Operations.RunnerMcpServersApi_create.Response.404": {
|
|
9462
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9463
|
+
},
|
|
9464
|
+
"Operations.RunnerMcpServersApi_create.Response.409": {
|
|
9465
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9466
|
+
},
|
|
9467
|
+
"Operations.RunnerMcpServersApi_create.Response.500": {
|
|
9468
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9469
|
+
},
|
|
9470
|
+
"Operations.RunnerMcpServersApi_create.Response.503": {
|
|
9471
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9472
|
+
},
|
|
9473
|
+
"Operations.RunnerMcpServersApi_delete.Response.401": {
|
|
9474
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9475
|
+
},
|
|
9476
|
+
"Operations.RunnerMcpServersApi_delete.Response.403": {
|
|
9477
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9478
|
+
},
|
|
9479
|
+
"Operations.RunnerMcpServersApi_delete.Response.404": {
|
|
9480
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9481
|
+
},
|
|
9482
|
+
"Operations.RunnerMcpServersApi_delete.Response.409": {
|
|
9483
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9484
|
+
},
|
|
9485
|
+
"Operations.RunnerMcpServersApi_delete.Response.500": {
|
|
9486
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9487
|
+
},
|
|
9488
|
+
"Operations.RunnerMcpServersApi_delete.Response.503": {
|
|
9489
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9490
|
+
},
|
|
9491
|
+
"Operations.RunnerMcpServersApi_disconnect.Response.202": {
|
|
9492
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerActionAccepted"
|
|
9493
|
+
},
|
|
9494
|
+
"Operations.RunnerMcpServersApi_disconnect.Response.401": {
|
|
9495
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9496
|
+
},
|
|
9497
|
+
"Operations.RunnerMcpServersApi_disconnect.Response.403": {
|
|
9498
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9499
|
+
},
|
|
9500
|
+
"Operations.RunnerMcpServersApi_disconnect.Response.404": {
|
|
9501
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9502
|
+
},
|
|
9503
|
+
"Operations.RunnerMcpServersApi_disconnect.Response.409": {
|
|
9504
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9505
|
+
},
|
|
9506
|
+
"Operations.RunnerMcpServersApi_disconnect.Response.500": {
|
|
9507
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9508
|
+
},
|
|
9509
|
+
"Operations.RunnerMcpServersApi_disconnect.Response.503": {
|
|
9510
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9511
|
+
},
|
|
9512
|
+
"Operations.RunnerMcpServersApi_discovery.Response.200": {
|
|
9513
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpDiscoverySnapshot"
|
|
9514
|
+
},
|
|
9515
|
+
"Operations.RunnerMcpServersApi_discovery.Response.401": {
|
|
9516
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9517
|
+
},
|
|
9518
|
+
"Operations.RunnerMcpServersApi_discovery.Response.403": {
|
|
9519
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9520
|
+
},
|
|
9521
|
+
"Operations.RunnerMcpServersApi_discovery.Response.404": {
|
|
9522
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9523
|
+
},
|
|
9524
|
+
"Operations.RunnerMcpServersApi_discovery.Response.409": {
|
|
9525
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9526
|
+
},
|
|
9527
|
+
"Operations.RunnerMcpServersApi_discovery.Response.500": {
|
|
9528
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9529
|
+
},
|
|
9530
|
+
"Operations.RunnerMcpServersApi_discovery.Response.502": {
|
|
9531
|
+
"$ref": "#/$defs/Common.Errors.BadGatewayError"
|
|
9532
|
+
},
|
|
9533
|
+
"Operations.RunnerMcpServersApi_discovery.Response.503": {
|
|
9534
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9535
|
+
},
|
|
9536
|
+
"Operations.RunnerMcpServersApi_get.Response.200": {
|
|
9537
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServer"
|
|
9538
|
+
},
|
|
9539
|
+
"Operations.RunnerMcpServersApi_get.Response.401": {
|
|
9540
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9541
|
+
},
|
|
9542
|
+
"Operations.RunnerMcpServersApi_get.Response.403": {
|
|
9543
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9544
|
+
},
|
|
9545
|
+
"Operations.RunnerMcpServersApi_get.Response.404": {
|
|
9546
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9547
|
+
},
|
|
9548
|
+
"Operations.RunnerMcpServersApi_get.Response.500": {
|
|
9549
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9550
|
+
},
|
|
9551
|
+
"Operations.RunnerMcpServersApi_get.Response.503": {
|
|
9552
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9553
|
+
},
|
|
9554
|
+
"Operations.RunnerMcpServersApi_list.Response.200": {
|
|
9555
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerListResponse"
|
|
9556
|
+
},
|
|
9557
|
+
"Operations.RunnerMcpServersApi_list.Response.401": {
|
|
9558
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9559
|
+
},
|
|
9560
|
+
"Operations.RunnerMcpServersApi_list.Response.403": {
|
|
9561
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9562
|
+
},
|
|
9563
|
+
"Operations.RunnerMcpServersApi_list.Response.404": {
|
|
9564
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9565
|
+
},
|
|
9566
|
+
"Operations.RunnerMcpServersApi_list.Response.500": {
|
|
9567
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9568
|
+
},
|
|
9569
|
+
"Operations.RunnerMcpServersApi_list.Response.503": {
|
|
9570
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9571
|
+
},
|
|
9572
|
+
"Operations.RunnerMcpServersApi_protocolEvents.Response.200": {
|
|
9573
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpProtocolEventPage"
|
|
9574
|
+
},
|
|
9575
|
+
"Operations.RunnerMcpServersApi_protocolEvents.Response.400": {
|
|
9576
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9577
|
+
},
|
|
9578
|
+
"Operations.RunnerMcpServersApi_protocolEvents.Response.401": {
|
|
9579
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9580
|
+
},
|
|
9581
|
+
"Operations.RunnerMcpServersApi_protocolEvents.Response.403": {
|
|
9582
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9583
|
+
},
|
|
9584
|
+
"Operations.RunnerMcpServersApi_protocolEvents.Response.404": {
|
|
9585
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9586
|
+
},
|
|
9587
|
+
"Operations.RunnerMcpServersApi_protocolEvents.Response.500": {
|
|
9588
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9589
|
+
},
|
|
9590
|
+
"Operations.RunnerMcpServersApi_protocolEvents.Response.503": {
|
|
9591
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9592
|
+
},
|
|
9593
|
+
"Operations.RunnerMcpServersApi_reconnect.Response.202": {
|
|
9594
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerActionAccepted"
|
|
9595
|
+
},
|
|
9596
|
+
"Operations.RunnerMcpServersApi_reconnect.Response.401": {
|
|
9597
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9598
|
+
},
|
|
9599
|
+
"Operations.RunnerMcpServersApi_reconnect.Response.403": {
|
|
9600
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9601
|
+
},
|
|
9602
|
+
"Operations.RunnerMcpServersApi_reconnect.Response.404": {
|
|
9603
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9604
|
+
},
|
|
9605
|
+
"Operations.RunnerMcpServersApi_reconnect.Response.409": {
|
|
9606
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9607
|
+
},
|
|
9608
|
+
"Operations.RunnerMcpServersApi_reconnect.Response.500": {
|
|
9609
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9610
|
+
},
|
|
9611
|
+
"Operations.RunnerMcpServersApi_reconnect.Response.502": {
|
|
9612
|
+
"$ref": "#/$defs/Common.Errors.BadGatewayError"
|
|
9613
|
+
},
|
|
9614
|
+
"Operations.RunnerMcpServersApi_reconnect.Response.503": {
|
|
9615
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9616
|
+
},
|
|
9617
|
+
"Operations.RunnerMcpServersApi_refreshDiscovery.Response.200": {
|
|
9618
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpDiscoverySnapshot"
|
|
9619
|
+
},
|
|
9620
|
+
"Operations.RunnerMcpServersApi_refreshDiscovery.Response.401": {
|
|
9621
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9622
|
+
},
|
|
9623
|
+
"Operations.RunnerMcpServersApi_refreshDiscovery.Response.403": {
|
|
9624
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9625
|
+
},
|
|
9626
|
+
"Operations.RunnerMcpServersApi_refreshDiscovery.Response.404": {
|
|
9627
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9628
|
+
},
|
|
9629
|
+
"Operations.RunnerMcpServersApi_refreshDiscovery.Response.409": {
|
|
9630
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9631
|
+
},
|
|
9632
|
+
"Operations.RunnerMcpServersApi_refreshDiscovery.Response.500": {
|
|
9633
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9634
|
+
},
|
|
9635
|
+
"Operations.RunnerMcpServersApi_refreshDiscovery.Response.502": {
|
|
9636
|
+
"$ref": "#/$defs/Common.Errors.BadGatewayError"
|
|
9637
|
+
},
|
|
9638
|
+
"Operations.RunnerMcpServersApi_refreshDiscovery.Response.503": {
|
|
9639
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9640
|
+
},
|
|
9641
|
+
"Operations.RunnerMcpServersApi_streamProtocolEvents.Response.401": {
|
|
9642
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9643
|
+
},
|
|
9644
|
+
"Operations.RunnerMcpServersApi_streamProtocolEvents.Response.403": {
|
|
9645
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9646
|
+
},
|
|
9647
|
+
"Operations.RunnerMcpServersApi_streamProtocolEvents.Response.404": {
|
|
9648
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9649
|
+
},
|
|
9650
|
+
"Operations.RunnerMcpServersApi_streamProtocolEvents.Response.500": {
|
|
9651
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9652
|
+
},
|
|
9653
|
+
"Operations.RunnerMcpServersApi_streamProtocolEvents.Response.503": {
|
|
9654
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9655
|
+
},
|
|
9656
|
+
"Operations.RunnerMcpServersApi_update.Request": {
|
|
9657
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServerUpdateRequest"
|
|
9658
|
+
},
|
|
9659
|
+
"Operations.RunnerMcpServersApi_update.Response.200": {
|
|
9660
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpServer"
|
|
9661
|
+
},
|
|
9662
|
+
"Operations.RunnerMcpServersApi_update.Response.400": {
|
|
9663
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9664
|
+
},
|
|
9665
|
+
"Operations.RunnerMcpServersApi_update.Response.401": {
|
|
9666
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9667
|
+
},
|
|
9668
|
+
"Operations.RunnerMcpServersApi_update.Response.403": {
|
|
9669
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9670
|
+
},
|
|
9671
|
+
"Operations.RunnerMcpServersApi_update.Response.404": {
|
|
9672
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9673
|
+
},
|
|
9674
|
+
"Operations.RunnerMcpServersApi_update.Response.409": {
|
|
9675
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9676
|
+
},
|
|
9677
|
+
"Operations.RunnerMcpServersApi_update.Response.500": {
|
|
9678
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9679
|
+
},
|
|
9680
|
+
"Operations.RunnerMcpServersApi_update.Response.503": {
|
|
9681
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9682
|
+
},
|
|
9683
|
+
"Operations.RunnerMcpSuitesApi_create.Request": {
|
|
9684
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestSuiteCreateRequest"
|
|
9685
|
+
},
|
|
9686
|
+
"Operations.RunnerMcpSuitesApi_create.Response.200": {
|
|
9687
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestSuite"
|
|
9688
|
+
},
|
|
9689
|
+
"Operations.RunnerMcpSuitesApi_create.Response.400": {
|
|
9690
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9691
|
+
},
|
|
9692
|
+
"Operations.RunnerMcpSuitesApi_create.Response.401": {
|
|
9693
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9694
|
+
},
|
|
9695
|
+
"Operations.RunnerMcpSuitesApi_create.Response.403": {
|
|
9696
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9697
|
+
},
|
|
9698
|
+
"Operations.RunnerMcpSuitesApi_create.Response.404": {
|
|
9699
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9700
|
+
},
|
|
9701
|
+
"Operations.RunnerMcpSuitesApi_create.Response.409": {
|
|
9702
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9703
|
+
},
|
|
9704
|
+
"Operations.RunnerMcpSuitesApi_create.Response.500": {
|
|
9705
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9706
|
+
},
|
|
9707
|
+
"Operations.RunnerMcpSuitesApi_create.Response.503": {
|
|
9708
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9709
|
+
},
|
|
9710
|
+
"Operations.RunnerMcpSuitesApi_delete.Response.401": {
|
|
9711
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9712
|
+
},
|
|
9713
|
+
"Operations.RunnerMcpSuitesApi_delete.Response.403": {
|
|
9714
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9715
|
+
},
|
|
9716
|
+
"Operations.RunnerMcpSuitesApi_delete.Response.404": {
|
|
9717
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9718
|
+
},
|
|
9719
|
+
"Operations.RunnerMcpSuitesApi_delete.Response.409": {
|
|
9720
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9721
|
+
},
|
|
9722
|
+
"Operations.RunnerMcpSuitesApi_delete.Response.500": {
|
|
9723
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9724
|
+
},
|
|
9725
|
+
"Operations.RunnerMcpSuitesApi_delete.Response.503": {
|
|
9726
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9727
|
+
},
|
|
9728
|
+
"Operations.RunnerMcpSuitesApi_get.Response.200": {
|
|
9729
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestSuite"
|
|
9730
|
+
},
|
|
9731
|
+
"Operations.RunnerMcpSuitesApi_get.Response.401": {
|
|
9732
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9733
|
+
},
|
|
9734
|
+
"Operations.RunnerMcpSuitesApi_get.Response.403": {
|
|
9735
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9736
|
+
},
|
|
9737
|
+
"Operations.RunnerMcpSuitesApi_get.Response.404": {
|
|
9738
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9739
|
+
},
|
|
9740
|
+
"Operations.RunnerMcpSuitesApi_get.Response.500": {
|
|
9741
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9742
|
+
},
|
|
9743
|
+
"Operations.RunnerMcpSuitesApi_get.Response.503": {
|
|
9744
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9745
|
+
},
|
|
9746
|
+
"Operations.RunnerMcpSuitesApi_list.Response.200": {
|
|
9747
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestSuitePage"
|
|
9748
|
+
},
|
|
9749
|
+
"Operations.RunnerMcpSuitesApi_list.Response.400": {
|
|
9750
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9751
|
+
},
|
|
9752
|
+
"Operations.RunnerMcpSuitesApi_list.Response.401": {
|
|
9753
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9754
|
+
},
|
|
9755
|
+
"Operations.RunnerMcpSuitesApi_list.Response.403": {
|
|
9756
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9757
|
+
},
|
|
9758
|
+
"Operations.RunnerMcpSuitesApi_list.Response.404": {
|
|
9759
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9760
|
+
},
|
|
9761
|
+
"Operations.RunnerMcpSuitesApi_list.Response.500": {
|
|
9762
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9763
|
+
},
|
|
9764
|
+
"Operations.RunnerMcpSuitesApi_list.Response.503": {
|
|
9765
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9766
|
+
},
|
|
9767
|
+
"Operations.RunnerMcpSuitesApi_run.Request": {
|
|
9768
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpSuiteRunRequest"
|
|
9769
|
+
},
|
|
9770
|
+
"Operations.RunnerMcpSuitesApi_run.Response.202": {
|
|
9771
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunAccepted"
|
|
9772
|
+
},
|
|
9773
|
+
"Operations.RunnerMcpSuitesApi_run.Response.400": {
|
|
9774
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9775
|
+
},
|
|
9776
|
+
"Operations.RunnerMcpSuitesApi_run.Response.401": {
|
|
9777
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9778
|
+
},
|
|
9779
|
+
"Operations.RunnerMcpSuitesApi_run.Response.403": {
|
|
9780
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9781
|
+
},
|
|
9782
|
+
"Operations.RunnerMcpSuitesApi_run.Response.404": {
|
|
9783
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9784
|
+
},
|
|
9785
|
+
"Operations.RunnerMcpSuitesApi_run.Response.409": {
|
|
9786
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9787
|
+
},
|
|
9788
|
+
"Operations.RunnerMcpSuitesApi_run.Response.500": {
|
|
9789
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9790
|
+
},
|
|
9791
|
+
"Operations.RunnerMcpSuitesApi_run.Response.503": {
|
|
9792
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9793
|
+
},
|
|
9794
|
+
"Operations.RunnerMcpSuitesApi_update.Request": {
|
|
9795
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestSuiteUpdateRequest"
|
|
9796
|
+
},
|
|
9797
|
+
"Operations.RunnerMcpSuitesApi_update.Response.200": {
|
|
9798
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestSuite"
|
|
9799
|
+
},
|
|
9800
|
+
"Operations.RunnerMcpSuitesApi_update.Response.400": {
|
|
9801
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9802
|
+
},
|
|
9803
|
+
"Operations.RunnerMcpSuitesApi_update.Response.401": {
|
|
9804
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9805
|
+
},
|
|
9806
|
+
"Operations.RunnerMcpSuitesApi_update.Response.403": {
|
|
9807
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9808
|
+
},
|
|
9809
|
+
"Operations.RunnerMcpSuitesApi_update.Response.404": {
|
|
9810
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9811
|
+
},
|
|
9812
|
+
"Operations.RunnerMcpSuitesApi_update.Response.409": {
|
|
9813
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9814
|
+
},
|
|
9815
|
+
"Operations.RunnerMcpSuitesApi_update.Response.500": {
|
|
9816
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9817
|
+
},
|
|
9818
|
+
"Operations.RunnerMcpSuitesApi_update.Response.503": {
|
|
9819
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9820
|
+
},
|
|
9821
|
+
"Operations.RunnerMcpTestCasesApi_create.Request": {
|
|
9822
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseCreateRequest"
|
|
9823
|
+
},
|
|
9824
|
+
"Operations.RunnerMcpTestCasesApi_create.Response.200": {
|
|
9825
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCase"
|
|
9826
|
+
},
|
|
9827
|
+
"Operations.RunnerMcpTestCasesApi_create.Response.400": {
|
|
9828
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9829
|
+
},
|
|
9830
|
+
"Operations.RunnerMcpTestCasesApi_create.Response.401": {
|
|
9831
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9832
|
+
},
|
|
9833
|
+
"Operations.RunnerMcpTestCasesApi_create.Response.403": {
|
|
9834
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9835
|
+
},
|
|
9836
|
+
"Operations.RunnerMcpTestCasesApi_create.Response.404": {
|
|
9837
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9838
|
+
},
|
|
9839
|
+
"Operations.RunnerMcpTestCasesApi_create.Response.409": {
|
|
9840
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9841
|
+
},
|
|
9842
|
+
"Operations.RunnerMcpTestCasesApi_create.Response.500": {
|
|
9843
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9844
|
+
},
|
|
9845
|
+
"Operations.RunnerMcpTestCasesApi_create.Response.503": {
|
|
9846
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9847
|
+
},
|
|
9848
|
+
"Operations.RunnerMcpTestCasesApi_delete.Response.401": {
|
|
9849
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9850
|
+
},
|
|
9851
|
+
"Operations.RunnerMcpTestCasesApi_delete.Response.403": {
|
|
9852
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9853
|
+
},
|
|
9854
|
+
"Operations.RunnerMcpTestCasesApi_delete.Response.404": {
|
|
9855
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9856
|
+
},
|
|
9857
|
+
"Operations.RunnerMcpTestCasesApi_delete.Response.409": {
|
|
9858
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9859
|
+
},
|
|
9860
|
+
"Operations.RunnerMcpTestCasesApi_delete.Response.500": {
|
|
9861
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9862
|
+
},
|
|
9863
|
+
"Operations.RunnerMcpTestCasesApi_delete.Response.503": {
|
|
9864
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9865
|
+
},
|
|
9866
|
+
"Operations.RunnerMcpTestCasesApi_get.Response.200": {
|
|
9867
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCase"
|
|
9868
|
+
},
|
|
9869
|
+
"Operations.RunnerMcpTestCasesApi_get.Response.401": {
|
|
9870
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9871
|
+
},
|
|
9872
|
+
"Operations.RunnerMcpTestCasesApi_get.Response.403": {
|
|
9873
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9874
|
+
},
|
|
9875
|
+
"Operations.RunnerMcpTestCasesApi_get.Response.404": {
|
|
9876
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9877
|
+
},
|
|
9878
|
+
"Operations.RunnerMcpTestCasesApi_get.Response.500": {
|
|
9879
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9880
|
+
},
|
|
9881
|
+
"Operations.RunnerMcpTestCasesApi_get.Response.503": {
|
|
9882
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9883
|
+
},
|
|
9884
|
+
"Operations.RunnerMcpTestCasesApi_list.Response.200": {
|
|
9885
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCasePage"
|
|
9886
|
+
},
|
|
9887
|
+
"Operations.RunnerMcpTestCasesApi_list.Response.400": {
|
|
9888
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9889
|
+
},
|
|
9890
|
+
"Operations.RunnerMcpTestCasesApi_list.Response.401": {
|
|
9891
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9892
|
+
},
|
|
9893
|
+
"Operations.RunnerMcpTestCasesApi_list.Response.403": {
|
|
9894
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9895
|
+
},
|
|
9896
|
+
"Operations.RunnerMcpTestCasesApi_list.Response.404": {
|
|
9897
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9898
|
+
},
|
|
9899
|
+
"Operations.RunnerMcpTestCasesApi_list.Response.500": {
|
|
9900
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9901
|
+
},
|
|
9902
|
+
"Operations.RunnerMcpTestCasesApi_list.Response.503": {
|
|
9903
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9904
|
+
},
|
|
9905
|
+
"Operations.RunnerMcpTestCasesApi_run.Request": {
|
|
9906
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseRunRequest"
|
|
9907
|
+
},
|
|
9908
|
+
"Operations.RunnerMcpTestCasesApi_run.Response.202": {
|
|
9909
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationRunAccepted"
|
|
9910
|
+
},
|
|
9911
|
+
"Operations.RunnerMcpTestCasesApi_run.Response.400": {
|
|
9912
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9913
|
+
},
|
|
9914
|
+
"Operations.RunnerMcpTestCasesApi_run.Response.401": {
|
|
9915
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9916
|
+
},
|
|
9917
|
+
"Operations.RunnerMcpTestCasesApi_run.Response.403": {
|
|
9918
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9919
|
+
},
|
|
9920
|
+
"Operations.RunnerMcpTestCasesApi_run.Response.404": {
|
|
9921
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9922
|
+
},
|
|
9923
|
+
"Operations.RunnerMcpTestCasesApi_run.Response.409": {
|
|
9924
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9925
|
+
},
|
|
9926
|
+
"Operations.RunnerMcpTestCasesApi_run.Response.500": {
|
|
9927
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9928
|
+
},
|
|
9929
|
+
"Operations.RunnerMcpTestCasesApi_run.Response.503": {
|
|
9930
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9931
|
+
},
|
|
9932
|
+
"Operations.RunnerMcpTestCasesApi_update.Request": {
|
|
9933
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCaseUpdateRequest"
|
|
9934
|
+
},
|
|
9935
|
+
"Operations.RunnerMcpTestCasesApi_update.Response.200": {
|
|
9936
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpTestCase"
|
|
9937
|
+
},
|
|
9938
|
+
"Operations.RunnerMcpTestCasesApi_update.Response.400": {
|
|
9939
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9940
|
+
},
|
|
9941
|
+
"Operations.RunnerMcpTestCasesApi_update.Response.401": {
|
|
9942
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9943
|
+
},
|
|
9944
|
+
"Operations.RunnerMcpTestCasesApi_update.Response.403": {
|
|
9945
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9946
|
+
},
|
|
9947
|
+
"Operations.RunnerMcpTestCasesApi_update.Response.404": {
|
|
9948
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9949
|
+
},
|
|
9950
|
+
"Operations.RunnerMcpTestCasesApi_update.Response.409": {
|
|
9951
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9952
|
+
},
|
|
9953
|
+
"Operations.RunnerMcpTestCasesApi_update.Response.500": {
|
|
9954
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9955
|
+
},
|
|
9956
|
+
"Operations.RunnerMcpTestCasesApi_update.Response.503": {
|
|
9957
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9958
|
+
},
|
|
9959
|
+
"Operations.RunnerResourcesApi_logs.Response.200": {
|
|
9960
|
+
"type": "array",
|
|
9961
|
+
"items": {
|
|
9962
|
+
"$ref": "#/$defs/Runner.RunnerLogLine"
|
|
9963
|
+
}
|
|
9964
|
+
},
|
|
9965
|
+
"Operations.RunnerResourcesApi_logs.Response.401": {
|
|
9966
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9967
|
+
},
|
|
9968
|
+
"Operations.RunnerResourcesApi_logs.Response.403": {
|
|
9969
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9970
|
+
},
|
|
9971
|
+
"Operations.RunnerResourcesApi_logs.Response.404": {
|
|
9972
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9973
|
+
},
|
|
9974
|
+
"Operations.RunnerResourcesApi_logs.Response.500": {
|
|
9975
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9976
|
+
},
|
|
9977
|
+
"Operations.RunnerResourcesApi_logs.Response.503": {
|
|
9978
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9979
|
+
},
|
|
9980
|
+
"Operations.RunnerResourcesApi_restart.Response.401": {
|
|
9981
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
9982
|
+
},
|
|
9983
|
+
"Operations.RunnerResourcesApi_restart.Response.403": {
|
|
9984
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9985
|
+
},
|
|
9986
|
+
"Operations.RunnerResourcesApi_restart.Response.404": {
|
|
9987
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9988
|
+
},
|
|
9989
|
+
"Operations.RunnerResourcesApi_restart.Response.409": {
|
|
9990
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9991
|
+
},
|
|
9992
|
+
"Operations.RunnerResourcesApi_restart.Response.500": {
|
|
9993
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9994
|
+
},
|
|
9995
|
+
"Operations.RunnerResourcesApi_restart.Response.503": {
|
|
9996
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9997
|
+
},
|
|
9998
|
+
"Operations.RunnerResourcesApi_snapshot.Response.200": {
|
|
9999
|
+
"type": "array",
|
|
10000
|
+
"items": {
|
|
10001
|
+
"$ref": "#/$defs/Runner.RunnerResourceState"
|
|
10002
|
+
}
|
|
10003
|
+
},
|
|
10004
|
+
"Operations.RunnerResourcesApi_snapshot.Response.401": {
|
|
10005
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10006
|
+
},
|
|
10007
|
+
"Operations.RunnerResourcesApi_snapshot.Response.403": {
|
|
10008
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10009
|
+
},
|
|
10010
|
+
"Operations.RunnerResourcesApi_snapshot.Response.500": {
|
|
10011
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10012
|
+
},
|
|
10013
|
+
"Operations.RunnerResourcesApi_snapshot.Response.503": {
|
|
10014
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10015
|
+
},
|
|
10016
|
+
"Operations.RunnerResourcesApi_stop.Response.401": {
|
|
10017
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10018
|
+
},
|
|
10019
|
+
"Operations.RunnerResourcesApi_stop.Response.403": {
|
|
10020
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10021
|
+
},
|
|
10022
|
+
"Operations.RunnerResourcesApi_stop.Response.404": {
|
|
10023
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10024
|
+
},
|
|
10025
|
+
"Operations.RunnerResourcesApi_stop.Response.409": {
|
|
10026
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
10027
|
+
},
|
|
10028
|
+
"Operations.RunnerResourcesApi_stop.Response.500": {
|
|
10029
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10030
|
+
},
|
|
10031
|
+
"Operations.RunnerResourcesApi_stop.Response.503": {
|
|
10032
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10033
|
+
},
|
|
10034
|
+
"Operations.RunnerResourcesApi_stream.Response.401": {
|
|
10035
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10036
|
+
},
|
|
10037
|
+
"Operations.RunnerResourcesApi_stream.Response.403": {
|
|
10038
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10039
|
+
},
|
|
10040
|
+
"Operations.RunnerResourcesApi_stream.Response.500": {
|
|
10041
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10042
|
+
},
|
|
10043
|
+
"Operations.RunnerResourcesApi_stream.Response.503": {
|
|
10044
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10045
|
+
},
|
|
10046
|
+
"Operations.RunnerResourcesApi_streamLogs.Response.401": {
|
|
10047
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10048
|
+
},
|
|
10049
|
+
"Operations.RunnerResourcesApi_streamLogs.Response.403": {
|
|
10050
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10051
|
+
},
|
|
10052
|
+
"Operations.RunnerResourcesApi_streamLogs.Response.404": {
|
|
10053
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10054
|
+
},
|
|
10055
|
+
"Operations.RunnerResourcesApi_streamLogs.Response.500": {
|
|
10056
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10057
|
+
},
|
|
10058
|
+
"Operations.RunnerResourcesApi_streamLogs.Response.503": {
|
|
10059
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10060
|
+
},
|
|
10061
|
+
"Operations.RunnerSessionApi_bootstrap.Response.200": {
|
|
10062
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpSessionBootstrapResponse"
|
|
10063
|
+
},
|
|
10064
|
+
"Operations.RunnerSessionApi_bootstrap.Response.401": {
|
|
10065
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10066
|
+
},
|
|
10067
|
+
"Operations.RunnerSessionApi_bootstrap.Response.403": {
|
|
10068
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10069
|
+
},
|
|
10070
|
+
"Operations.RunnerSessionApi_bootstrap.Response.409": {
|
|
10071
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
10072
|
+
},
|
|
10073
|
+
"Operations.RunnerSessionApi_bootstrap.Response.500": {
|
|
10074
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10075
|
+
},
|
|
10076
|
+
"Operations.RunnerSessionApi_bootstrap.Response.503": {
|
|
10077
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10078
|
+
},
|
|
10079
|
+
"Operations.RunnerSessionApi_get.Response.200": {
|
|
10080
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkbenchSession"
|
|
10081
|
+
},
|
|
10082
|
+
"Operations.RunnerSessionApi_get.Response.401": {
|
|
10083
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10084
|
+
},
|
|
10085
|
+
"Operations.RunnerSessionApi_get.Response.403": {
|
|
10086
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10087
|
+
},
|
|
10088
|
+
"Operations.RunnerSessionApi_get.Response.500": {
|
|
10089
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10090
|
+
},
|
|
10091
|
+
"Operations.RunnerSessionApi_get.Response.503": {
|
|
10092
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10093
|
+
},
|
|
10094
|
+
"Operations.RunnerWorkspacesApi_create.Request": {
|
|
10095
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceCreateRequest"
|
|
10096
|
+
},
|
|
10097
|
+
"Operations.RunnerWorkspacesApi_create.Response.200": {
|
|
10098
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspace"
|
|
10099
|
+
},
|
|
10100
|
+
"Operations.RunnerWorkspacesApi_create.Response.400": {
|
|
10101
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
10102
|
+
},
|
|
10103
|
+
"Operations.RunnerWorkspacesApi_create.Response.401": {
|
|
10104
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10105
|
+
},
|
|
10106
|
+
"Operations.RunnerWorkspacesApi_create.Response.403": {
|
|
10107
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10108
|
+
},
|
|
10109
|
+
"Operations.RunnerWorkspacesApi_create.Response.409": {
|
|
10110
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
10111
|
+
},
|
|
10112
|
+
"Operations.RunnerWorkspacesApi_create.Response.500": {
|
|
10113
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10114
|
+
},
|
|
10115
|
+
"Operations.RunnerWorkspacesApi_create.Response.503": {
|
|
10116
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10117
|
+
},
|
|
10118
|
+
"Operations.RunnerWorkspacesApi_delete.Response.401": {
|
|
10119
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10120
|
+
},
|
|
10121
|
+
"Operations.RunnerWorkspacesApi_delete.Response.403": {
|
|
10122
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10123
|
+
},
|
|
10124
|
+
"Operations.RunnerWorkspacesApi_delete.Response.404": {
|
|
10125
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10126
|
+
},
|
|
10127
|
+
"Operations.RunnerWorkspacesApi_delete.Response.409": {
|
|
10128
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
10129
|
+
},
|
|
10130
|
+
"Operations.RunnerWorkspacesApi_delete.Response.500": {
|
|
10131
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10132
|
+
},
|
|
10133
|
+
"Operations.RunnerWorkspacesApi_delete.Response.503": {
|
|
10134
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10135
|
+
},
|
|
10136
|
+
"Operations.RunnerWorkspacesApi_get.Response.200": {
|
|
10137
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspace"
|
|
10138
|
+
},
|
|
10139
|
+
"Operations.RunnerWorkspacesApi_get.Response.401": {
|
|
10140
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10141
|
+
},
|
|
10142
|
+
"Operations.RunnerWorkspacesApi_get.Response.403": {
|
|
10143
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10144
|
+
},
|
|
10145
|
+
"Operations.RunnerWorkspacesApi_get.Response.404": {
|
|
10146
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10147
|
+
},
|
|
10148
|
+
"Operations.RunnerWorkspacesApi_get.Response.500": {
|
|
10149
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10150
|
+
},
|
|
10151
|
+
"Operations.RunnerWorkspacesApi_get.Response.503": {
|
|
10152
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10153
|
+
},
|
|
10154
|
+
"Operations.RunnerWorkspacesApi_getPreferences.Response.200": {
|
|
10155
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspacePreferences"
|
|
10156
|
+
},
|
|
10157
|
+
"Operations.RunnerWorkspacesApi_getPreferences.Response.401": {
|
|
10158
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10159
|
+
},
|
|
10160
|
+
"Operations.RunnerWorkspacesApi_getPreferences.Response.403": {
|
|
10161
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10162
|
+
},
|
|
10163
|
+
"Operations.RunnerWorkspacesApi_getPreferences.Response.404": {
|
|
10164
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10165
|
+
},
|
|
10166
|
+
"Operations.RunnerWorkspacesApi_getPreferences.Response.500": {
|
|
10167
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10168
|
+
},
|
|
10169
|
+
"Operations.RunnerWorkspacesApi_getPreferences.Response.503": {
|
|
10170
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10171
|
+
},
|
|
10172
|
+
"Operations.RunnerWorkspacesApi_list.Response.200": {
|
|
10173
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceListResponse"
|
|
10174
|
+
},
|
|
10175
|
+
"Operations.RunnerWorkspacesApi_list.Response.401": {
|
|
10176
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10177
|
+
},
|
|
10178
|
+
"Operations.RunnerWorkspacesApi_list.Response.403": {
|
|
10179
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10180
|
+
},
|
|
10181
|
+
"Operations.RunnerWorkspacesApi_list.Response.500": {
|
|
10182
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10183
|
+
},
|
|
10184
|
+
"Operations.RunnerWorkspacesApi_list.Response.503": {
|
|
10185
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10186
|
+
},
|
|
10187
|
+
"Operations.RunnerWorkspacesApi_update.Request": {
|
|
10188
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspaceUpdateRequest"
|
|
10189
|
+
},
|
|
10190
|
+
"Operations.RunnerWorkspacesApi_update.Response.200": {
|
|
10191
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspace"
|
|
10192
|
+
},
|
|
10193
|
+
"Operations.RunnerWorkspacesApi_update.Response.400": {
|
|
10194
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
10195
|
+
},
|
|
10196
|
+
"Operations.RunnerWorkspacesApi_update.Response.401": {
|
|
10197
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10198
|
+
},
|
|
10199
|
+
"Operations.RunnerWorkspacesApi_update.Response.403": {
|
|
10200
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10201
|
+
},
|
|
10202
|
+
"Operations.RunnerWorkspacesApi_update.Response.404": {
|
|
10203
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10204
|
+
},
|
|
10205
|
+
"Operations.RunnerWorkspacesApi_update.Response.409": {
|
|
10206
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
10207
|
+
},
|
|
10208
|
+
"Operations.RunnerWorkspacesApi_update.Response.500": {
|
|
10209
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10210
|
+
},
|
|
10211
|
+
"Operations.RunnerWorkspacesApi_update.Response.503": {
|
|
10212
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10213
|
+
},
|
|
10214
|
+
"Operations.RunnerWorkspacesApi_updatePreferences.Request": {
|
|
10215
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspacePreferencesUpdateRequest"
|
|
10216
|
+
},
|
|
10217
|
+
"Operations.RunnerWorkspacesApi_updatePreferences.Response.200": {
|
|
10218
|
+
"$ref": "#/$defs/Runner.Mcp.RunnerMcpWorkspacePreferences"
|
|
10219
|
+
},
|
|
10220
|
+
"Operations.RunnerWorkspacesApi_updatePreferences.Response.400": {
|
|
10221
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
10222
|
+
},
|
|
10223
|
+
"Operations.RunnerWorkspacesApi_updatePreferences.Response.401": {
|
|
10224
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10225
|
+
},
|
|
10226
|
+
"Operations.RunnerWorkspacesApi_updatePreferences.Response.403": {
|
|
10227
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
10228
|
+
},
|
|
10229
|
+
"Operations.RunnerWorkspacesApi_updatePreferences.Response.404": {
|
|
10230
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10231
|
+
},
|
|
10232
|
+
"Operations.RunnerWorkspacesApi_updatePreferences.Response.500": {
|
|
10233
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10234
|
+
},
|
|
10235
|
+
"Operations.RunnerWorkspacesApi_updatePreferences.Response.503": {
|
|
10236
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10237
|
+
},
|
|
10238
|
+
"Operations.SessionsApi_get.Response.200": {
|
|
10239
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionEntity"
|
|
10240
|
+
},
|
|
10241
|
+
"Operations.SessionsApi_get.Response.401": {
|
|
10242
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10243
|
+
},
|
|
10244
|
+
"Operations.SessionsApi_get.Response.404": {
|
|
10245
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10246
|
+
},
|
|
10247
|
+
"Operations.SessionsApi_get.Response.500": {
|
|
10248
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10249
|
+
},
|
|
10250
|
+
"Operations.SessionsApi_getStats.Response.200": {
|
|
10251
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionStats"
|
|
10252
|
+
},
|
|
10253
|
+
"Operations.SessionsApi_getStats.Response.400": {
|
|
10254
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
10255
|
+
},
|
|
10256
|
+
"Operations.SessionsApi_getStats.Response.401": {
|
|
10257
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10258
|
+
},
|
|
10259
|
+
"Operations.SessionsApi_getStats.Response.500": {
|
|
10260
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10261
|
+
},
|
|
10262
|
+
"Operations.SessionsApi_getTraces.Response.200": {
|
|
10263
|
+
"type": "object",
|
|
10264
|
+
"required": [
|
|
10265
|
+
"items",
|
|
10266
|
+
"has_more"
|
|
10267
|
+
],
|
|
10268
|
+
"properties": {
|
|
10269
|
+
"items": {
|
|
10270
|
+
"type": "array",
|
|
10271
|
+
"items": {
|
|
10272
|
+
"$ref": "#/$defs/OTel.Traces.Trace"
|
|
10273
|
+
},
|
|
10274
|
+
"description": "List of items in this page"
|
|
10275
|
+
},
|
|
10276
|
+
"next_cursor": {
|
|
10277
|
+
"type": "string",
|
|
10278
|
+
"description": "Cursor for the next page (null if no more pages)"
|
|
10279
|
+
},
|
|
10280
|
+
"prev_cursor": {
|
|
10281
|
+
"type": "string",
|
|
10282
|
+
"description": "Cursor for the previous page (null if first page)"
|
|
10283
|
+
},
|
|
10284
|
+
"has_more": {
|
|
10285
|
+
"type": "boolean",
|
|
10286
|
+
"description": "Whether there are more items available"
|
|
10287
|
+
}
|
|
10288
|
+
},
|
|
10289
|
+
"unevaluatedProperties": {
|
|
10290
|
+
"not": {}
|
|
10291
|
+
},
|
|
10292
|
+
"description": "Cursor-based paginated response wrapper"
|
|
10293
|
+
},
|
|
10294
|
+
"Operations.SessionsApi_getTraces.Response.401": {
|
|
10295
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10296
|
+
},
|
|
10297
|
+
"Operations.SessionsApi_getTraces.Response.404": {
|
|
10298
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10299
|
+
},
|
|
10300
|
+
"Operations.SessionsApi_getTraces.Response.500": {
|
|
10301
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10302
|
+
},
|
|
10303
|
+
"Operations.SessionsApi_list.Response.200": {
|
|
10304
|
+
"type": "object",
|
|
10305
|
+
"required": [
|
|
10306
|
+
"items",
|
|
10307
|
+
"has_more"
|
|
10308
|
+
],
|
|
10309
|
+
"properties": {
|
|
10310
|
+
"items": {
|
|
10311
|
+
"type": "array",
|
|
10312
|
+
"items": {
|
|
10313
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionEntity"
|
|
10314
|
+
},
|
|
10315
|
+
"description": "List of items in this page"
|
|
10316
|
+
},
|
|
10317
|
+
"next_cursor": {
|
|
10318
|
+
"type": "string",
|
|
10319
|
+
"description": "Cursor for the next page (null if no more pages)"
|
|
10320
|
+
},
|
|
10321
|
+
"prev_cursor": {
|
|
10322
|
+
"type": "string",
|
|
10323
|
+
"description": "Cursor for the previous page (null if first page)"
|
|
10324
|
+
},
|
|
10325
|
+
"has_more": {
|
|
10326
|
+
"type": "boolean",
|
|
10327
|
+
"description": "Whether there are more items available"
|
|
10328
|
+
}
|
|
10329
|
+
},
|
|
10330
|
+
"unevaluatedProperties": {
|
|
10331
|
+
"not": {}
|
|
10332
|
+
},
|
|
10333
|
+
"description": "Cursor-based paginated response wrapper"
|
|
10334
|
+
},
|
|
10335
|
+
"Operations.SessionsApi_list.Response.400": {
|
|
10336
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
10337
|
+
},
|
|
10338
|
+
"Operations.SessionsApi_list.Response.401": {
|
|
10339
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10340
|
+
},
|
|
10341
|
+
"Operations.SessionsApi_list.Response.500": {
|
|
10342
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10343
|
+
},
|
|
10344
|
+
"Operations.StreamingApi_streamLogs.Response.400": {
|
|
10345
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
10346
|
+
},
|
|
10347
|
+
"Operations.StreamingApi_streamLogs.Response.401": {
|
|
10348
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10349
|
+
},
|
|
10350
|
+
"Operations.StreamingApi_streamLogs.Response.500": {
|
|
10351
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10352
|
+
},
|
|
10353
|
+
"Operations.StreamingApi_streamLogs.Response.503": {
|
|
10354
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
10355
|
+
},
|
|
10356
|
+
"Operations.TracesApi_get.Response.200": {
|
|
10357
|
+
"$ref": "#/$defs/OTel.Traces.Trace"
|
|
10358
|
+
},
|
|
10359
|
+
"Operations.TracesApi_get.Response.401": {
|
|
10360
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10361
|
+
},
|
|
10362
|
+
"Operations.TracesApi_get.Response.404": {
|
|
10363
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10364
|
+
},
|
|
10365
|
+
"Operations.TracesApi_get.Response.500": {
|
|
10366
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10367
|
+
},
|
|
10368
|
+
"Operations.TracesApi_getSpans.Response.200": {
|
|
10369
|
+
"type": "object",
|
|
10370
|
+
"required": [
|
|
10371
|
+
"items",
|
|
10372
|
+
"has_more"
|
|
10373
|
+
],
|
|
10374
|
+
"properties": {
|
|
10375
|
+
"items": {
|
|
10376
|
+
"type": "array",
|
|
10377
|
+
"items": {
|
|
10378
|
+
"$ref": "#/$defs/OTel.Traces.Span"
|
|
10379
|
+
},
|
|
10380
|
+
"description": "List of items in this page"
|
|
10381
|
+
},
|
|
10382
|
+
"next_cursor": {
|
|
10383
|
+
"type": "string",
|
|
10384
|
+
"description": "Cursor for the next page (null if no more pages)"
|
|
10385
|
+
},
|
|
10386
|
+
"prev_cursor": {
|
|
10387
|
+
"type": "string",
|
|
10388
|
+
"description": "Cursor for the previous page (null if first page)"
|
|
10389
|
+
},
|
|
10390
|
+
"has_more": {
|
|
10391
|
+
"type": "boolean",
|
|
10392
|
+
"description": "Whether there are more items available"
|
|
10393
|
+
}
|
|
10394
|
+
},
|
|
10395
|
+
"unevaluatedProperties": {
|
|
10396
|
+
"not": {}
|
|
10397
|
+
},
|
|
10398
|
+
"description": "Cursor-based paginated response wrapper"
|
|
10399
|
+
},
|
|
10400
|
+
"Operations.TracesApi_getSpans.Response.401": {
|
|
10401
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10402
|
+
},
|
|
10403
|
+
"Operations.TracesApi_getSpans.Response.404": {
|
|
10404
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
10405
|
+
},
|
|
10406
|
+
"Operations.TracesApi_getSpans.Response.500": {
|
|
10407
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10408
|
+
},
|
|
10409
|
+
"Operations.TracesApi_list.Response.200": {
|
|
10410
|
+
"type": "object",
|
|
10411
|
+
"required": [
|
|
10412
|
+
"items",
|
|
10413
|
+
"has_more"
|
|
10414
|
+
],
|
|
10415
|
+
"properties": {
|
|
10416
|
+
"items": {
|
|
10417
|
+
"type": "array",
|
|
10418
|
+
"items": {
|
|
10419
|
+
"$ref": "#/$defs/OTel.Traces.Trace"
|
|
10420
|
+
},
|
|
10421
|
+
"description": "List of items in this page"
|
|
10422
|
+
},
|
|
10423
|
+
"next_cursor": {
|
|
10424
|
+
"type": "string",
|
|
10425
|
+
"description": "Cursor for the next page (null if no more pages)"
|
|
10426
|
+
},
|
|
10427
|
+
"prev_cursor": {
|
|
10428
|
+
"type": "string",
|
|
10429
|
+
"description": "Cursor for the previous page (null if first page)"
|
|
10430
|
+
},
|
|
10431
|
+
"has_more": {
|
|
10432
|
+
"type": "boolean",
|
|
10433
|
+
"description": "Whether there are more items available"
|
|
10434
|
+
}
|
|
10435
|
+
},
|
|
10436
|
+
"unevaluatedProperties": {
|
|
10437
|
+
"not": {}
|
|
10438
|
+
},
|
|
10439
|
+
"description": "Cursor-based paginated response wrapper"
|
|
10440
|
+
},
|
|
10441
|
+
"Operations.TracesApi_list.Response.400": {
|
|
10442
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
10443
|
+
},
|
|
10444
|
+
"Operations.TracesApi_list.Response.401": {
|
|
10445
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
10446
|
+
},
|
|
10447
|
+
"Operations.TracesApi_list.Response.500": {
|
|
10448
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
10449
|
+
},
|
|
10450
|
+
"Operations.health_alive.Response.200": {
|
|
10451
|
+
"$ref": "#/$defs/Health.HealthReport"
|
|
10452
|
+
},
|
|
10453
|
+
"Operations.health_alive.Response.503": {
|
|
10454
|
+
"$ref": "#/$defs/Health.HealthReport"
|
|
10455
|
+
},
|
|
10456
|
+
"Operations.health_ready.Response.200": {
|
|
10457
|
+
"$ref": "#/$defs/Health.HealthReport"
|
|
10458
|
+
},
|
|
10459
|
+
"Operations.health_ready.Response.503": {
|
|
10460
|
+
"$ref": "#/$defs/Health.HealthReport"
|
|
6951
10461
|
}
|
|
6952
10462
|
}
|
|
6953
10463
|
}
|