@tokenlabai/mcp-server 0.4.2 → 0.6.0
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 +24 -9
- package/contract/mcp-overlay.json +124 -0
- package/contract/openapi.json +379 -186
- package/generated/public-contract.json +324 -0
- package/generated/tools.json +237 -9
- package/llms-install.md +3 -1
- package/package.json +4 -3
- package/scripts/generate-contract.mjs +141 -17
- package/src/index.js +180 -31
package/generated/tools.json
CHANGED
|
@@ -6,10 +6,11 @@
|
|
|
6
6
|
"openapi": "3.0.3",
|
|
7
7
|
"title": "TokenLab AI Gateway",
|
|
8
8
|
"version": "1.0.0",
|
|
9
|
-
"sha256": "
|
|
9
|
+
"sha256": "586c32a9e47c4557977b92d73183518e986e70666f6530e2718ef5b7293a1706"
|
|
10
10
|
},
|
|
11
11
|
"default_profile": "core",
|
|
12
12
|
"profiles": [
|
|
13
|
+
"catalog",
|
|
13
14
|
"core",
|
|
14
15
|
"full"
|
|
15
16
|
],
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
"tools": [
|
|
18
19
|
{
|
|
19
20
|
"name": "bind_seedance_visual_validation_result",
|
|
21
|
+
"title": "Bind Seedance real-person verification result",
|
|
20
22
|
"operation_id": "bindSeedanceVisualValidationResult",
|
|
21
23
|
"method": "POST",
|
|
22
24
|
"path": "/v1/videos/assets/visual-validation-results",
|
|
@@ -97,6 +99,7 @@
|
|
|
97
99
|
},
|
|
98
100
|
{
|
|
99
101
|
"name": "cancel_anthropic_message_batch",
|
|
102
|
+
"title": "Cancel message batch (Anthropic-compatible)",
|
|
100
103
|
"operation_id": "cancelAnthropicMessageBatch",
|
|
101
104
|
"method": "POST",
|
|
102
105
|
"path": "/v1/messages/batches/{message_batch_id}/cancel",
|
|
@@ -133,13 +136,14 @@
|
|
|
133
136
|
},
|
|
134
137
|
"annotations": {
|
|
135
138
|
"readOnlyHint": false,
|
|
136
|
-
"destructiveHint":
|
|
137
|
-
"idempotentHint":
|
|
139
|
+
"destructiveHint": true,
|
|
140
|
+
"idempotentHint": true,
|
|
138
141
|
"openWorldHint": true
|
|
139
142
|
}
|
|
140
143
|
},
|
|
141
144
|
{
|
|
142
145
|
"name": "cancel_batch",
|
|
146
|
+
"title": "Cancel batch",
|
|
143
147
|
"operation_id": "cancelBatch",
|
|
144
148
|
"method": "POST",
|
|
145
149
|
"path": "/v1/batches/{batch_id}/cancel",
|
|
@@ -175,13 +179,14 @@
|
|
|
175
179
|
},
|
|
176
180
|
"annotations": {
|
|
177
181
|
"readOnlyHint": false,
|
|
178
|
-
"destructiveHint":
|
|
179
|
-
"idempotentHint":
|
|
182
|
+
"destructiveHint": true,
|
|
183
|
+
"idempotentHint": true,
|
|
180
184
|
"openWorldHint": true
|
|
181
185
|
}
|
|
182
186
|
},
|
|
183
187
|
{
|
|
184
188
|
"name": "cancel_task",
|
|
189
|
+
"title": "Cancel async task",
|
|
185
190
|
"operation_id": "cancelAsyncTask",
|
|
186
191
|
"method": "DELETE",
|
|
187
192
|
"path": "/v1/tasks/{id}",
|
|
@@ -243,6 +248,7 @@
|
|
|
243
248
|
},
|
|
244
249
|
{
|
|
245
250
|
"name": "compact_response",
|
|
251
|
+
"title": "Compact response context (OpenAI Responses API)",
|
|
246
252
|
"operation_id": "compactResponse",
|
|
247
253
|
"method": "POST",
|
|
248
254
|
"path": "/v1/responses/compact",
|
|
@@ -316,6 +322,7 @@
|
|
|
316
322
|
},
|
|
317
323
|
{
|
|
318
324
|
"name": "count_anthropic_message_tokens",
|
|
325
|
+
"title": "Count message tokens (Anthropic-compatible)",
|
|
319
326
|
"operation_id": "countAnthropicMessageTokens",
|
|
320
327
|
"method": "POST",
|
|
321
328
|
"path": "/v1/messages/count_tokens",
|
|
@@ -484,6 +491,7 @@
|
|
|
484
491
|
},
|
|
485
492
|
{
|
|
486
493
|
"name": "create_3d_model",
|
|
494
|
+
"title": "Create 3D model generation task",
|
|
487
495
|
"operation_id": "create3D",
|
|
488
496
|
"method": "POST",
|
|
489
497
|
"path": "/v1/3d/generations",
|
|
@@ -593,6 +601,7 @@
|
|
|
593
601
|
},
|
|
594
602
|
{
|
|
595
603
|
"name": "create_anthropic_message",
|
|
604
|
+
"title": "Create message (Anthropic-compatible)",
|
|
596
605
|
"operation_id": "createAnthropicMessage",
|
|
597
606
|
"method": "POST",
|
|
598
607
|
"path": "/v1/messages",
|
|
@@ -793,6 +802,7 @@
|
|
|
793
802
|
},
|
|
794
803
|
{
|
|
795
804
|
"name": "create_anthropic_message_batch",
|
|
805
|
+
"title": "Create message batch (Anthropic-compatible)",
|
|
796
806
|
"operation_id": "createAnthropicMessageBatch",
|
|
797
807
|
"method": "POST",
|
|
798
808
|
"path": "/v1/messages/batches",
|
|
@@ -1003,6 +1013,7 @@
|
|
|
1003
1013
|
},
|
|
1004
1014
|
{
|
|
1005
1015
|
"name": "create_batch",
|
|
1016
|
+
"title": "Create batch",
|
|
1006
1017
|
"operation_id": "createBatch",
|
|
1007
1018
|
"method": "POST",
|
|
1008
1019
|
"path": "/v1/batches",
|
|
@@ -1088,6 +1099,7 @@
|
|
|
1088
1099
|
},
|
|
1089
1100
|
{
|
|
1090
1101
|
"name": "create_chat_completion",
|
|
1102
|
+
"title": "Create chat completion",
|
|
1091
1103
|
"operation_id": "createChatCompletion",
|
|
1092
1104
|
"method": "POST",
|
|
1093
1105
|
"path": "/v1/chat/completions",
|
|
@@ -1189,6 +1201,62 @@
|
|
|
1189
1201
|
"type",
|
|
1190
1202
|
"image_url"
|
|
1191
1203
|
]
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
"type": "object",
|
|
1207
|
+
"properties": {
|
|
1208
|
+
"type": {
|
|
1209
|
+
"type": "string",
|
|
1210
|
+
"enum": [
|
|
1211
|
+
"video_url"
|
|
1212
|
+
]
|
|
1213
|
+
},
|
|
1214
|
+
"video_url": {
|
|
1215
|
+
"type": "object",
|
|
1216
|
+
"properties": {
|
|
1217
|
+
"url": {
|
|
1218
|
+
"type": "string"
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
"required": [
|
|
1222
|
+
"url"
|
|
1223
|
+
]
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
"required": [
|
|
1227
|
+
"type",
|
|
1228
|
+
"video_url"
|
|
1229
|
+
]
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"type": "object",
|
|
1233
|
+
"properties": {
|
|
1234
|
+
"type": {
|
|
1235
|
+
"type": "string",
|
|
1236
|
+
"enum": [
|
|
1237
|
+
"input_audio"
|
|
1238
|
+
]
|
|
1239
|
+
},
|
|
1240
|
+
"input_audio": {
|
|
1241
|
+
"type": "object",
|
|
1242
|
+
"properties": {
|
|
1243
|
+
"data": {
|
|
1244
|
+
"type": "string",
|
|
1245
|
+
"description": "Public audio URL or Base64 data URL."
|
|
1246
|
+
},
|
|
1247
|
+
"format": {
|
|
1248
|
+
"type": "string"
|
|
1249
|
+
}
|
|
1250
|
+
},
|
|
1251
|
+
"required": [
|
|
1252
|
+
"data"
|
|
1253
|
+
]
|
|
1254
|
+
}
|
|
1255
|
+
},
|
|
1256
|
+
"required": [
|
|
1257
|
+
"type",
|
|
1258
|
+
"input_audio"
|
|
1259
|
+
]
|
|
1192
1260
|
}
|
|
1193
1261
|
]
|
|
1194
1262
|
}
|
|
@@ -1442,7 +1510,7 @@
|
|
|
1442
1510
|
},
|
|
1443
1511
|
"top_k": {
|
|
1444
1512
|
"type": "integer",
|
|
1445
|
-
"minimum":
|
|
1513
|
+
"minimum": 0,
|
|
1446
1514
|
"description": "Top-k sampling cutoff for compatible providers."
|
|
1447
1515
|
},
|
|
1448
1516
|
"logit_bias": {
|
|
@@ -1464,6 +1532,35 @@
|
|
|
1464
1532
|
"additionalProperties": true,
|
|
1465
1533
|
"description": "Audio output configuration when requesting audio modality."
|
|
1466
1534
|
},
|
|
1535
|
+
"translation_options": {
|
|
1536
|
+
"type": "object",
|
|
1537
|
+
"required": [
|
|
1538
|
+
"target_lang"
|
|
1539
|
+
],
|
|
1540
|
+
"properties": {
|
|
1541
|
+
"source_lang": {
|
|
1542
|
+
"type": "string",
|
|
1543
|
+
"description": "Source language code. Omit when the model supports automatic detection."
|
|
1544
|
+
},
|
|
1545
|
+
"target_lang": {
|
|
1546
|
+
"type": "string",
|
|
1547
|
+
"description": "Target language code."
|
|
1548
|
+
}
|
|
1549
|
+
},
|
|
1550
|
+
"description": "Language settings for models that translate audio or video through Chat Completions."
|
|
1551
|
+
},
|
|
1552
|
+
"speech_rate": {
|
|
1553
|
+
"type": "number",
|
|
1554
|
+
"minimum": 0.5,
|
|
1555
|
+
"maximum": 2,
|
|
1556
|
+
"description": "Speech rate for compatible translated audio output."
|
|
1557
|
+
},
|
|
1558
|
+
"repetition_penalty": {
|
|
1559
|
+
"type": "number",
|
|
1560
|
+
"minimum": 0,
|
|
1561
|
+
"exclusiveMinimum": true,
|
|
1562
|
+
"description": "Repetition penalty for compatible models."
|
|
1563
|
+
},
|
|
1467
1564
|
"prediction": {
|
|
1468
1565
|
"type": "object",
|
|
1469
1566
|
"additionalProperties": true,
|
|
@@ -1513,6 +1610,9 @@
|
|
|
1513
1610
|
"logit_bias",
|
|
1514
1611
|
"modalities",
|
|
1515
1612
|
"audio",
|
|
1613
|
+
"translation_options",
|
|
1614
|
+
"speech_rate",
|
|
1615
|
+
"repetition_penalty",
|
|
1516
1616
|
"prediction",
|
|
1517
1617
|
"service_tier"
|
|
1518
1618
|
],
|
|
@@ -1527,6 +1627,7 @@
|
|
|
1527
1627
|
},
|
|
1528
1628
|
{
|
|
1529
1629
|
"name": "create_embedding",
|
|
1630
|
+
"title": "Create embeddings",
|
|
1530
1631
|
"operation_id": "createEmbedding",
|
|
1531
1632
|
"method": "POST",
|
|
1532
1633
|
"path": "/v1/embeddings",
|
|
@@ -1623,6 +1724,7 @@
|
|
|
1623
1724
|
},
|
|
1624
1725
|
{
|
|
1625
1726
|
"name": "create_gemini_content",
|
|
1727
|
+
"title": "Generate content (Gemini-compatible)",
|
|
1626
1728
|
"operation_id": "geminiGenerateContent",
|
|
1627
1729
|
"method": "POST",
|
|
1628
1730
|
"path": "/v1beta/models/{model}:generateContent",
|
|
@@ -2079,6 +2181,7 @@
|
|
|
2079
2181
|
},
|
|
2080
2182
|
{
|
|
2081
2183
|
"name": "create_image",
|
|
2184
|
+
"title": "Create image",
|
|
2082
2185
|
"operation_id": "createImage",
|
|
2083
2186
|
"method": "POST",
|
|
2084
2187
|
"path": "/v1/images/generations",
|
|
@@ -2322,6 +2425,7 @@
|
|
|
2322
2425
|
},
|
|
2323
2426
|
{
|
|
2324
2427
|
"name": "create_image_file",
|
|
2428
|
+
"title": "Create image",
|
|
2325
2429
|
"operation_id": "createImage",
|
|
2326
2430
|
"method": "POST",
|
|
2327
2431
|
"path": "/v1/images/generations",
|
|
@@ -2520,6 +2624,7 @@
|
|
|
2520
2624
|
},
|
|
2521
2625
|
{
|
|
2522
2626
|
"name": "create_image_variation",
|
|
2627
|
+
"title": "Create image variation",
|
|
2523
2628
|
"operation_id": "createImageVariation",
|
|
2524
2629
|
"method": "POST",
|
|
2525
2630
|
"path": "/v1/images/variations",
|
|
@@ -2588,6 +2693,7 @@
|
|
|
2588
2693
|
},
|
|
2589
2694
|
{
|
|
2590
2695
|
"name": "create_multimodal_embedding",
|
|
2696
|
+
"title": "Create multimodal embeddings",
|
|
2591
2697
|
"operation_id": "createMultimodalEmbedding",
|
|
2592
2698
|
"method": "POST",
|
|
2593
2699
|
"path": "/v1/multimodal/embeddings",
|
|
@@ -2694,6 +2800,7 @@
|
|
|
2694
2800
|
},
|
|
2695
2801
|
{
|
|
2696
2802
|
"name": "create_music",
|
|
2803
|
+
"title": "Create music generation task",
|
|
2697
2804
|
"operation_id": "createMusic",
|
|
2698
2805
|
"method": "POST",
|
|
2699
2806
|
"path": "/v1/music/generations",
|
|
@@ -2827,6 +2934,7 @@
|
|
|
2827
2934
|
},
|
|
2828
2935
|
{
|
|
2829
2936
|
"name": "create_response",
|
|
2937
|
+
"title": "Create response (OpenAI Responses API)",
|
|
2830
2938
|
"operation_id": "createResponse",
|
|
2831
2939
|
"method": "POST",
|
|
2832
2940
|
"path": "/v1/responses",
|
|
@@ -2993,6 +3101,7 @@
|
|
|
2993
3101
|
},
|
|
2994
3102
|
{
|
|
2995
3103
|
"name": "create_seedance_material_asset",
|
|
3104
|
+
"title": "Create Seedance material asset",
|
|
2996
3105
|
"operation_id": "createSeedanceMaterialAsset",
|
|
2997
3106
|
"method": "POST",
|
|
2998
3107
|
"path": "/v1/videos/assets",
|
|
@@ -3082,6 +3191,7 @@
|
|
|
3082
3191
|
},
|
|
3083
3192
|
{
|
|
3084
3193
|
"name": "create_seedance_material_asset_group",
|
|
3194
|
+
"title": "Create Seedance material asset group",
|
|
3085
3195
|
"operation_id": "createSeedanceMaterialAssetGroup",
|
|
3086
3196
|
"method": "POST",
|
|
3087
3197
|
"path": "/v1/videos/assets/groups",
|
|
@@ -3158,6 +3268,7 @@
|
|
|
3158
3268
|
},
|
|
3159
3269
|
{
|
|
3160
3270
|
"name": "create_seedance_visual_validation_session",
|
|
3271
|
+
"title": "Create Seedance real-person verification session",
|
|
3161
3272
|
"operation_id": "createSeedanceVisualValidationSession",
|
|
3162
3273
|
"method": "POST",
|
|
3163
3274
|
"path": "/v1/videos/assets/visual-validation-sessions",
|
|
@@ -3213,6 +3324,7 @@
|
|
|
3213
3324
|
},
|
|
3214
3325
|
{
|
|
3215
3326
|
"name": "create_speech",
|
|
3327
|
+
"title": "Create speech",
|
|
3216
3328
|
"operation_id": "createSpeech",
|
|
3217
3329
|
"method": "POST",
|
|
3218
3330
|
"path": "/v1/audio/speech",
|
|
@@ -3336,6 +3448,7 @@
|
|
|
3336
3448
|
},
|
|
3337
3449
|
{
|
|
3338
3450
|
"name": "create_video",
|
|
3451
|
+
"title": "Create video generation task",
|
|
3339
3452
|
"operation_id": "createVideo",
|
|
3340
3453
|
"method": "POST",
|
|
3341
3454
|
"path": "/v1/videos/generations",
|
|
@@ -3749,6 +3862,7 @@
|
|
|
3749
3862
|
},
|
|
3750
3863
|
{
|
|
3751
3864
|
"name": "create_volc_compatible_seedance_task",
|
|
3865
|
+
"title": "Create Seedance task (Volc-compatible)",
|
|
3752
3866
|
"operation_id": "createVolcCompatibleSeedanceTask",
|
|
3753
3867
|
"method": "POST",
|
|
3754
3868
|
"path": "/api/v3/contents/generations/tasks",
|
|
@@ -4036,6 +4150,7 @@
|
|
|
4036
4150
|
},
|
|
4037
4151
|
{
|
|
4038
4152
|
"name": "create_world",
|
|
4153
|
+
"title": "Create world generation task",
|
|
4039
4154
|
"operation_id": "createWorld",
|
|
4040
4155
|
"method": "POST",
|
|
4041
4156
|
"path": "/v1/worlds/generations",
|
|
@@ -4207,6 +4322,7 @@
|
|
|
4207
4322
|
},
|
|
4208
4323
|
{
|
|
4209
4324
|
"name": "delete_anthropic_message_batch",
|
|
4325
|
+
"title": "Delete message batch (Anthropic-compatible)",
|
|
4210
4326
|
"operation_id": "deleteAnthropicMessageBatch",
|
|
4211
4327
|
"method": "DELETE",
|
|
4212
4328
|
"path": "/v1/messages/batches/{message_batch_id}",
|
|
@@ -4250,6 +4366,7 @@
|
|
|
4250
4366
|
},
|
|
4251
4367
|
{
|
|
4252
4368
|
"name": "delete_file",
|
|
4369
|
+
"title": "Delete file",
|
|
4253
4370
|
"operation_id": "deleteFile",
|
|
4254
4371
|
"method": "DELETE",
|
|
4255
4372
|
"path": "/v1/files/{file_id}",
|
|
@@ -4294,6 +4411,7 @@
|
|
|
4294
4411
|
},
|
|
4295
4412
|
{
|
|
4296
4413
|
"name": "delete_response",
|
|
4414
|
+
"title": "Delete response",
|
|
4297
4415
|
"operation_id": "deleteResponse",
|
|
4298
4416
|
"method": "DELETE",
|
|
4299
4417
|
"path": "/v1/responses/{id}",
|
|
@@ -4337,6 +4455,7 @@
|
|
|
4337
4455
|
},
|
|
4338
4456
|
{
|
|
4339
4457
|
"name": "delete_seedance_material_asset",
|
|
4458
|
+
"title": "Delete Seedance material asset",
|
|
4340
4459
|
"operation_id": "deleteSeedanceMaterialAsset",
|
|
4341
4460
|
"method": "DELETE",
|
|
4342
4461
|
"path": "/v1/videos/assets/{assetId}",
|
|
@@ -4379,6 +4498,7 @@
|
|
|
4379
4498
|
},
|
|
4380
4499
|
{
|
|
4381
4500
|
"name": "delete_seedance_material_asset_group",
|
|
4501
|
+
"title": "Delete Seedance material asset group",
|
|
4382
4502
|
"operation_id": "deleteSeedanceMaterialAssetGroup",
|
|
4383
4503
|
"method": "DELETE",
|
|
4384
4504
|
"path": "/v1/videos/assets/groups/{groupId}",
|
|
@@ -4421,6 +4541,7 @@
|
|
|
4421
4541
|
},
|
|
4422
4542
|
{
|
|
4423
4543
|
"name": "delete_volc_compatible_seedance_task",
|
|
4544
|
+
"title": "Cancel Seedance task (Volc-compatible)",
|
|
4424
4545
|
"operation_id": "deleteVolcCompatibleSeedanceTask",
|
|
4425
4546
|
"method": "DELETE",
|
|
4426
4547
|
"path": "/api/v3/contents/generations/tasks/{id}",
|
|
@@ -4464,6 +4585,7 @@
|
|
|
4464
4585
|
},
|
|
4465
4586
|
{
|
|
4466
4587
|
"name": "delete_world",
|
|
4588
|
+
"title": "Delete World Labs world",
|
|
4467
4589
|
"operation_id": "deleteWorld",
|
|
4468
4590
|
"method": "DELETE",
|
|
4469
4591
|
"path": "/v1/worlds/{id}",
|
|
@@ -4507,6 +4629,7 @@
|
|
|
4507
4629
|
},
|
|
4508
4630
|
{
|
|
4509
4631
|
"name": "dispatch_volc_compatible_seedance_action_get",
|
|
4632
|
+
"title": "Seedance Action dispatcher (GET)",
|
|
4510
4633
|
"operation_id": "dispatchVolcCompatibleSeedanceActionGet",
|
|
4511
4634
|
"method": "GET",
|
|
4512
4635
|
"path": "/api/v3",
|
|
@@ -4560,6 +4683,7 @@
|
|
|
4560
4683
|
},
|
|
4561
4684
|
{
|
|
4562
4685
|
"name": "dispatch_volc_compatible_seedance_action_post",
|
|
4686
|
+
"title": "Seedance Action dispatcher (POST)",
|
|
4563
4687
|
"operation_id": "dispatchVolcCompatibleSeedanceActionPost",
|
|
4564
4688
|
"method": "POST",
|
|
4565
4689
|
"path": "/api/v3",
|
|
@@ -4610,6 +4734,7 @@
|
|
|
4610
4734
|
},
|
|
4611
4735
|
{
|
|
4612
4736
|
"name": "edit_image",
|
|
4737
|
+
"title": "Edit image",
|
|
4613
4738
|
"operation_id": "editImage",
|
|
4614
4739
|
"method": "POST",
|
|
4615
4740
|
"path": "/v1/images/edits",
|
|
@@ -4833,6 +4958,7 @@
|
|
|
4833
4958
|
},
|
|
4834
4959
|
{
|
|
4835
4960
|
"name": "edit_image_file",
|
|
4961
|
+
"title": "Edit image",
|
|
4836
4962
|
"operation_id": "editImage",
|
|
4837
4963
|
"method": "POST",
|
|
4838
4964
|
"path": "/v1/images/edits",
|
|
@@ -5012,6 +5138,7 @@
|
|
|
5012
5138
|
},
|
|
5013
5139
|
{
|
|
5014
5140
|
"name": "get_3_dtask",
|
|
5141
|
+
"title": "Get 3D task status",
|
|
5015
5142
|
"operation_id": "get3DTask",
|
|
5016
5143
|
"method": "GET",
|
|
5017
5144
|
"path": "/v1/3d/generations/{id}",
|
|
@@ -5054,6 +5181,7 @@
|
|
|
5054
5181
|
},
|
|
5055
5182
|
{
|
|
5056
5183
|
"name": "get_gemini_model",
|
|
5184
|
+
"title": "Get Gemini-native model",
|
|
5057
5185
|
"operation_id": "getGeminiModel",
|
|
5058
5186
|
"method": "GET",
|
|
5059
5187
|
"path": "/v1beta/models/{model}",
|
|
@@ -5096,6 +5224,7 @@
|
|
|
5096
5224
|
},
|
|
5097
5225
|
{
|
|
5098
5226
|
"name": "get_image_task_status_alias",
|
|
5227
|
+
"title": "Get image task status",
|
|
5099
5228
|
"operation_id": "getImageTaskStatusAlias",
|
|
5100
5229
|
"method": "GET",
|
|
5101
5230
|
"path": "/v1/images/{id}",
|
|
@@ -5140,6 +5269,7 @@
|
|
|
5140
5269
|
},
|
|
5141
5270
|
{
|
|
5142
5271
|
"name": "get_model",
|
|
5272
|
+
"title": "Get model",
|
|
5143
5273
|
"operation_id": "getModel",
|
|
5144
5274
|
"method": "GET",
|
|
5145
5275
|
"path": "/v1/models/{model}",
|
|
@@ -5149,6 +5279,7 @@
|
|
|
5149
5279
|
"Models"
|
|
5150
5280
|
],
|
|
5151
5281
|
"profiles": [
|
|
5282
|
+
"catalog",
|
|
5152
5283
|
"core",
|
|
5153
5284
|
"full"
|
|
5154
5285
|
],
|
|
@@ -5184,6 +5315,7 @@
|
|
|
5184
5315
|
},
|
|
5185
5316
|
{
|
|
5186
5317
|
"name": "get_model_pricing",
|
|
5318
|
+
"title": "Get model pricing",
|
|
5187
5319
|
"operation_id": "getModelPricing",
|
|
5188
5320
|
"method": "GET",
|
|
5189
5321
|
"path": "/v1/models/{model}/pricing",
|
|
@@ -5193,6 +5325,7 @@
|
|
|
5193
5325
|
"Models"
|
|
5194
5326
|
],
|
|
5195
5327
|
"profiles": [
|
|
5328
|
+
"catalog",
|
|
5196
5329
|
"core",
|
|
5197
5330
|
"full"
|
|
5198
5331
|
],
|
|
@@ -5228,6 +5361,7 @@
|
|
|
5228
5361
|
},
|
|
5229
5362
|
{
|
|
5230
5363
|
"name": "get_music_task",
|
|
5364
|
+
"title": "Get music task status",
|
|
5231
5365
|
"operation_id": "getMusicTask",
|
|
5232
5366
|
"method": "GET",
|
|
5233
5367
|
"path": "/v1/music/generations/{id}",
|
|
@@ -5270,6 +5404,7 @@
|
|
|
5270
5404
|
},
|
|
5271
5405
|
{
|
|
5272
5406
|
"name": "get_pricing",
|
|
5407
|
+
"title": "List model pricing",
|
|
5273
5408
|
"operation_id": "getPricing",
|
|
5274
5409
|
"method": "GET",
|
|
5275
5410
|
"path": "/v1/pricing",
|
|
@@ -5279,6 +5414,7 @@
|
|
|
5279
5414
|
"Models"
|
|
5280
5415
|
],
|
|
5281
5416
|
"profiles": [
|
|
5417
|
+
"catalog",
|
|
5282
5418
|
"core",
|
|
5283
5419
|
"full"
|
|
5284
5420
|
],
|
|
@@ -5316,6 +5452,7 @@
|
|
|
5316
5452
|
},
|
|
5317
5453
|
{
|
|
5318
5454
|
"name": "get_seedance_material_asset",
|
|
5455
|
+
"title": "Get Seedance material asset",
|
|
5319
5456
|
"operation_id": "getSeedanceMaterialAsset",
|
|
5320
5457
|
"method": "GET",
|
|
5321
5458
|
"path": "/v1/videos/assets/{assetId}",
|
|
@@ -5358,6 +5495,7 @@
|
|
|
5358
5495
|
},
|
|
5359
5496
|
{
|
|
5360
5497
|
"name": "get_seedance_material_asset_group",
|
|
5498
|
+
"title": "Get Seedance material asset group",
|
|
5361
5499
|
"operation_id": "getSeedanceMaterialAssetGroup",
|
|
5362
5500
|
"method": "GET",
|
|
5363
5501
|
"path": "/v1/videos/assets/groups/{groupId}",
|
|
@@ -5400,6 +5538,7 @@
|
|
|
5400
5538
|
},
|
|
5401
5539
|
{
|
|
5402
5540
|
"name": "get_task_status",
|
|
5541
|
+
"title": "Get async task status",
|
|
5403
5542
|
"operation_id": "getAsyncTask",
|
|
5404
5543
|
"method": "GET",
|
|
5405
5544
|
"path": "/v1/tasks/{id}",
|
|
@@ -5461,6 +5600,7 @@
|
|
|
5461
5600
|
},
|
|
5462
5601
|
{
|
|
5463
5602
|
"name": "get_video_task",
|
|
5603
|
+
"title": "Get video task status",
|
|
5464
5604
|
"operation_id": "getVideoTask",
|
|
5465
5605
|
"method": "GET",
|
|
5466
5606
|
"path": "/v1/videos/generations/{id}",
|
|
@@ -5504,6 +5644,7 @@
|
|
|
5504
5644
|
},
|
|
5505
5645
|
{
|
|
5506
5646
|
"name": "get_volc_compatible_seedance_task",
|
|
5647
|
+
"title": "Get Seedance task (Volc-compatible)",
|
|
5507
5648
|
"operation_id": "getVolcCompatibleSeedanceTask",
|
|
5508
5649
|
"method": "GET",
|
|
5509
5650
|
"path": "/api/v3/contents/generations/tasks/{id}",
|
|
@@ -5547,6 +5688,7 @@
|
|
|
5547
5688
|
},
|
|
5548
5689
|
{
|
|
5549
5690
|
"name": "get_world",
|
|
5691
|
+
"title": "Get World Labs world",
|
|
5550
5692
|
"operation_id": "getWorld",
|
|
5551
5693
|
"method": "GET",
|
|
5552
5694
|
"path": "/v1/worlds/{id}",
|
|
@@ -5590,6 +5732,7 @@
|
|
|
5590
5732
|
},
|
|
5591
5733
|
{
|
|
5592
5734
|
"name": "get_world_media_asset",
|
|
5735
|
+
"title": "Get World Labs media asset",
|
|
5593
5736
|
"operation_id": "getWorldMediaAsset",
|
|
5594
5737
|
"method": "GET",
|
|
5595
5738
|
"path": "/v1/worlds/media-assets/{id}",
|
|
@@ -5633,6 +5776,7 @@
|
|
|
5633
5776
|
},
|
|
5634
5777
|
{
|
|
5635
5778
|
"name": "get_world_status",
|
|
5779
|
+
"title": "Get world generation status",
|
|
5636
5780
|
"operation_id": "getWorldStatus",
|
|
5637
5781
|
"method": "GET",
|
|
5638
5782
|
"path": "/v1/worlds/generations/{id}",
|
|
@@ -5693,6 +5837,7 @@
|
|
|
5693
5837
|
},
|
|
5694
5838
|
{
|
|
5695
5839
|
"name": "list_anthropic_message_batches",
|
|
5840
|
+
"title": "List message batches (Anthropic-compatible)",
|
|
5696
5841
|
"operation_id": "listAnthropicMessageBatches",
|
|
5697
5842
|
"method": "GET",
|
|
5698
5843
|
"path": "/v1/messages/batches",
|
|
@@ -5745,6 +5890,7 @@
|
|
|
5745
5890
|
},
|
|
5746
5891
|
{
|
|
5747
5892
|
"name": "list_batches",
|
|
5893
|
+
"title": "List batches",
|
|
5748
5894
|
"operation_id": "listBatches",
|
|
5749
5895
|
"method": "GET",
|
|
5750
5896
|
"path": "/v1/batches",
|
|
@@ -5790,6 +5936,7 @@
|
|
|
5790
5936
|
},
|
|
5791
5937
|
{
|
|
5792
5938
|
"name": "list_files",
|
|
5939
|
+
"title": "List files",
|
|
5793
5940
|
"operation_id": "listFiles",
|
|
5794
5941
|
"method": "GET",
|
|
5795
5942
|
"path": "/v1/files",
|
|
@@ -5847,6 +5994,7 @@
|
|
|
5847
5994
|
},
|
|
5848
5995
|
{
|
|
5849
5996
|
"name": "list_gemini_models",
|
|
5997
|
+
"title": "List Gemini-native models",
|
|
5850
5998
|
"operation_id": "listGeminiModels",
|
|
5851
5999
|
"method": "GET",
|
|
5852
6000
|
"path": "/v1beta/models",
|
|
@@ -5892,6 +6040,7 @@
|
|
|
5892
6040
|
},
|
|
5893
6041
|
{
|
|
5894
6042
|
"name": "list_models",
|
|
6043
|
+
"title": "List models",
|
|
5895
6044
|
"operation_id": "listModels",
|
|
5896
6045
|
"method": "GET",
|
|
5897
6046
|
"path": "/v1/models",
|
|
@@ -5901,22 +6050,82 @@
|
|
|
5901
6050
|
"Models"
|
|
5902
6051
|
],
|
|
5903
6052
|
"profiles": [
|
|
6053
|
+
"catalog",
|
|
5904
6054
|
"core",
|
|
5905
6055
|
"full"
|
|
5906
6056
|
],
|
|
5907
|
-
"description": "List models Lists the currently available models.
|
|
6057
|
+
"description": "List models Lists the currently available models. Use `view=compact` for model selection and `view=full` for the existing OpenAI-compatible discovery shape. Native API calls default to `full`; integrations may choose `compact` as their default. Non-chat recommendations are available through `recommended_for`.",
|
|
5908
6058
|
"input_schema": {
|
|
5909
6059
|
"type": "object",
|
|
5910
|
-
"properties": {
|
|
6060
|
+
"properties": {
|
|
6061
|
+
"provider": {
|
|
6062
|
+
"type": "string",
|
|
6063
|
+
"description": "Filter by public model provider, for example openai, anthropic, google, or minimax."
|
|
6064
|
+
},
|
|
6065
|
+
"tag": {
|
|
6066
|
+
"type": "string",
|
|
6067
|
+
"description": "Filter by a public capability tag."
|
|
6068
|
+
},
|
|
6069
|
+
"category": {
|
|
6070
|
+
"type": "string",
|
|
6071
|
+
"enum": [
|
|
6072
|
+
"chat",
|
|
6073
|
+
"embedding",
|
|
6074
|
+
"translation",
|
|
6075
|
+
"image",
|
|
6076
|
+
"video",
|
|
6077
|
+
"audio",
|
|
6078
|
+
"tts",
|
|
6079
|
+
"stt",
|
|
6080
|
+
"rerank",
|
|
6081
|
+
"3d",
|
|
6082
|
+
"music"
|
|
6083
|
+
],
|
|
6084
|
+
"description": "Filter by model category."
|
|
6085
|
+
},
|
|
6086
|
+
"recommended_for": {
|
|
6087
|
+
"type": "string",
|
|
6088
|
+
"enum": [
|
|
6089
|
+
"image",
|
|
6090
|
+
"video",
|
|
6091
|
+
"music",
|
|
6092
|
+
"3d",
|
|
6093
|
+
"tts",
|
|
6094
|
+
"stt",
|
|
6095
|
+
"embedding",
|
|
6096
|
+
"rerank",
|
|
6097
|
+
"translation"
|
|
6098
|
+
],
|
|
6099
|
+
"description": "Sort supported non-chat models for a task category and include recommendation evidence."
|
|
6100
|
+
},
|
|
6101
|
+
"view": {
|
|
6102
|
+
"type": "string",
|
|
6103
|
+
"enum": [
|
|
6104
|
+
"compact",
|
|
6105
|
+
"full"
|
|
6106
|
+
],
|
|
6107
|
+
"default": "compact",
|
|
6108
|
+
"description": "Compact model-selection output is the MCP default. Set view to full only when the complete OpenAI-compatible list shape is required."
|
|
6109
|
+
}
|
|
6110
|
+
},
|
|
5911
6111
|
"additionalProperties": false
|
|
5912
6112
|
},
|
|
5913
6113
|
"bindings": {
|
|
5914
6114
|
"path": [],
|
|
5915
|
-
"query": [
|
|
6115
|
+
"query": [
|
|
6116
|
+
"provider",
|
|
6117
|
+
"tag",
|
|
6118
|
+
"category",
|
|
6119
|
+
"recommended_for",
|
|
6120
|
+
"view"
|
|
6121
|
+
],
|
|
5916
6122
|
"header": [],
|
|
5917
6123
|
"body": [],
|
|
5918
6124
|
"files": []
|
|
5919
6125
|
},
|
|
6126
|
+
"default_arguments": {
|
|
6127
|
+
"view": "compact"
|
|
6128
|
+
},
|
|
5920
6129
|
"annotations": {
|
|
5921
6130
|
"readOnlyHint": true,
|
|
5922
6131
|
"destructiveHint": false,
|
|
@@ -5926,6 +6135,7 @@
|
|
|
5926
6135
|
},
|
|
5927
6136
|
{
|
|
5928
6137
|
"name": "list_seedance_material_asset_groups",
|
|
6138
|
+
"title": "List Seedance material asset groups",
|
|
5929
6139
|
"operation_id": "listSeedanceMaterialAssetGroups",
|
|
5930
6140
|
"method": "GET",
|
|
5931
6141
|
"path": "/v1/videos/assets/groups",
|
|
@@ -5989,6 +6199,7 @@
|
|
|
5989
6199
|
},
|
|
5990
6200
|
{
|
|
5991
6201
|
"name": "list_seedance_material_assets",
|
|
6202
|
+
"title": "List Seedance material assets",
|
|
5992
6203
|
"operation_id": "listSeedanceMaterialAssets",
|
|
5993
6204
|
"method": "GET",
|
|
5994
6205
|
"path": "/v1/videos/assets",
|
|
@@ -6059,6 +6270,7 @@
|
|
|
6059
6270
|
},
|
|
6060
6271
|
{
|
|
6061
6272
|
"name": "list_seedance_visual_validation_history",
|
|
6273
|
+
"title": "List Seedance real-person verification history",
|
|
6062
6274
|
"operation_id": "listSeedanceVisualValidationHistory",
|
|
6063
6275
|
"method": "GET",
|
|
6064
6276
|
"path": "/v1/videos/assets/visual-validation-sessions",
|
|
@@ -6107,6 +6319,7 @@
|
|
|
6107
6319
|
},
|
|
6108
6320
|
{
|
|
6109
6321
|
"name": "list_volc_compatible_seedance_tasks",
|
|
6322
|
+
"title": "List Seedance tasks (Volc-compatible)",
|
|
6110
6323
|
"operation_id": "listVolcCompatibleSeedanceTasks",
|
|
6111
6324
|
"method": "GET",
|
|
6112
6325
|
"path": "/api/v3/contents/generations/tasks",
|
|
@@ -6185,6 +6398,7 @@
|
|
|
6185
6398
|
},
|
|
6186
6399
|
{
|
|
6187
6400
|
"name": "list_worlds",
|
|
6401
|
+
"title": "List World Labs worlds",
|
|
6188
6402
|
"operation_id": "listWorlds",
|
|
6189
6403
|
"method": "POST",
|
|
6190
6404
|
"path": "/v1/worlds/list",
|
|
@@ -6340,6 +6554,7 @@
|
|
|
6340
6554
|
},
|
|
6341
6555
|
{
|
|
6342
6556
|
"name": "prepare_world_media_asset_upload",
|
|
6557
|
+
"title": "Prepare World Labs media asset upload",
|
|
6343
6558
|
"operation_id": "prepareWorldMediaAssetUpload",
|
|
6344
6559
|
"method": "POST",
|
|
6345
6560
|
"path": "/v1/worlds/media-assets/prepare-upload",
|
|
@@ -6419,6 +6634,7 @@
|
|
|
6419
6634
|
},
|
|
6420
6635
|
{
|
|
6421
6636
|
"name": "rerank_documents",
|
|
6637
|
+
"title": "Rerank documents",
|
|
6422
6638
|
"operation_id": "rerankDocuments",
|
|
6423
6639
|
"method": "POST",
|
|
6424
6640
|
"path": "/v1/rerank",
|
|
@@ -6487,6 +6703,7 @@
|
|
|
6487
6703
|
},
|
|
6488
6704
|
{
|
|
6489
6705
|
"name": "retrieve_anthropic_message_batch",
|
|
6706
|
+
"title": "Retrieve message batch (Anthropic-compatible)",
|
|
6490
6707
|
"operation_id": "retrieveAnthropicMessageBatch",
|
|
6491
6708
|
"method": "GET",
|
|
6492
6709
|
"path": "/v1/messages/batches/{message_batch_id}",
|
|
@@ -6530,6 +6747,7 @@
|
|
|
6530
6747
|
},
|
|
6531
6748
|
{
|
|
6532
6749
|
"name": "retrieve_anthropic_message_batch_results",
|
|
6750
|
+
"title": "Retrieve message batch results (Anthropic-compatible)",
|
|
6533
6751
|
"operation_id": "retrieveAnthropicMessageBatchResults",
|
|
6534
6752
|
"method": "GET",
|
|
6535
6753
|
"path": "/v1/messages/batches/{message_batch_id}/results",
|
|
@@ -6573,6 +6791,7 @@
|
|
|
6573
6791
|
},
|
|
6574
6792
|
{
|
|
6575
6793
|
"name": "retrieve_batch",
|
|
6794
|
+
"title": "Retrieve batch",
|
|
6576
6795
|
"operation_id": "retrieveBatch",
|
|
6577
6796
|
"method": "GET",
|
|
6578
6797
|
"path": "/v1/batches/{batch_id}",
|
|
@@ -6615,6 +6834,7 @@
|
|
|
6615
6834
|
},
|
|
6616
6835
|
{
|
|
6617
6836
|
"name": "retrieve_file",
|
|
6837
|
+
"title": "Retrieve file",
|
|
6618
6838
|
"operation_id": "retrieveFile",
|
|
6619
6839
|
"method": "GET",
|
|
6620
6840
|
"path": "/v1/files/{file_id}",
|
|
@@ -6658,6 +6878,7 @@
|
|
|
6658
6878
|
},
|
|
6659
6879
|
{
|
|
6660
6880
|
"name": "retrieve_file_content",
|
|
6881
|
+
"title": "Retrieve file content",
|
|
6661
6882
|
"operation_id": "retrieveFileContent",
|
|
6662
6883
|
"method": "GET",
|
|
6663
6884
|
"path": "/v1/files/{file_id}/content",
|
|
@@ -6701,6 +6922,7 @@
|
|
|
6701
6922
|
},
|
|
6702
6923
|
{
|
|
6703
6924
|
"name": "retrieve_response",
|
|
6925
|
+
"title": "Retrieve response",
|
|
6704
6926
|
"operation_id": "retrieveResponse",
|
|
6705
6927
|
"method": "GET",
|
|
6706
6928
|
"path": "/v1/responses/{id}",
|
|
@@ -6744,6 +6966,7 @@
|
|
|
6744
6966
|
},
|
|
6745
6967
|
{
|
|
6746
6968
|
"name": "transcribe_audio",
|
|
6969
|
+
"title": "Create transcription",
|
|
6747
6970
|
"operation_id": "createTranscription",
|
|
6748
6971
|
"method": "POST",
|
|
6749
6972
|
"path": "/v1/audio/transcriptions",
|
|
@@ -6838,6 +7061,7 @@
|
|
|
6838
7061
|
},
|
|
6839
7062
|
{
|
|
6840
7063
|
"name": "translate_audio",
|
|
7064
|
+
"title": "Translate audio",
|
|
6841
7065
|
"operation_id": "createAudioTranslation",
|
|
6842
7066
|
"method": "POST",
|
|
6843
7067
|
"path": "/v1/audio/translations",
|
|
@@ -6903,6 +7127,7 @@
|
|
|
6903
7127
|
},
|
|
6904
7128
|
{
|
|
6905
7129
|
"name": "translate_text",
|
|
7130
|
+
"title": "Translate text",
|
|
6906
7131
|
"operation_id": "createTranslation",
|
|
6907
7132
|
"method": "POST",
|
|
6908
7133
|
"path": "/v1/translations",
|
|
@@ -6972,6 +7197,7 @@
|
|
|
6972
7197
|
},
|
|
6973
7198
|
{
|
|
6974
7199
|
"name": "update_seedance_material_asset",
|
|
7200
|
+
"title": "Update Seedance material asset",
|
|
6975
7201
|
"operation_id": "updateSeedanceMaterialAsset",
|
|
6976
7202
|
"method": "PUT",
|
|
6977
7203
|
"path": "/v1/videos/assets/{assetId}",
|
|
@@ -7051,6 +7277,7 @@
|
|
|
7051
7277
|
},
|
|
7052
7278
|
{
|
|
7053
7279
|
"name": "update_seedance_material_asset_group",
|
|
7280
|
+
"title": "Update Seedance material asset group",
|
|
7054
7281
|
"operation_id": "updateSeedanceMaterialAssetGroup",
|
|
7055
7282
|
"method": "PUT",
|
|
7056
7283
|
"path": "/v1/videos/assets/groups/{groupId}",
|
|
@@ -7124,6 +7351,7 @@
|
|
|
7124
7351
|
},
|
|
7125
7352
|
{
|
|
7126
7353
|
"name": "upload_file",
|
|
7354
|
+
"title": "Upload file",
|
|
7127
7355
|
"operation_id": "uploadFile",
|
|
7128
7356
|
"method": "POST",
|
|
7129
7357
|
"path": "/v1/files",
|