@runapi.ai/seedance-mcp 0.1.5 → 0.1.7
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 +4 -4
- package/data/contract.json +246 -42
- package/data/pricing.json +22 -2
- package/dist/src/meta.d.ts +1 -1
- package/dist/src/meta.js +1 -1
- package/package.json +2 -2
- package/server.json +2 -2
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<a href="https://github.com/runapi-ai/seedance-mcp"><img src="https://img.shields.io/badge/GitHub-runapi--ai%2Fseedance--mcp-24292f?style=flat-square" alt="GitHub repository"></a>
|
|
14
14
|
<a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache_2.0-blue?style=flat-square" alt="Apache-2.0 license"></a>
|
|
15
15
|
<img src="https://img.shields.io/badge/Type-MCP_Server-blue?style=flat-square" alt="MCP Server">
|
|
16
|
-
<img src="https://img.shields.io/badge/Models-
|
|
16
|
+
<img src="https://img.shields.io/badge/Models-7-16a34a?style=flat-square" alt="7 models">
|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
19
|
<p align="center">
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
## Why This Package?
|
|
31
31
|
|
|
32
32
|
`@runapi.ai/seedance-mcp` is a focused Model Context Protocol server for the **Seedance** model line on RunAPI.
|
|
33
|
-
It gives MCP-compatible assistants direct access to 1 endpoint and
|
|
33
|
+
It gives MCP-compatible assistants direct access to 1 endpoint and 7 model variants without loading the full RunAPI catalog.
|
|
34
34
|
|
|
35
35
|
Use this per-model server when an agent should stay scoped to Seedance. Use [`@runapi.ai/mcp`](https://github.com/runapi-ai/mcp) when one assistant should discover every RunAPI model line.
|
|
36
36
|
|
|
@@ -82,11 +82,11 @@ Ready-made examples are in [`examples/`](examples/) for Claude, Cursor, Windsurf
|
|
|
82
82
|
|
|
83
83
|
## Models
|
|
84
84
|
|
|
85
|
-
Seedance covers
|
|
85
|
+
Seedance covers 7 model variants across 1 endpoint. Each tool accepts the models listed for it:
|
|
86
86
|
|
|
87
87
|
| Tool | Models |
|
|
88
88
|
|---|---|
|
|
89
|
-
| `text_to_video` | `seedance-1.5-pro`, `seedance-2.0`, `seedance-2.0-fast`, `seedance-v1-lite`, `seedance-v1-pro`, `seedance-v1-pro-fast` |
|
|
89
|
+
| `text_to_video` | `seedance-1.5-pro`, `seedance-2-mini`, `seedance-2.0`, `seedance-2.0-fast`, `seedance-v1-lite`, `seedance-v1-pro`, `seedance-v1-pro-fast` |
|
|
90
90
|
|
|
91
91
|
Model availability can change between releases. Use `check_pricing` or the [Seedance model page](https://runapi.ai/models/seedance) for the current catalog view.
|
|
92
92
|
|
package/data/contract.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"catalog_models": [
|
|
3
3
|
"seedance-1.5-pro",
|
|
4
|
+
"seedance-2-mini",
|
|
4
5
|
"seedance-2.0",
|
|
5
6
|
"seedance-2.0-fast",
|
|
6
7
|
"seedance-v1-lite",
|
|
@@ -13,6 +14,7 @@
|
|
|
13
14
|
"endpoint": "text_to_video",
|
|
14
15
|
"models": [
|
|
15
16
|
"seedance-1.5-pro",
|
|
17
|
+
"seedance-2-mini",
|
|
16
18
|
"seedance-2.0",
|
|
17
19
|
"seedance-2.0-fast",
|
|
18
20
|
"seedance-v1-lite",
|
|
@@ -21,7 +23,17 @@
|
|
|
21
23
|
],
|
|
22
24
|
"fields_by_model": {
|
|
23
25
|
"seedance-1.5-pro": {
|
|
26
|
+
"prompt": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"model": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
},
|
|
32
|
+
"callback_url": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
24
35
|
"aspect_ratio": {
|
|
36
|
+
"type": "string",
|
|
25
37
|
"enum": [
|
|
26
38
|
"1:1",
|
|
27
39
|
"4:3",
|
|
@@ -31,23 +43,101 @@
|
|
|
31
43
|
"21:9"
|
|
32
44
|
]
|
|
33
45
|
},
|
|
46
|
+
"output_resolution": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"enum": [
|
|
49
|
+
"480p",
|
|
50
|
+
"720p",
|
|
51
|
+
"1080p"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
34
54
|
"duration_seconds": {
|
|
55
|
+
"type": "integer",
|
|
35
56
|
"max": 12,
|
|
36
57
|
"min": 4,
|
|
37
|
-
"type": "integer",
|
|
38
58
|
"required": true
|
|
39
59
|
},
|
|
60
|
+
"generate_audio": {
|
|
61
|
+
"type": "boolean"
|
|
62
|
+
},
|
|
63
|
+
"enable_safety_checker": {
|
|
64
|
+
"type": "boolean"
|
|
65
|
+
},
|
|
66
|
+
"source_image_urls": {
|
|
67
|
+
"type": "array"
|
|
68
|
+
},
|
|
69
|
+
"lock_camera": {
|
|
70
|
+
"type": "boolean"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"seedance-2-mini": {
|
|
74
|
+
"prompt": {
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
"model": {
|
|
78
|
+
"type": "string"
|
|
79
|
+
},
|
|
80
|
+
"callback_url": {
|
|
81
|
+
"type": "string"
|
|
82
|
+
},
|
|
83
|
+
"aspect_ratio": {
|
|
84
|
+
"type": "string",
|
|
85
|
+
"enum": [
|
|
86
|
+
"1:1",
|
|
87
|
+
"4:3",
|
|
88
|
+
"3:4",
|
|
89
|
+
"16:9",
|
|
90
|
+
"9:16",
|
|
91
|
+
"21:9",
|
|
92
|
+
"auto"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
40
95
|
"output_resolution": {
|
|
96
|
+
"type": "string",
|
|
41
97
|
"enum": [
|
|
42
98
|
"480p",
|
|
43
|
-
"720p"
|
|
44
|
-
"1080p"
|
|
99
|
+
"720p"
|
|
45
100
|
]
|
|
46
101
|
},
|
|
47
|
-
"
|
|
102
|
+
"duration_seconds": {
|
|
103
|
+
"type": "integer",
|
|
104
|
+
"max": 15,
|
|
105
|
+
"min": 4
|
|
106
|
+
},
|
|
107
|
+
"generate_audio": {
|
|
108
|
+
"type": "boolean"
|
|
109
|
+
},
|
|
110
|
+
"first_frame_image_url": {
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
"last_frame_image_url": {
|
|
114
|
+
"type": "string"
|
|
115
|
+
},
|
|
116
|
+
"reference_image_urls": {
|
|
117
|
+
"type": "array"
|
|
118
|
+
},
|
|
119
|
+
"reference_video_urls": {
|
|
120
|
+
"type": "array"
|
|
121
|
+
},
|
|
122
|
+
"reference_audio_urls": {
|
|
123
|
+
"type": "array"
|
|
124
|
+
},
|
|
125
|
+
"web_search": {
|
|
126
|
+
"type": "boolean"
|
|
127
|
+
}
|
|
48
128
|
},
|
|
49
129
|
"seedance-2.0": {
|
|
130
|
+
"prompt": {
|
|
131
|
+
"type": "string"
|
|
132
|
+
},
|
|
133
|
+
"model": {
|
|
134
|
+
"type": "string"
|
|
135
|
+
},
|
|
136
|
+
"callback_url": {
|
|
137
|
+
"type": "string"
|
|
138
|
+
},
|
|
50
139
|
"aspect_ratio": {
|
|
140
|
+
"type": "string",
|
|
51
141
|
"enum": [
|
|
52
142
|
"1:1",
|
|
53
143
|
"4:3",
|
|
@@ -58,26 +148,57 @@
|
|
|
58
148
|
"auto"
|
|
59
149
|
]
|
|
60
150
|
},
|
|
61
|
-
"duration_seconds": {
|
|
62
|
-
"max": 15,
|
|
63
|
-
"min": 4,
|
|
64
|
-
"type": "integer"
|
|
65
|
-
},
|
|
66
151
|
"output_resolution": {
|
|
152
|
+
"type": "string",
|
|
67
153
|
"enum": [
|
|
68
154
|
"480p",
|
|
69
155
|
"720p",
|
|
70
|
-
"1080p"
|
|
156
|
+
"1080p",
|
|
157
|
+
"4k"
|
|
71
158
|
]
|
|
72
159
|
},
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
160
|
+
"duration_seconds": {
|
|
161
|
+
"type": "integer",
|
|
162
|
+
"max": 15,
|
|
163
|
+
"min": 4
|
|
164
|
+
},
|
|
165
|
+
"generate_audio": {
|
|
166
|
+
"type": "boolean"
|
|
167
|
+
},
|
|
168
|
+
"enable_safety_checker": {
|
|
169
|
+
"type": "boolean"
|
|
170
|
+
},
|
|
171
|
+
"first_frame_image_url": {
|
|
172
|
+
"type": "string"
|
|
173
|
+
},
|
|
174
|
+
"last_frame_image_url": {
|
|
175
|
+
"type": "string"
|
|
176
|
+
},
|
|
177
|
+
"reference_image_urls": {
|
|
178
|
+
"type": "array"
|
|
179
|
+
},
|
|
180
|
+
"reference_video_urls": {
|
|
181
|
+
"type": "array"
|
|
182
|
+
},
|
|
183
|
+
"reference_audio_urls": {
|
|
184
|
+
"type": "array"
|
|
185
|
+
},
|
|
186
|
+
"web_search": {
|
|
187
|
+
"type": "boolean"
|
|
188
|
+
}
|
|
78
189
|
},
|
|
79
190
|
"seedance-2.0-fast": {
|
|
191
|
+
"prompt": {
|
|
192
|
+
"type": "string"
|
|
193
|
+
},
|
|
194
|
+
"model": {
|
|
195
|
+
"type": "string"
|
|
196
|
+
},
|
|
197
|
+
"callback_url": {
|
|
198
|
+
"type": "string"
|
|
199
|
+
},
|
|
80
200
|
"aspect_ratio": {
|
|
201
|
+
"type": "string",
|
|
81
202
|
"enum": [
|
|
82
203
|
"1:1",
|
|
83
204
|
"4:3",
|
|
@@ -88,25 +209,55 @@
|
|
|
88
209
|
"auto"
|
|
89
210
|
]
|
|
90
211
|
},
|
|
91
|
-
"duration_seconds": {
|
|
92
|
-
"max": 15,
|
|
93
|
-
"min": 4,
|
|
94
|
-
"type": "integer"
|
|
95
|
-
},
|
|
96
212
|
"output_resolution": {
|
|
213
|
+
"type": "string",
|
|
97
214
|
"enum": [
|
|
98
215
|
"480p",
|
|
99
216
|
"720p"
|
|
100
217
|
]
|
|
101
218
|
},
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
219
|
+
"duration_seconds": {
|
|
220
|
+
"type": "integer",
|
|
221
|
+
"max": 15,
|
|
222
|
+
"min": 4
|
|
223
|
+
},
|
|
224
|
+
"generate_audio": {
|
|
225
|
+
"type": "boolean"
|
|
226
|
+
},
|
|
227
|
+
"enable_safety_checker": {
|
|
228
|
+
"type": "boolean"
|
|
229
|
+
},
|
|
230
|
+
"first_frame_image_url": {
|
|
231
|
+
"type": "string"
|
|
232
|
+
},
|
|
233
|
+
"last_frame_image_url": {
|
|
234
|
+
"type": "string"
|
|
235
|
+
},
|
|
236
|
+
"reference_image_urls": {
|
|
237
|
+
"type": "array"
|
|
238
|
+
},
|
|
239
|
+
"reference_video_urls": {
|
|
240
|
+
"type": "array"
|
|
241
|
+
},
|
|
242
|
+
"reference_audio_urls": {
|
|
243
|
+
"type": "array"
|
|
244
|
+
},
|
|
245
|
+
"web_search": {
|
|
246
|
+
"type": "boolean"
|
|
247
|
+
}
|
|
107
248
|
},
|
|
108
249
|
"seedance-v1-lite": {
|
|
250
|
+
"prompt": {
|
|
251
|
+
"type": "string"
|
|
252
|
+
},
|
|
253
|
+
"model": {
|
|
254
|
+
"type": "string"
|
|
255
|
+
},
|
|
256
|
+
"callback_url": {
|
|
257
|
+
"type": "string"
|
|
258
|
+
},
|
|
109
259
|
"aspect_ratio": {
|
|
260
|
+
"type": "string",
|
|
110
261
|
"enum": [
|
|
111
262
|
"1:1",
|
|
112
263
|
"4:3",
|
|
@@ -116,25 +267,50 @@
|
|
|
116
267
|
"9:21"
|
|
117
268
|
]
|
|
118
269
|
},
|
|
270
|
+
"output_resolution": {
|
|
271
|
+
"type": "string",
|
|
272
|
+
"enum": [
|
|
273
|
+
"480p",
|
|
274
|
+
"720p",
|
|
275
|
+
"1080p"
|
|
276
|
+
]
|
|
277
|
+
},
|
|
119
278
|
"duration_seconds": {
|
|
279
|
+
"type": "integer",
|
|
120
280
|
"enum": [
|
|
121
281
|
5,
|
|
122
282
|
10
|
|
123
283
|
],
|
|
124
284
|
"required": true
|
|
125
285
|
},
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"480p",
|
|
129
|
-
"720p",
|
|
130
|
-
"1080p"
|
|
131
|
-
]
|
|
286
|
+
"enable_safety_checker": {
|
|
287
|
+
"type": "boolean"
|
|
132
288
|
},
|
|
133
|
-
"
|
|
134
|
-
|
|
289
|
+
"lock_camera": {
|
|
290
|
+
"type": "boolean"
|
|
291
|
+
},
|
|
292
|
+
"first_frame_image_url": {
|
|
293
|
+
"type": "string"
|
|
294
|
+
},
|
|
295
|
+
"last_frame_image_url": {
|
|
296
|
+
"type": "string"
|
|
297
|
+
},
|
|
298
|
+
"seed": {
|
|
299
|
+
"type": "integer"
|
|
300
|
+
}
|
|
135
301
|
},
|
|
136
302
|
"seedance-v1-pro": {
|
|
303
|
+
"prompt": {
|
|
304
|
+
"type": "string"
|
|
305
|
+
},
|
|
306
|
+
"model": {
|
|
307
|
+
"type": "string"
|
|
308
|
+
},
|
|
309
|
+
"callback_url": {
|
|
310
|
+
"type": "string"
|
|
311
|
+
},
|
|
137
312
|
"aspect_ratio": {
|
|
313
|
+
"type": "string",
|
|
138
314
|
"enum": [
|
|
139
315
|
"1:1",
|
|
140
316
|
"4:3",
|
|
@@ -144,37 +320,65 @@
|
|
|
144
320
|
"21:9"
|
|
145
321
|
]
|
|
146
322
|
},
|
|
323
|
+
"output_resolution": {
|
|
324
|
+
"type": "string",
|
|
325
|
+
"enum": [
|
|
326
|
+
"480p",
|
|
327
|
+
"720p",
|
|
328
|
+
"1080p"
|
|
329
|
+
]
|
|
330
|
+
},
|
|
147
331
|
"duration_seconds": {
|
|
332
|
+
"type": "integer",
|
|
148
333
|
"enum": [
|
|
149
334
|
5,
|
|
150
335
|
10
|
|
151
336
|
],
|
|
152
337
|
"required": true
|
|
153
338
|
},
|
|
339
|
+
"enable_safety_checker": {
|
|
340
|
+
"type": "boolean"
|
|
341
|
+
},
|
|
342
|
+
"lock_camera": {
|
|
343
|
+
"type": "boolean"
|
|
344
|
+
},
|
|
345
|
+
"first_frame_image_url": {
|
|
346
|
+
"type": "string"
|
|
347
|
+
},
|
|
348
|
+
"seed": {
|
|
349
|
+
"type": "integer"
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"seedance-v1-pro-fast": {
|
|
353
|
+
"prompt": {
|
|
354
|
+
"type": "string"
|
|
355
|
+
},
|
|
356
|
+
"model": {
|
|
357
|
+
"type": "string"
|
|
358
|
+
},
|
|
359
|
+
"callback_url": {
|
|
360
|
+
"type": "string"
|
|
361
|
+
},
|
|
154
362
|
"output_resolution": {
|
|
363
|
+
"type": "string",
|
|
155
364
|
"enum": [
|
|
156
|
-
"480p",
|
|
157
365
|
"720p",
|
|
158
366
|
"1080p"
|
|
159
367
|
]
|
|
160
368
|
},
|
|
161
|
-
"first_frame_image_url": {}
|
|
162
|
-
},
|
|
163
|
-
"seedance-v1-pro-fast": {
|
|
164
369
|
"duration_seconds": {
|
|
370
|
+
"type": "integer",
|
|
165
371
|
"enum": [
|
|
166
372
|
5,
|
|
167
373
|
10
|
|
168
374
|
],
|
|
169
375
|
"required": true
|
|
170
376
|
},
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"720p",
|
|
174
|
-
"1080p"
|
|
175
|
-
]
|
|
377
|
+
"enable_safety_checker": {
|
|
378
|
+
"type": "boolean"
|
|
176
379
|
},
|
|
177
380
|
"first_frame_image_url": {
|
|
381
|
+
"type": "string",
|
|
178
382
|
"required": true
|
|
179
383
|
}
|
|
180
384
|
}
|
package/data/pricing.json
CHANGED
|
@@ -21,8 +21,27 @@
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
+
"seedance-2-mini/text_to_video": {
|
|
25
|
+
"unit_price_cents": 57,
|
|
26
|
+
"billing_config": {
|
|
27
|
+
"keys": [
|
|
28
|
+
"pricing_input_mode",
|
|
29
|
+
"output_resolution"
|
|
30
|
+
],
|
|
31
|
+
"matrix": {
|
|
32
|
+
"standard": {
|
|
33
|
+
"480p": 19,
|
|
34
|
+
"720p": 41
|
|
35
|
+
},
|
|
36
|
+
"reference": {
|
|
37
|
+
"480p": 27,
|
|
38
|
+
"720p": 56.25
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
24
43
|
"seedance-2.0/text_to_video": {
|
|
25
|
-
"unit_price_cents":
|
|
44
|
+
"unit_price_cents": 208,
|
|
26
45
|
"billing_config": {
|
|
27
46
|
"keys": [
|
|
28
47
|
"input_mode",
|
|
@@ -32,7 +51,8 @@
|
|
|
32
51
|
"generated": {
|
|
33
52
|
"480p": 19,
|
|
34
53
|
"720p": 41,
|
|
35
|
-
"1080p": 102
|
|
54
|
+
"1080p": 102,
|
|
55
|
+
"4k": 208
|
|
36
56
|
},
|
|
37
57
|
"video": {
|
|
38
58
|
"480p": 11.5,
|
package/dist/src/meta.d.ts
CHANGED
package/dist/src/meta.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runapi.ai/seedance-mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "RunAPI Seedance MCP server for video generation: create tasks, poll results, and check pricing across
|
|
3
|
+
"version": "0.1.7",
|
|
4
|
+
"description": "RunAPI Seedance MCP server for video generation: create tasks, poll results, and check pricing across 7 model variants from Claude Code, Codex, Cursor, and VS Code.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"bin": {
|
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/runapi-ai/seedance-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.7",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "@runapi.ai/seedance-mcp",
|
|
14
|
-
"version": "0.1.
|
|
14
|
+
"version": "0.1.7",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
},
|