@studiomeyer/mcp-video 1.0.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.
Files changed (184) hide show
  1. package/.github/ISSUE_TEMPLATE/bug_report.md +31 -0
  2. package/.github/ISSUE_TEMPLATE/feature_request.md +19 -0
  3. package/.github/workflows/ci.yml +34 -0
  4. package/CHANGELOG.md +24 -0
  5. package/CONTRIBUTING.md +75 -0
  6. package/LICENSE +21 -0
  7. package/README.md +198 -0
  8. package/USAGE.md +144 -0
  9. package/dist/handlers/capcut.d.ts +6 -0
  10. package/dist/handlers/capcut.js +229 -0
  11. package/dist/handlers/capcut.js.map +1 -0
  12. package/dist/handlers/editing.d.ts +6 -0
  13. package/dist/handlers/editing.js +242 -0
  14. package/dist/handlers/editing.js.map +1 -0
  15. package/dist/handlers/index.d.ts +2 -0
  16. package/dist/handlers/index.js +33 -0
  17. package/dist/handlers/index.js.map +1 -0
  18. package/dist/handlers/post-production.d.ts +5 -0
  19. package/dist/handlers/post-production.js +109 -0
  20. package/dist/handlers/post-production.js.map +1 -0
  21. package/dist/handlers/smart-screenshot.d.ts +5 -0
  22. package/dist/handlers/smart-screenshot.js +83 -0
  23. package/dist/handlers/smart-screenshot.js.map +1 -0
  24. package/dist/handlers/tts.d.ts +5 -0
  25. package/dist/handlers/tts.js +83 -0
  26. package/dist/handlers/tts.js.map +1 -0
  27. package/dist/handlers/video.d.ts +5 -0
  28. package/dist/handlers/video.js +127 -0
  29. package/dist/handlers/video.js.map +1 -0
  30. package/dist/lib/dual-transport.d.ts +42 -0
  31. package/dist/lib/dual-transport.js +208 -0
  32. package/dist/lib/dual-transport.js.map +1 -0
  33. package/dist/lib/logger.d.ts +12 -0
  34. package/dist/lib/logger.js +42 -0
  35. package/dist/lib/logger.js.map +1 -0
  36. package/dist/lib/types.d.ts +16 -0
  37. package/dist/lib/types.js +15 -0
  38. package/dist/lib/types.js.map +1 -0
  39. package/dist/schemas/capcut.d.ts +608 -0
  40. package/dist/schemas/capcut.js +411 -0
  41. package/dist/schemas/capcut.js.map +1 -0
  42. package/dist/schemas/editing.d.ts +822 -0
  43. package/dist/schemas/editing.js +466 -0
  44. package/dist/schemas/editing.js.map +1 -0
  45. package/dist/schemas/index.d.ts +2366 -0
  46. package/dist/schemas/index.js +15 -0
  47. package/dist/schemas/index.js.map +1 -0
  48. package/dist/schemas/post-production.d.ts +379 -0
  49. package/dist/schemas/post-production.js +268 -0
  50. package/dist/schemas/post-production.js.map +1 -0
  51. package/dist/schemas/smart-screenshot.d.ts +127 -0
  52. package/dist/schemas/smart-screenshot.js +122 -0
  53. package/dist/schemas/smart-screenshot.js.map +1 -0
  54. package/dist/schemas/tts.d.ts +220 -0
  55. package/dist/schemas/tts.js +194 -0
  56. package/dist/schemas/tts.js.map +1 -0
  57. package/dist/schemas/video.d.ts +236 -0
  58. package/dist/schemas/video.js +210 -0
  59. package/dist/schemas/video.js.map +1 -0
  60. package/dist/server.d.ts +11 -0
  61. package/dist/server.js +239 -0
  62. package/dist/server.js.map +1 -0
  63. package/dist/server.test.d.ts +1 -0
  64. package/dist/server.test.js +87 -0
  65. package/dist/server.test.js.map +1 -0
  66. package/dist/tools/engine/audio-mixer.d.ts +40 -0
  67. package/dist/tools/engine/audio-mixer.js +169 -0
  68. package/dist/tools/engine/audio-mixer.js.map +1 -0
  69. package/dist/tools/engine/audio.d.ts +22 -0
  70. package/dist/tools/engine/audio.js +73 -0
  71. package/dist/tools/engine/audio.js.map +1 -0
  72. package/dist/tools/engine/beat-sync.d.ts +31 -0
  73. package/dist/tools/engine/beat-sync.js +270 -0
  74. package/dist/tools/engine/beat-sync.js.map +1 -0
  75. package/dist/tools/engine/capture.d.ts +12 -0
  76. package/dist/tools/engine/capture.js +290 -0
  77. package/dist/tools/engine/capture.js.map +1 -0
  78. package/dist/tools/engine/chroma-key.d.ts +27 -0
  79. package/dist/tools/engine/chroma-key.js +154 -0
  80. package/dist/tools/engine/chroma-key.js.map +1 -0
  81. package/dist/tools/engine/concat.d.ts +49 -0
  82. package/dist/tools/engine/concat.js +149 -0
  83. package/dist/tools/engine/concat.js.map +1 -0
  84. package/dist/tools/engine/cursor.d.ts +26 -0
  85. package/dist/tools/engine/cursor.js +185 -0
  86. package/dist/tools/engine/cursor.js.map +1 -0
  87. package/dist/tools/engine/easing.d.ts +15 -0
  88. package/dist/tools/engine/easing.js +100 -0
  89. package/dist/tools/engine/easing.js.map +1 -0
  90. package/dist/tools/engine/editing.d.ts +158 -0
  91. package/dist/tools/engine/editing.js +541 -0
  92. package/dist/tools/engine/editing.js.map +1 -0
  93. package/dist/tools/engine/encoder.d.ts +31 -0
  94. package/dist/tools/engine/encoder.js +154 -0
  95. package/dist/tools/engine/encoder.js.map +1 -0
  96. package/dist/tools/engine/index.d.ts +30 -0
  97. package/dist/tools/engine/index.js +23 -0
  98. package/dist/tools/engine/index.js.map +1 -0
  99. package/dist/tools/engine/lut-presets.d.ts +25 -0
  100. package/dist/tools/engine/lut-presets.js +141 -0
  101. package/dist/tools/engine/lut-presets.js.map +1 -0
  102. package/dist/tools/engine/narrated-video.d.ts +63 -0
  103. package/dist/tools/engine/narrated-video.js +163 -0
  104. package/dist/tools/engine/narrated-video.js.map +1 -0
  105. package/dist/tools/engine/scenes.d.ts +17 -0
  106. package/dist/tools/engine/scenes.js +223 -0
  107. package/dist/tools/engine/scenes.js.map +1 -0
  108. package/dist/tools/engine/smart-screenshot.d.ts +80 -0
  109. package/dist/tools/engine/smart-screenshot.js +744 -0
  110. package/dist/tools/engine/smart-screenshot.js.map +1 -0
  111. package/dist/tools/engine/social-format.d.ts +66 -0
  112. package/dist/tools/engine/social-format.js +107 -0
  113. package/dist/tools/engine/social-format.js.map +1 -0
  114. package/dist/tools/engine/template-renderer.d.ts +45 -0
  115. package/dist/tools/engine/template-renderer.js +233 -0
  116. package/dist/tools/engine/template-renderer.js.map +1 -0
  117. package/dist/tools/engine/templates.d.ts +87 -0
  118. package/dist/tools/engine/templates.js +272 -0
  119. package/dist/tools/engine/templates.js.map +1 -0
  120. package/dist/tools/engine/text-animations.d.ts +33 -0
  121. package/dist/tools/engine/text-animations.js +192 -0
  122. package/dist/tools/engine/text-animations.js.map +1 -0
  123. package/dist/tools/engine/text-overlay.d.ts +27 -0
  124. package/dist/tools/engine/text-overlay.js +84 -0
  125. package/dist/tools/engine/text-overlay.js.map +1 -0
  126. package/dist/tools/engine/tts.d.ts +54 -0
  127. package/dist/tools/engine/tts.js +186 -0
  128. package/dist/tools/engine/tts.js.map +1 -0
  129. package/dist/tools/engine/types.d.ts +166 -0
  130. package/dist/tools/engine/types.js +13 -0
  131. package/dist/tools/engine/types.js.map +1 -0
  132. package/dist/tools/engine/voice-effects.d.ts +18 -0
  133. package/dist/tools/engine/voice-effects.js +215 -0
  134. package/dist/tools/engine/voice-effects.js.map +1 -0
  135. package/dist/tools/index.d.ts +32 -0
  136. package/dist/tools/index.js +23 -0
  137. package/dist/tools/index.js.map +1 -0
  138. package/package.json +56 -0
  139. package/scripts/check-deps.js +39 -0
  140. package/src/handlers/capcut.ts +245 -0
  141. package/src/handlers/editing.ts +260 -0
  142. package/src/handlers/index.ts +34 -0
  143. package/src/handlers/post-production.ts +136 -0
  144. package/src/handlers/smart-screenshot.ts +86 -0
  145. package/src/handlers/tts.ts +103 -0
  146. package/src/handlers/video.ts +137 -0
  147. package/src/lib/dual-transport.ts +272 -0
  148. package/src/lib/logger.ts +59 -0
  149. package/src/lib/types.ts +25 -0
  150. package/src/schemas/capcut.ts +418 -0
  151. package/src/schemas/editing.ts +476 -0
  152. package/src/schemas/index.ts +15 -0
  153. package/src/schemas/post-production.ts +273 -0
  154. package/src/schemas/smart-screenshot.ts +122 -0
  155. package/src/schemas/tts.ts +197 -0
  156. package/src/schemas/video.ts +211 -0
  157. package/src/server.test.ts +99 -0
  158. package/src/server.ts +289 -0
  159. package/src/tools/engine/audio-mixer.ts +244 -0
  160. package/src/tools/engine/audio.ts +115 -0
  161. package/src/tools/engine/beat-sync.ts +356 -0
  162. package/src/tools/engine/capture.ts +360 -0
  163. package/src/tools/engine/chroma-key.ts +202 -0
  164. package/src/tools/engine/concat.ts +242 -0
  165. package/src/tools/engine/cursor.ts +222 -0
  166. package/src/tools/engine/easing.ts +120 -0
  167. package/src/tools/engine/editing.ts +809 -0
  168. package/src/tools/engine/encoder.ts +208 -0
  169. package/src/tools/engine/index.ts +33 -0
  170. package/src/tools/engine/lut-presets.ts +235 -0
  171. package/src/tools/engine/narrated-video.ts +267 -0
  172. package/src/tools/engine/scenes.ts +309 -0
  173. package/src/tools/engine/smart-screenshot.ts +923 -0
  174. package/src/tools/engine/social-format.ts +146 -0
  175. package/src/tools/engine/template-renderer.ts +294 -0
  176. package/src/tools/engine/templates.ts +370 -0
  177. package/src/tools/engine/text-animations.ts +282 -0
  178. package/src/tools/engine/text-overlay.ts +143 -0
  179. package/src/tools/engine/tts.ts +284 -0
  180. package/src/tools/engine/types.ts +191 -0
  181. package/src/tools/engine/voice-effects.ts +258 -0
  182. package/src/tools/index.ts +67 -0
  183. package/tsconfig.json +19 -0
  184. package/vitest.config.ts +7 -0
@@ -0,0 +1,2366 @@
1
+ export declare const TOOLS: ({
2
+ name: string;
3
+ description: string;
4
+ annotations: {
5
+ title: string;
6
+ readOnlyHint: boolean;
7
+ destructiveHint: boolean;
8
+ openWorldHint: boolean;
9
+ idempotentHint: boolean;
10
+ };
11
+ inputSchema: {
12
+ type: "object";
13
+ properties: {
14
+ inputPath: {
15
+ type: string;
16
+ description: string;
17
+ };
18
+ outputPath: {
19
+ type: string;
20
+ description: string;
21
+ };
22
+ preset: {
23
+ type: string;
24
+ description: string;
25
+ enum: string[];
26
+ };
27
+ intensity: {
28
+ type: string;
29
+ description: string;
30
+ };
31
+ effect?: undefined;
32
+ background?: undefined;
33
+ keyColor?: undefined;
34
+ similarity?: undefined;
35
+ blend?: undefined;
36
+ despill?: undefined;
37
+ useColorkey?: undefined;
38
+ audioPath?: undefined;
39
+ clips?: undefined;
40
+ beatEffect?: undefined;
41
+ sensitivity?: undefined;
42
+ minBeatInterval?: undefined;
43
+ maxBeats?: undefined;
44
+ text?: undefined;
45
+ animation?: undefined;
46
+ startTime?: undefined;
47
+ duration?: undefined;
48
+ fontSize?: undefined;
49
+ fontColor?: undefined;
50
+ position?: undefined;
51
+ shadow?: undefined;
52
+ tracks?: undefined;
53
+ autoDuck?: undefined;
54
+ duckLevel?: undefined;
55
+ format?: undefined;
56
+ category?: undefined;
57
+ templateId?: undefined;
58
+ texts?: undefined;
59
+ musicPath?: undefined;
60
+ musicVolume?: undefined;
61
+ colorGrade?: undefined;
62
+ socialFormats?: undefined;
63
+ };
64
+ required: string[];
65
+ };
66
+ } | {
67
+ name: string;
68
+ description: string;
69
+ annotations: {
70
+ title: string;
71
+ readOnlyHint: boolean;
72
+ destructiveHint: boolean;
73
+ openWorldHint: boolean;
74
+ idempotentHint: boolean;
75
+ };
76
+ inputSchema: {
77
+ type: "object";
78
+ properties: {
79
+ inputPath: {
80
+ type: string;
81
+ description: string;
82
+ };
83
+ outputPath: {
84
+ type: string;
85
+ description: string;
86
+ };
87
+ effect: {
88
+ type: string;
89
+ description: string;
90
+ enum: string[];
91
+ };
92
+ intensity: {
93
+ type: string;
94
+ description: string;
95
+ };
96
+ preset?: undefined;
97
+ background?: undefined;
98
+ keyColor?: undefined;
99
+ similarity?: undefined;
100
+ blend?: undefined;
101
+ despill?: undefined;
102
+ useColorkey?: undefined;
103
+ audioPath?: undefined;
104
+ clips?: undefined;
105
+ beatEffect?: undefined;
106
+ sensitivity?: undefined;
107
+ minBeatInterval?: undefined;
108
+ maxBeats?: undefined;
109
+ text?: undefined;
110
+ animation?: undefined;
111
+ startTime?: undefined;
112
+ duration?: undefined;
113
+ fontSize?: undefined;
114
+ fontColor?: undefined;
115
+ position?: undefined;
116
+ shadow?: undefined;
117
+ tracks?: undefined;
118
+ autoDuck?: undefined;
119
+ duckLevel?: undefined;
120
+ format?: undefined;
121
+ category?: undefined;
122
+ templateId?: undefined;
123
+ texts?: undefined;
124
+ musicPath?: undefined;
125
+ musicVolume?: undefined;
126
+ colorGrade?: undefined;
127
+ socialFormats?: undefined;
128
+ };
129
+ required: string[];
130
+ };
131
+ } | {
132
+ name: string;
133
+ description: string;
134
+ annotations: {
135
+ title: string;
136
+ readOnlyHint: boolean;
137
+ destructiveHint: boolean;
138
+ openWorldHint: boolean;
139
+ idempotentHint: boolean;
140
+ };
141
+ inputSchema: {
142
+ type: "object";
143
+ properties: {
144
+ inputPath: {
145
+ type: string;
146
+ description: string;
147
+ };
148
+ outputPath: {
149
+ type: string;
150
+ description: string;
151
+ };
152
+ background: {
153
+ type: string;
154
+ description: string;
155
+ };
156
+ keyColor: {
157
+ type: string;
158
+ description: string;
159
+ };
160
+ similarity: {
161
+ type: string;
162
+ description: string;
163
+ };
164
+ blend: {
165
+ type: string;
166
+ description: string;
167
+ };
168
+ despill: {
169
+ type: string;
170
+ description: string;
171
+ };
172
+ useColorkey: {
173
+ type: string;
174
+ description: string;
175
+ };
176
+ preset?: undefined;
177
+ intensity?: undefined;
178
+ effect?: undefined;
179
+ audioPath?: undefined;
180
+ clips?: undefined;
181
+ beatEffect?: undefined;
182
+ sensitivity?: undefined;
183
+ minBeatInterval?: undefined;
184
+ maxBeats?: undefined;
185
+ text?: undefined;
186
+ animation?: undefined;
187
+ startTime?: undefined;
188
+ duration?: undefined;
189
+ fontSize?: undefined;
190
+ fontColor?: undefined;
191
+ position?: undefined;
192
+ shadow?: undefined;
193
+ tracks?: undefined;
194
+ autoDuck?: undefined;
195
+ duckLevel?: undefined;
196
+ format?: undefined;
197
+ category?: undefined;
198
+ templateId?: undefined;
199
+ texts?: undefined;
200
+ musicPath?: undefined;
201
+ musicVolume?: undefined;
202
+ colorGrade?: undefined;
203
+ socialFormats?: undefined;
204
+ };
205
+ required: string[];
206
+ };
207
+ } | {
208
+ name: string;
209
+ description: string;
210
+ annotations: {
211
+ title: string;
212
+ readOnlyHint: boolean;
213
+ destructiveHint: boolean;
214
+ openWorldHint: boolean;
215
+ idempotentHint: boolean;
216
+ };
217
+ inputSchema: {
218
+ type: "object";
219
+ properties: {
220
+ audioPath: {
221
+ type: string;
222
+ description: string;
223
+ };
224
+ clips: {
225
+ type: string;
226
+ items: {
227
+ type: string;
228
+ };
229
+ description: string;
230
+ };
231
+ outputPath: {
232
+ type: string;
233
+ description: string;
234
+ };
235
+ beatEffect: {
236
+ type: string;
237
+ description: string;
238
+ enum: string[];
239
+ };
240
+ sensitivity: {
241
+ type: string;
242
+ description: string;
243
+ };
244
+ minBeatInterval: {
245
+ type: string;
246
+ description: string;
247
+ };
248
+ maxBeats: {
249
+ type: string;
250
+ description: string;
251
+ };
252
+ inputPath?: undefined;
253
+ preset?: undefined;
254
+ intensity?: undefined;
255
+ effect?: undefined;
256
+ background?: undefined;
257
+ keyColor?: undefined;
258
+ similarity?: undefined;
259
+ blend?: undefined;
260
+ despill?: undefined;
261
+ useColorkey?: undefined;
262
+ text?: undefined;
263
+ animation?: undefined;
264
+ startTime?: undefined;
265
+ duration?: undefined;
266
+ fontSize?: undefined;
267
+ fontColor?: undefined;
268
+ position?: undefined;
269
+ shadow?: undefined;
270
+ tracks?: undefined;
271
+ autoDuck?: undefined;
272
+ duckLevel?: undefined;
273
+ format?: undefined;
274
+ category?: undefined;
275
+ templateId?: undefined;
276
+ texts?: undefined;
277
+ musicPath?: undefined;
278
+ musicVolume?: undefined;
279
+ colorGrade?: undefined;
280
+ socialFormats?: undefined;
281
+ };
282
+ required: string[];
283
+ };
284
+ } | {
285
+ name: string;
286
+ description: string;
287
+ annotations: {
288
+ title: string;
289
+ readOnlyHint: boolean;
290
+ destructiveHint: boolean;
291
+ openWorldHint: boolean;
292
+ idempotentHint: boolean;
293
+ };
294
+ inputSchema: {
295
+ type: "object";
296
+ properties: {
297
+ inputPath: {
298
+ type: string;
299
+ description: string;
300
+ };
301
+ outputPath: {
302
+ type: string;
303
+ description: string;
304
+ };
305
+ text: {
306
+ type: string;
307
+ description: string;
308
+ };
309
+ animation: {
310
+ type: string;
311
+ description: string;
312
+ enum: string[];
313
+ };
314
+ startTime: {
315
+ type: string;
316
+ description: string;
317
+ };
318
+ duration: {
319
+ type: string;
320
+ description: string;
321
+ };
322
+ fontSize: {
323
+ type: string;
324
+ description: string;
325
+ };
326
+ fontColor: {
327
+ type: string;
328
+ description: string;
329
+ };
330
+ position: {
331
+ type: string;
332
+ description: string;
333
+ enum: string[];
334
+ };
335
+ shadow: {
336
+ type: string;
337
+ description: string;
338
+ };
339
+ preset?: undefined;
340
+ intensity?: undefined;
341
+ effect?: undefined;
342
+ background?: undefined;
343
+ keyColor?: undefined;
344
+ similarity?: undefined;
345
+ blend?: undefined;
346
+ despill?: undefined;
347
+ useColorkey?: undefined;
348
+ audioPath?: undefined;
349
+ clips?: undefined;
350
+ beatEffect?: undefined;
351
+ sensitivity?: undefined;
352
+ minBeatInterval?: undefined;
353
+ maxBeats?: undefined;
354
+ tracks?: undefined;
355
+ autoDuck?: undefined;
356
+ duckLevel?: undefined;
357
+ format?: undefined;
358
+ category?: undefined;
359
+ templateId?: undefined;
360
+ texts?: undefined;
361
+ musicPath?: undefined;
362
+ musicVolume?: undefined;
363
+ colorGrade?: undefined;
364
+ socialFormats?: undefined;
365
+ };
366
+ required: string[];
367
+ };
368
+ } | {
369
+ name: string;
370
+ description: string;
371
+ annotations: {
372
+ title: string;
373
+ readOnlyHint: boolean;
374
+ destructiveHint: boolean;
375
+ openWorldHint: boolean;
376
+ idempotentHint: boolean;
377
+ };
378
+ inputSchema: {
379
+ type: "object";
380
+ properties: {
381
+ tracks: {
382
+ type: string;
383
+ items: {
384
+ type: string;
385
+ properties: {
386
+ path: {
387
+ type: string;
388
+ description: string;
389
+ };
390
+ volume: {
391
+ type: string;
392
+ description: string;
393
+ };
394
+ fadeIn: {
395
+ type: string;
396
+ description: string;
397
+ };
398
+ fadeOut: {
399
+ type: string;
400
+ description: string;
401
+ };
402
+ delay: {
403
+ type: string;
404
+ description: string;
405
+ };
406
+ role: {
407
+ type: string;
408
+ enum: string[];
409
+ description: string;
410
+ };
411
+ };
412
+ required: string[];
413
+ };
414
+ description: string;
415
+ };
416
+ outputPath: {
417
+ type: string;
418
+ description: string;
419
+ };
420
+ autoDuck: {
421
+ type: string;
422
+ description: string;
423
+ };
424
+ duckLevel: {
425
+ type: string;
426
+ description: string;
427
+ };
428
+ format: {
429
+ type: string;
430
+ description: string;
431
+ enum: string[];
432
+ };
433
+ duration: {
434
+ type: string;
435
+ description: string;
436
+ };
437
+ inputPath?: undefined;
438
+ preset?: undefined;
439
+ intensity?: undefined;
440
+ effect?: undefined;
441
+ background?: undefined;
442
+ keyColor?: undefined;
443
+ similarity?: undefined;
444
+ blend?: undefined;
445
+ despill?: undefined;
446
+ useColorkey?: undefined;
447
+ audioPath?: undefined;
448
+ clips?: undefined;
449
+ beatEffect?: undefined;
450
+ sensitivity?: undefined;
451
+ minBeatInterval?: undefined;
452
+ maxBeats?: undefined;
453
+ text?: undefined;
454
+ animation?: undefined;
455
+ startTime?: undefined;
456
+ fontSize?: undefined;
457
+ fontColor?: undefined;
458
+ position?: undefined;
459
+ shadow?: undefined;
460
+ category?: undefined;
461
+ templateId?: undefined;
462
+ texts?: undefined;
463
+ musicPath?: undefined;
464
+ musicVolume?: undefined;
465
+ colorGrade?: undefined;
466
+ socialFormats?: undefined;
467
+ };
468
+ required: string[];
469
+ };
470
+ } | {
471
+ name: string;
472
+ description: string;
473
+ annotations: {
474
+ title: string;
475
+ readOnlyHint: boolean;
476
+ destructiveHint: boolean;
477
+ openWorldHint: boolean;
478
+ idempotentHint: boolean;
479
+ };
480
+ inputSchema: {
481
+ type: "object";
482
+ properties: {
483
+ category: {
484
+ type: string;
485
+ description: string;
486
+ enum: string[];
487
+ };
488
+ inputPath?: undefined;
489
+ outputPath?: undefined;
490
+ preset?: undefined;
491
+ intensity?: undefined;
492
+ effect?: undefined;
493
+ background?: undefined;
494
+ keyColor?: undefined;
495
+ similarity?: undefined;
496
+ blend?: undefined;
497
+ despill?: undefined;
498
+ useColorkey?: undefined;
499
+ audioPath?: undefined;
500
+ clips?: undefined;
501
+ beatEffect?: undefined;
502
+ sensitivity?: undefined;
503
+ minBeatInterval?: undefined;
504
+ maxBeats?: undefined;
505
+ text?: undefined;
506
+ animation?: undefined;
507
+ startTime?: undefined;
508
+ duration?: undefined;
509
+ fontSize?: undefined;
510
+ fontColor?: undefined;
511
+ position?: undefined;
512
+ shadow?: undefined;
513
+ tracks?: undefined;
514
+ autoDuck?: undefined;
515
+ duckLevel?: undefined;
516
+ format?: undefined;
517
+ templateId?: undefined;
518
+ texts?: undefined;
519
+ musicPath?: undefined;
520
+ musicVolume?: undefined;
521
+ colorGrade?: undefined;
522
+ socialFormats?: undefined;
523
+ };
524
+ required: never[];
525
+ };
526
+ } | {
527
+ name: string;
528
+ description: string;
529
+ annotations: {
530
+ title: string;
531
+ readOnlyHint: boolean;
532
+ destructiveHint: boolean;
533
+ openWorldHint: boolean;
534
+ idempotentHint: boolean;
535
+ };
536
+ inputSchema: {
537
+ type: "object";
538
+ properties: {
539
+ templateId: {
540
+ type: string;
541
+ description: string;
542
+ enum: string[];
543
+ };
544
+ outputPath: {
545
+ type: string;
546
+ description: string;
547
+ };
548
+ clips: {
549
+ type: string;
550
+ description: string;
551
+ items?: undefined;
552
+ };
553
+ texts: {
554
+ type: string;
555
+ description: string;
556
+ };
557
+ musicPath: {
558
+ type: string;
559
+ description: string;
560
+ };
561
+ musicVolume: {
562
+ type: string;
563
+ description: string;
564
+ };
565
+ colorGrade: {
566
+ type: string;
567
+ description: string;
568
+ };
569
+ socialFormats: {
570
+ type: string;
571
+ description: string;
572
+ };
573
+ inputPath?: undefined;
574
+ preset?: undefined;
575
+ intensity?: undefined;
576
+ effect?: undefined;
577
+ background?: undefined;
578
+ keyColor?: undefined;
579
+ similarity?: undefined;
580
+ blend?: undefined;
581
+ despill?: undefined;
582
+ useColorkey?: undefined;
583
+ audioPath?: undefined;
584
+ beatEffect?: undefined;
585
+ sensitivity?: undefined;
586
+ minBeatInterval?: undefined;
587
+ maxBeats?: undefined;
588
+ text?: undefined;
589
+ animation?: undefined;
590
+ startTime?: undefined;
591
+ duration?: undefined;
592
+ fontSize?: undefined;
593
+ fontColor?: undefined;
594
+ position?: undefined;
595
+ shadow?: undefined;
596
+ tracks?: undefined;
597
+ autoDuck?: undefined;
598
+ duckLevel?: undefined;
599
+ format?: undefined;
600
+ category?: undefined;
601
+ };
602
+ required: string[];
603
+ };
604
+ } | {
605
+ name: string;
606
+ description: string;
607
+ annotations: {
608
+ title: string;
609
+ readOnlyHint: boolean;
610
+ destructiveHint: boolean;
611
+ openWorldHint: boolean;
612
+ idempotentHint: boolean;
613
+ };
614
+ inputSchema: {
615
+ type: "object";
616
+ properties: {
617
+ inputPath: {
618
+ type: string;
619
+ description: string;
620
+ };
621
+ outputPath: {
622
+ type: string;
623
+ description: string;
624
+ };
625
+ speed: {
626
+ type: string;
627
+ description: string;
628
+ };
629
+ audioMode: {
630
+ type: string;
631
+ enum: string[];
632
+ description: string;
633
+ };
634
+ brightness?: undefined;
635
+ contrast?: undefined;
636
+ saturation?: undefined;
637
+ gamma?: undefined;
638
+ temperature?: undefined;
639
+ effect?: undefined;
640
+ intensity?: undefined;
641
+ width?: undefined;
642
+ height?: undefined;
643
+ x?: undefined;
644
+ y?: undefined;
645
+ reverseAudio?: undefined;
646
+ format?: undefined;
647
+ bitrate?: undefined;
648
+ subtitlePath?: undefined;
649
+ fontSize?: undefined;
650
+ fontColor?: undefined;
651
+ outlineColor?: undefined;
652
+ outlineWidth?: undefined;
653
+ position?: undefined;
654
+ language?: undefined;
655
+ keepSrt?: undefined;
656
+ keyframes?: undefined;
657
+ outputWidth?: undefined;
658
+ outputHeight?: undefined;
659
+ mainVideo?: undefined;
660
+ overlayVideo?: undefined;
661
+ scale?: undefined;
662
+ startTime?: undefined;
663
+ endTime?: undefined;
664
+ borderWidth?: undefined;
665
+ borderColor?: undefined;
666
+ duckLevel?: undefined;
667
+ attack?: undefined;
668
+ release?: undefined;
669
+ };
670
+ required: string[];
671
+ };
672
+ } | {
673
+ name: string;
674
+ description: string;
675
+ annotations: {
676
+ title: string;
677
+ readOnlyHint: boolean;
678
+ destructiveHint: boolean;
679
+ openWorldHint: boolean;
680
+ idempotentHint: boolean;
681
+ };
682
+ inputSchema: {
683
+ type: "object";
684
+ properties: {
685
+ inputPath: {
686
+ type: string;
687
+ description: string;
688
+ };
689
+ outputPath: {
690
+ type: string;
691
+ description: string;
692
+ };
693
+ brightness: {
694
+ type: string;
695
+ description: string;
696
+ };
697
+ contrast: {
698
+ type: string;
699
+ description: string;
700
+ };
701
+ saturation: {
702
+ type: string;
703
+ description: string;
704
+ };
705
+ gamma: {
706
+ type: string;
707
+ description: string;
708
+ };
709
+ temperature: {
710
+ type: string;
711
+ description: string;
712
+ };
713
+ speed?: undefined;
714
+ audioMode?: undefined;
715
+ effect?: undefined;
716
+ intensity?: undefined;
717
+ width?: undefined;
718
+ height?: undefined;
719
+ x?: undefined;
720
+ y?: undefined;
721
+ reverseAudio?: undefined;
722
+ format?: undefined;
723
+ bitrate?: undefined;
724
+ subtitlePath?: undefined;
725
+ fontSize?: undefined;
726
+ fontColor?: undefined;
727
+ outlineColor?: undefined;
728
+ outlineWidth?: undefined;
729
+ position?: undefined;
730
+ language?: undefined;
731
+ keepSrt?: undefined;
732
+ keyframes?: undefined;
733
+ outputWidth?: undefined;
734
+ outputHeight?: undefined;
735
+ mainVideo?: undefined;
736
+ overlayVideo?: undefined;
737
+ scale?: undefined;
738
+ startTime?: undefined;
739
+ endTime?: undefined;
740
+ borderWidth?: undefined;
741
+ borderColor?: undefined;
742
+ duckLevel?: undefined;
743
+ attack?: undefined;
744
+ release?: undefined;
745
+ };
746
+ required: string[];
747
+ };
748
+ } | {
749
+ name: string;
750
+ description: string;
751
+ annotations: {
752
+ title: string;
753
+ readOnlyHint: boolean;
754
+ destructiveHint: boolean;
755
+ openWorldHint: boolean;
756
+ idempotentHint: boolean;
757
+ };
758
+ inputSchema: {
759
+ type: "object";
760
+ properties: {
761
+ inputPath: {
762
+ type: string;
763
+ description: string;
764
+ };
765
+ outputPath: {
766
+ type: string;
767
+ description: string;
768
+ };
769
+ effect: {
770
+ type: string;
771
+ enum: string[];
772
+ description: string;
773
+ };
774
+ intensity: {
775
+ type: string;
776
+ description: string;
777
+ };
778
+ speed?: undefined;
779
+ audioMode?: undefined;
780
+ brightness?: undefined;
781
+ contrast?: undefined;
782
+ saturation?: undefined;
783
+ gamma?: undefined;
784
+ temperature?: undefined;
785
+ width?: undefined;
786
+ height?: undefined;
787
+ x?: undefined;
788
+ y?: undefined;
789
+ reverseAudio?: undefined;
790
+ format?: undefined;
791
+ bitrate?: undefined;
792
+ subtitlePath?: undefined;
793
+ fontSize?: undefined;
794
+ fontColor?: undefined;
795
+ outlineColor?: undefined;
796
+ outlineWidth?: undefined;
797
+ position?: undefined;
798
+ language?: undefined;
799
+ keepSrt?: undefined;
800
+ keyframes?: undefined;
801
+ outputWidth?: undefined;
802
+ outputHeight?: undefined;
803
+ mainVideo?: undefined;
804
+ overlayVideo?: undefined;
805
+ scale?: undefined;
806
+ startTime?: undefined;
807
+ endTime?: undefined;
808
+ borderWidth?: undefined;
809
+ borderColor?: undefined;
810
+ duckLevel?: undefined;
811
+ attack?: undefined;
812
+ release?: undefined;
813
+ };
814
+ required: string[];
815
+ };
816
+ } | {
817
+ name: string;
818
+ description: string;
819
+ annotations: {
820
+ title: string;
821
+ readOnlyHint: boolean;
822
+ destructiveHint: boolean;
823
+ openWorldHint: boolean;
824
+ idempotentHint: boolean;
825
+ };
826
+ inputSchema: {
827
+ type: "object";
828
+ properties: {
829
+ inputPath: {
830
+ type: string;
831
+ description: string;
832
+ };
833
+ outputPath: {
834
+ type: string;
835
+ description: string;
836
+ };
837
+ width: {
838
+ type: string;
839
+ description: string;
840
+ };
841
+ height: {
842
+ type: string;
843
+ description: string;
844
+ };
845
+ x: {
846
+ type: string[];
847
+ description: string;
848
+ };
849
+ y: {
850
+ type: string[];
851
+ description: string;
852
+ };
853
+ speed?: undefined;
854
+ audioMode?: undefined;
855
+ brightness?: undefined;
856
+ contrast?: undefined;
857
+ saturation?: undefined;
858
+ gamma?: undefined;
859
+ temperature?: undefined;
860
+ effect?: undefined;
861
+ intensity?: undefined;
862
+ reverseAudio?: undefined;
863
+ format?: undefined;
864
+ bitrate?: undefined;
865
+ subtitlePath?: undefined;
866
+ fontSize?: undefined;
867
+ fontColor?: undefined;
868
+ outlineColor?: undefined;
869
+ outlineWidth?: undefined;
870
+ position?: undefined;
871
+ language?: undefined;
872
+ keepSrt?: undefined;
873
+ keyframes?: undefined;
874
+ outputWidth?: undefined;
875
+ outputHeight?: undefined;
876
+ mainVideo?: undefined;
877
+ overlayVideo?: undefined;
878
+ scale?: undefined;
879
+ startTime?: undefined;
880
+ endTime?: undefined;
881
+ borderWidth?: undefined;
882
+ borderColor?: undefined;
883
+ duckLevel?: undefined;
884
+ attack?: undefined;
885
+ release?: undefined;
886
+ };
887
+ required: string[];
888
+ };
889
+ } | {
890
+ name: string;
891
+ description: string;
892
+ annotations: {
893
+ title: string;
894
+ readOnlyHint: boolean;
895
+ destructiveHint: boolean;
896
+ openWorldHint: boolean;
897
+ idempotentHint: boolean;
898
+ };
899
+ inputSchema: {
900
+ type: "object";
901
+ properties: {
902
+ inputPath: {
903
+ type: string;
904
+ description: string;
905
+ };
906
+ outputPath: {
907
+ type: string;
908
+ description: string;
909
+ };
910
+ reverseAudio: {
911
+ type: string;
912
+ description: string;
913
+ };
914
+ speed?: undefined;
915
+ audioMode?: undefined;
916
+ brightness?: undefined;
917
+ contrast?: undefined;
918
+ saturation?: undefined;
919
+ gamma?: undefined;
920
+ temperature?: undefined;
921
+ effect?: undefined;
922
+ intensity?: undefined;
923
+ width?: undefined;
924
+ height?: undefined;
925
+ x?: undefined;
926
+ y?: undefined;
927
+ format?: undefined;
928
+ bitrate?: undefined;
929
+ subtitlePath?: undefined;
930
+ fontSize?: undefined;
931
+ fontColor?: undefined;
932
+ outlineColor?: undefined;
933
+ outlineWidth?: undefined;
934
+ position?: undefined;
935
+ language?: undefined;
936
+ keepSrt?: undefined;
937
+ keyframes?: undefined;
938
+ outputWidth?: undefined;
939
+ outputHeight?: undefined;
940
+ mainVideo?: undefined;
941
+ overlayVideo?: undefined;
942
+ scale?: undefined;
943
+ startTime?: undefined;
944
+ endTime?: undefined;
945
+ borderWidth?: undefined;
946
+ borderColor?: undefined;
947
+ duckLevel?: undefined;
948
+ attack?: undefined;
949
+ release?: undefined;
950
+ };
951
+ required: string[];
952
+ };
953
+ } | {
954
+ name: string;
955
+ description: string;
956
+ annotations: {
957
+ title: string;
958
+ readOnlyHint: boolean;
959
+ destructiveHint: boolean;
960
+ openWorldHint: boolean;
961
+ idempotentHint: boolean;
962
+ };
963
+ inputSchema: {
964
+ type: "object";
965
+ properties: {
966
+ inputPath: {
967
+ type: string;
968
+ description: string;
969
+ };
970
+ outputPath: {
971
+ type: string;
972
+ description: string;
973
+ };
974
+ format: {
975
+ type: string;
976
+ enum: string[];
977
+ description: string;
978
+ };
979
+ bitrate: {
980
+ type: string;
981
+ description: string;
982
+ };
983
+ speed?: undefined;
984
+ audioMode?: undefined;
985
+ brightness?: undefined;
986
+ contrast?: undefined;
987
+ saturation?: undefined;
988
+ gamma?: undefined;
989
+ temperature?: undefined;
990
+ effect?: undefined;
991
+ intensity?: undefined;
992
+ width?: undefined;
993
+ height?: undefined;
994
+ x?: undefined;
995
+ y?: undefined;
996
+ reverseAudio?: undefined;
997
+ subtitlePath?: undefined;
998
+ fontSize?: undefined;
999
+ fontColor?: undefined;
1000
+ outlineColor?: undefined;
1001
+ outlineWidth?: undefined;
1002
+ position?: undefined;
1003
+ language?: undefined;
1004
+ keepSrt?: undefined;
1005
+ keyframes?: undefined;
1006
+ outputWidth?: undefined;
1007
+ outputHeight?: undefined;
1008
+ mainVideo?: undefined;
1009
+ overlayVideo?: undefined;
1010
+ scale?: undefined;
1011
+ startTime?: undefined;
1012
+ endTime?: undefined;
1013
+ borderWidth?: undefined;
1014
+ borderColor?: undefined;
1015
+ duckLevel?: undefined;
1016
+ attack?: undefined;
1017
+ release?: undefined;
1018
+ };
1019
+ required: string[];
1020
+ };
1021
+ } | {
1022
+ name: string;
1023
+ description: string;
1024
+ annotations: {
1025
+ title: string;
1026
+ readOnlyHint: boolean;
1027
+ destructiveHint: boolean;
1028
+ openWorldHint: boolean;
1029
+ idempotentHint: boolean;
1030
+ };
1031
+ inputSchema: {
1032
+ type: "object";
1033
+ properties: {
1034
+ inputPath: {
1035
+ type: string;
1036
+ description: string;
1037
+ };
1038
+ outputPath: {
1039
+ type: string;
1040
+ description: string;
1041
+ };
1042
+ subtitlePath: {
1043
+ type: string;
1044
+ description: string;
1045
+ };
1046
+ fontSize: {
1047
+ type: string;
1048
+ description: string;
1049
+ };
1050
+ fontColor: {
1051
+ type: string;
1052
+ description: string;
1053
+ };
1054
+ outlineColor: {
1055
+ type: string;
1056
+ description: string;
1057
+ };
1058
+ outlineWidth: {
1059
+ type: string;
1060
+ description: string;
1061
+ };
1062
+ position: {
1063
+ type: string;
1064
+ enum: string[];
1065
+ description: string;
1066
+ };
1067
+ speed?: undefined;
1068
+ audioMode?: undefined;
1069
+ brightness?: undefined;
1070
+ contrast?: undefined;
1071
+ saturation?: undefined;
1072
+ gamma?: undefined;
1073
+ temperature?: undefined;
1074
+ effect?: undefined;
1075
+ intensity?: undefined;
1076
+ width?: undefined;
1077
+ height?: undefined;
1078
+ x?: undefined;
1079
+ y?: undefined;
1080
+ reverseAudio?: undefined;
1081
+ format?: undefined;
1082
+ bitrate?: undefined;
1083
+ language?: undefined;
1084
+ keepSrt?: undefined;
1085
+ keyframes?: undefined;
1086
+ outputWidth?: undefined;
1087
+ outputHeight?: undefined;
1088
+ mainVideo?: undefined;
1089
+ overlayVideo?: undefined;
1090
+ scale?: undefined;
1091
+ startTime?: undefined;
1092
+ endTime?: undefined;
1093
+ borderWidth?: undefined;
1094
+ borderColor?: undefined;
1095
+ duckLevel?: undefined;
1096
+ attack?: undefined;
1097
+ release?: undefined;
1098
+ };
1099
+ required: string[];
1100
+ };
1101
+ } | {
1102
+ name: string;
1103
+ description: string;
1104
+ annotations: {
1105
+ title: string;
1106
+ readOnlyHint: boolean;
1107
+ destructiveHint: boolean;
1108
+ openWorldHint: boolean;
1109
+ idempotentHint: boolean;
1110
+ };
1111
+ inputSchema: {
1112
+ type: "object";
1113
+ properties: {
1114
+ inputPath: {
1115
+ type: string;
1116
+ description: string;
1117
+ };
1118
+ outputPath: {
1119
+ type: string;
1120
+ description: string;
1121
+ };
1122
+ language: {
1123
+ type: string;
1124
+ description: string;
1125
+ };
1126
+ fontSize: {
1127
+ type: string;
1128
+ description: string;
1129
+ };
1130
+ position: {
1131
+ type: string;
1132
+ enum: string[];
1133
+ description: string;
1134
+ };
1135
+ keepSrt: {
1136
+ type: string;
1137
+ description: string;
1138
+ };
1139
+ speed?: undefined;
1140
+ audioMode?: undefined;
1141
+ brightness?: undefined;
1142
+ contrast?: undefined;
1143
+ saturation?: undefined;
1144
+ gamma?: undefined;
1145
+ temperature?: undefined;
1146
+ effect?: undefined;
1147
+ intensity?: undefined;
1148
+ width?: undefined;
1149
+ height?: undefined;
1150
+ x?: undefined;
1151
+ y?: undefined;
1152
+ reverseAudio?: undefined;
1153
+ format?: undefined;
1154
+ bitrate?: undefined;
1155
+ subtitlePath?: undefined;
1156
+ fontColor?: undefined;
1157
+ outlineColor?: undefined;
1158
+ outlineWidth?: undefined;
1159
+ keyframes?: undefined;
1160
+ outputWidth?: undefined;
1161
+ outputHeight?: undefined;
1162
+ mainVideo?: undefined;
1163
+ overlayVideo?: undefined;
1164
+ scale?: undefined;
1165
+ startTime?: undefined;
1166
+ endTime?: undefined;
1167
+ borderWidth?: undefined;
1168
+ borderColor?: undefined;
1169
+ duckLevel?: undefined;
1170
+ attack?: undefined;
1171
+ release?: undefined;
1172
+ };
1173
+ required: string[];
1174
+ };
1175
+ } | {
1176
+ name: string;
1177
+ description: string;
1178
+ annotations: {
1179
+ title: string;
1180
+ readOnlyHint: boolean;
1181
+ destructiveHint: boolean;
1182
+ openWorldHint: boolean;
1183
+ idempotentHint: boolean;
1184
+ };
1185
+ inputSchema: {
1186
+ type: "object";
1187
+ properties: {
1188
+ inputPath: {
1189
+ type: string;
1190
+ description: string;
1191
+ };
1192
+ outputPath: {
1193
+ type: string;
1194
+ description: string;
1195
+ };
1196
+ keyframes: {
1197
+ type: string;
1198
+ items: {
1199
+ type: string;
1200
+ properties: {
1201
+ time: {
1202
+ type: string;
1203
+ description: string;
1204
+ };
1205
+ scale: {
1206
+ type: string;
1207
+ description: string;
1208
+ };
1209
+ panX: {
1210
+ type: string;
1211
+ description: string;
1212
+ };
1213
+ panY: {
1214
+ type: string;
1215
+ description: string;
1216
+ };
1217
+ };
1218
+ required: string[];
1219
+ };
1220
+ description: string;
1221
+ };
1222
+ outputWidth: {
1223
+ type: string;
1224
+ description: string;
1225
+ };
1226
+ outputHeight: {
1227
+ type: string;
1228
+ description: string;
1229
+ };
1230
+ speed?: undefined;
1231
+ audioMode?: undefined;
1232
+ brightness?: undefined;
1233
+ contrast?: undefined;
1234
+ saturation?: undefined;
1235
+ gamma?: undefined;
1236
+ temperature?: undefined;
1237
+ effect?: undefined;
1238
+ intensity?: undefined;
1239
+ width?: undefined;
1240
+ height?: undefined;
1241
+ x?: undefined;
1242
+ y?: undefined;
1243
+ reverseAudio?: undefined;
1244
+ format?: undefined;
1245
+ bitrate?: undefined;
1246
+ subtitlePath?: undefined;
1247
+ fontSize?: undefined;
1248
+ fontColor?: undefined;
1249
+ outlineColor?: undefined;
1250
+ outlineWidth?: undefined;
1251
+ position?: undefined;
1252
+ language?: undefined;
1253
+ keepSrt?: undefined;
1254
+ mainVideo?: undefined;
1255
+ overlayVideo?: undefined;
1256
+ scale?: undefined;
1257
+ startTime?: undefined;
1258
+ endTime?: undefined;
1259
+ borderWidth?: undefined;
1260
+ borderColor?: undefined;
1261
+ duckLevel?: undefined;
1262
+ attack?: undefined;
1263
+ release?: undefined;
1264
+ };
1265
+ required: string[];
1266
+ };
1267
+ } | {
1268
+ name: string;
1269
+ description: string;
1270
+ annotations: {
1271
+ title: string;
1272
+ readOnlyHint: boolean;
1273
+ destructiveHint: boolean;
1274
+ openWorldHint: boolean;
1275
+ idempotentHint: boolean;
1276
+ };
1277
+ inputSchema: {
1278
+ type: "object";
1279
+ properties: {
1280
+ mainVideo: {
1281
+ type: string;
1282
+ description: string;
1283
+ };
1284
+ overlayVideo: {
1285
+ type: string;
1286
+ description: string;
1287
+ };
1288
+ outputPath: {
1289
+ type: string;
1290
+ description: string;
1291
+ };
1292
+ position: {
1293
+ type: string;
1294
+ enum: string[];
1295
+ description: string;
1296
+ };
1297
+ scale: {
1298
+ type: string;
1299
+ description: string;
1300
+ };
1301
+ startTime: {
1302
+ type: string;
1303
+ description: string;
1304
+ };
1305
+ endTime: {
1306
+ type: string;
1307
+ description: string;
1308
+ };
1309
+ borderWidth: {
1310
+ type: string;
1311
+ description: string;
1312
+ };
1313
+ borderColor: {
1314
+ type: string;
1315
+ description: string;
1316
+ };
1317
+ inputPath?: undefined;
1318
+ speed?: undefined;
1319
+ audioMode?: undefined;
1320
+ brightness?: undefined;
1321
+ contrast?: undefined;
1322
+ saturation?: undefined;
1323
+ gamma?: undefined;
1324
+ temperature?: undefined;
1325
+ effect?: undefined;
1326
+ intensity?: undefined;
1327
+ width?: undefined;
1328
+ height?: undefined;
1329
+ x?: undefined;
1330
+ y?: undefined;
1331
+ reverseAudio?: undefined;
1332
+ format?: undefined;
1333
+ bitrate?: undefined;
1334
+ subtitlePath?: undefined;
1335
+ fontSize?: undefined;
1336
+ fontColor?: undefined;
1337
+ outlineColor?: undefined;
1338
+ outlineWidth?: undefined;
1339
+ language?: undefined;
1340
+ keepSrt?: undefined;
1341
+ keyframes?: undefined;
1342
+ outputWidth?: undefined;
1343
+ outputHeight?: undefined;
1344
+ duckLevel?: undefined;
1345
+ attack?: undefined;
1346
+ release?: undefined;
1347
+ };
1348
+ required: string[];
1349
+ };
1350
+ } | {
1351
+ name: string;
1352
+ description: string;
1353
+ annotations: {
1354
+ title: string;
1355
+ readOnlyHint: boolean;
1356
+ destructiveHint: boolean;
1357
+ openWorldHint: boolean;
1358
+ idempotentHint: boolean;
1359
+ };
1360
+ inputSchema: {
1361
+ type: "object";
1362
+ properties: {
1363
+ inputPath: {
1364
+ type: string;
1365
+ description: string;
1366
+ };
1367
+ outputPath: {
1368
+ type: string;
1369
+ description: string;
1370
+ };
1371
+ duckLevel: {
1372
+ type: string;
1373
+ description: string;
1374
+ };
1375
+ attack: {
1376
+ type: string;
1377
+ description: string;
1378
+ };
1379
+ release: {
1380
+ type: string;
1381
+ description: string;
1382
+ };
1383
+ speed?: undefined;
1384
+ audioMode?: undefined;
1385
+ brightness?: undefined;
1386
+ contrast?: undefined;
1387
+ saturation?: undefined;
1388
+ gamma?: undefined;
1389
+ temperature?: undefined;
1390
+ effect?: undefined;
1391
+ intensity?: undefined;
1392
+ width?: undefined;
1393
+ height?: undefined;
1394
+ x?: undefined;
1395
+ y?: undefined;
1396
+ reverseAudio?: undefined;
1397
+ format?: undefined;
1398
+ bitrate?: undefined;
1399
+ subtitlePath?: undefined;
1400
+ fontSize?: undefined;
1401
+ fontColor?: undefined;
1402
+ outlineColor?: undefined;
1403
+ outlineWidth?: undefined;
1404
+ position?: undefined;
1405
+ language?: undefined;
1406
+ keepSrt?: undefined;
1407
+ keyframes?: undefined;
1408
+ outputWidth?: undefined;
1409
+ outputHeight?: undefined;
1410
+ mainVideo?: undefined;
1411
+ overlayVideo?: undefined;
1412
+ scale?: undefined;
1413
+ startTime?: undefined;
1414
+ endTime?: undefined;
1415
+ borderWidth?: undefined;
1416
+ borderColor?: undefined;
1417
+ };
1418
+ required: string[];
1419
+ };
1420
+ } | {
1421
+ name: string;
1422
+ description: string;
1423
+ annotations: {
1424
+ title: string;
1425
+ readOnlyHint: boolean;
1426
+ destructiveHint: boolean;
1427
+ openWorldHint: boolean;
1428
+ idempotentHint: boolean;
1429
+ };
1430
+ inputSchema: {
1431
+ type: "object";
1432
+ properties: {
1433
+ url: {
1434
+ type: string;
1435
+ description: string;
1436
+ };
1437
+ outputPath: {
1438
+ type: string;
1439
+ description: string;
1440
+ };
1441
+ viewport: {
1442
+ type: string;
1443
+ enum: string[];
1444
+ description: string;
1445
+ };
1446
+ fps: {
1447
+ type: string;
1448
+ description: string;
1449
+ };
1450
+ scenes: {
1451
+ type: string;
1452
+ items: {
1453
+ type: "object";
1454
+ properties: {
1455
+ type: {
1456
+ type: string;
1457
+ enum: string[];
1458
+ description: string;
1459
+ };
1460
+ to: {
1461
+ type: string[];
1462
+ description: string;
1463
+ };
1464
+ duration: {
1465
+ type: string;
1466
+ description: string;
1467
+ };
1468
+ easing: {
1469
+ type: string;
1470
+ enum: string[];
1471
+ description: string;
1472
+ };
1473
+ selector: {
1474
+ type: string;
1475
+ description: string;
1476
+ };
1477
+ text: {
1478
+ type: string;
1479
+ description: string;
1480
+ };
1481
+ delay: {
1482
+ type: string;
1483
+ description: string;
1484
+ };
1485
+ waitFor: {
1486
+ type: string[];
1487
+ description: string;
1488
+ };
1489
+ pauseAfter: {
1490
+ type: string;
1491
+ description: string;
1492
+ };
1493
+ animateCursor: {
1494
+ type: string;
1495
+ description: string;
1496
+ };
1497
+ timeout: {
1498
+ type: string;
1499
+ description: string;
1500
+ };
1501
+ };
1502
+ required: string[];
1503
+ };
1504
+ description: string;
1505
+ };
1506
+ cursor: {
1507
+ type: string;
1508
+ properties: {
1509
+ enabled: {
1510
+ type: string;
1511
+ description: string;
1512
+ };
1513
+ style: {
1514
+ type: string;
1515
+ enum: string[];
1516
+ description: string;
1517
+ };
1518
+ color: {
1519
+ type: string;
1520
+ description: string;
1521
+ };
1522
+ size: {
1523
+ type: string;
1524
+ description: string;
1525
+ };
1526
+ };
1527
+ description: string;
1528
+ };
1529
+ codec: {
1530
+ type: string;
1531
+ enum: string[];
1532
+ description: string;
1533
+ };
1534
+ quality: {
1535
+ type: string;
1536
+ description: string;
1537
+ };
1538
+ darkMode: {
1539
+ type: string;
1540
+ description: string;
1541
+ };
1542
+ preloadContent: {
1543
+ type: string;
1544
+ description: string;
1545
+ };
1546
+ dismissOverlays: {
1547
+ type: string;
1548
+ description: string;
1549
+ };
1550
+ duration?: undefined;
1551
+ easing?: undefined;
1552
+ devices?: undefined;
1553
+ outputDir?: undefined;
1554
+ };
1555
+ required: string[];
1556
+ };
1557
+ } | {
1558
+ name: string;
1559
+ description: string;
1560
+ annotations: {
1561
+ title: string;
1562
+ readOnlyHint: boolean;
1563
+ destructiveHint: boolean;
1564
+ openWorldHint: boolean;
1565
+ idempotentHint: boolean;
1566
+ };
1567
+ inputSchema: {
1568
+ type: "object";
1569
+ properties: {
1570
+ url: {
1571
+ type: string;
1572
+ description: string;
1573
+ };
1574
+ duration: {
1575
+ type: string;
1576
+ description: string;
1577
+ };
1578
+ viewport: {
1579
+ type: string;
1580
+ enum: string[];
1581
+ description: string;
1582
+ };
1583
+ easing: {
1584
+ type: string;
1585
+ enum: string[];
1586
+ description: string;
1587
+ };
1588
+ outputPath: {
1589
+ type: string;
1590
+ description: string;
1591
+ };
1592
+ fps?: undefined;
1593
+ scenes?: undefined;
1594
+ cursor?: undefined;
1595
+ codec?: undefined;
1596
+ quality?: undefined;
1597
+ darkMode?: undefined;
1598
+ preloadContent?: undefined;
1599
+ dismissOverlays?: undefined;
1600
+ devices?: undefined;
1601
+ outputDir?: undefined;
1602
+ };
1603
+ required: string[];
1604
+ };
1605
+ } | {
1606
+ name: string;
1607
+ description: string;
1608
+ annotations: {
1609
+ title: string;
1610
+ readOnlyHint: boolean;
1611
+ destructiveHint: boolean;
1612
+ openWorldHint: boolean;
1613
+ idempotentHint: boolean;
1614
+ };
1615
+ inputSchema: {
1616
+ type: "object";
1617
+ properties: {
1618
+ url: {
1619
+ type: string;
1620
+ description: string;
1621
+ };
1622
+ devices: {
1623
+ type: string;
1624
+ items: {
1625
+ type: string;
1626
+ enum: string[];
1627
+ };
1628
+ description: string;
1629
+ };
1630
+ duration: {
1631
+ type: string;
1632
+ description: string;
1633
+ };
1634
+ outputDir: {
1635
+ type: string;
1636
+ description: string;
1637
+ };
1638
+ outputPath?: undefined;
1639
+ viewport?: undefined;
1640
+ fps?: undefined;
1641
+ scenes?: undefined;
1642
+ cursor?: undefined;
1643
+ codec?: undefined;
1644
+ quality?: undefined;
1645
+ darkMode?: undefined;
1646
+ preloadContent?: undefined;
1647
+ dismissOverlays?: undefined;
1648
+ easing?: undefined;
1649
+ };
1650
+ required: string[];
1651
+ };
1652
+ } | {
1653
+ name: string;
1654
+ description: string;
1655
+ annotations: {
1656
+ title: string;
1657
+ readOnlyHint: boolean;
1658
+ destructiveHint: boolean;
1659
+ openWorldHint: boolean;
1660
+ idempotentHint: boolean;
1661
+ };
1662
+ inputSchema: {
1663
+ type: "object";
1664
+ properties: {
1665
+ videoPath: {
1666
+ type: string;
1667
+ description: string;
1668
+ };
1669
+ musicPath: {
1670
+ type: string;
1671
+ description: string;
1672
+ };
1673
+ outputPath: {
1674
+ type: string;
1675
+ description: string;
1676
+ };
1677
+ musicVolume: {
1678
+ type: string;
1679
+ description: string;
1680
+ };
1681
+ fadeInDuration: {
1682
+ type: string;
1683
+ description: string;
1684
+ };
1685
+ fadeOutDuration: {
1686
+ type: string;
1687
+ description: string;
1688
+ };
1689
+ loopMusic: {
1690
+ type: string;
1691
+ description: string;
1692
+ };
1693
+ clips?: undefined;
1694
+ transition?: undefined;
1695
+ transitionDuration?: undefined;
1696
+ text?: undefined;
1697
+ subtitle?: undefined;
1698
+ duration?: undefined;
1699
+ backgroundColor?: undefined;
1700
+ textColor?: undefined;
1701
+ inputPath?: undefined;
1702
+ format?: undefined;
1703
+ strategy?: undefined;
1704
+ outputDir?: undefined;
1705
+ formats?: undefined;
1706
+ overlays?: undefined;
1707
+ };
1708
+ required: string[];
1709
+ };
1710
+ } | {
1711
+ name: string;
1712
+ description: string;
1713
+ annotations: {
1714
+ title: string;
1715
+ readOnlyHint: boolean;
1716
+ destructiveHint: boolean;
1717
+ openWorldHint: boolean;
1718
+ idempotentHint: boolean;
1719
+ };
1720
+ inputSchema: {
1721
+ type: "object";
1722
+ properties: {
1723
+ clips: {
1724
+ type: string;
1725
+ items: {
1726
+ type: string;
1727
+ properties: {
1728
+ path: {
1729
+ type: string;
1730
+ description: string;
1731
+ };
1732
+ trimStart: {
1733
+ type: string;
1734
+ description: string;
1735
+ };
1736
+ trimEnd: {
1737
+ type: string;
1738
+ description: string;
1739
+ };
1740
+ };
1741
+ required: string[];
1742
+ };
1743
+ description: string;
1744
+ };
1745
+ outputPath: {
1746
+ type: string;
1747
+ description: string;
1748
+ };
1749
+ transition: {
1750
+ type: string;
1751
+ enum: string[];
1752
+ description: string;
1753
+ };
1754
+ transitionDuration: {
1755
+ type: string;
1756
+ description: string;
1757
+ };
1758
+ videoPath?: undefined;
1759
+ musicPath?: undefined;
1760
+ musicVolume?: undefined;
1761
+ fadeInDuration?: undefined;
1762
+ fadeOutDuration?: undefined;
1763
+ loopMusic?: undefined;
1764
+ text?: undefined;
1765
+ subtitle?: undefined;
1766
+ duration?: undefined;
1767
+ backgroundColor?: undefined;
1768
+ textColor?: undefined;
1769
+ inputPath?: undefined;
1770
+ format?: undefined;
1771
+ strategy?: undefined;
1772
+ outputDir?: undefined;
1773
+ formats?: undefined;
1774
+ overlays?: undefined;
1775
+ };
1776
+ required: string[];
1777
+ };
1778
+ } | {
1779
+ name: string;
1780
+ description: string;
1781
+ annotations: {
1782
+ title: string;
1783
+ readOnlyHint: boolean;
1784
+ destructiveHint: boolean;
1785
+ openWorldHint: boolean;
1786
+ idempotentHint: boolean;
1787
+ };
1788
+ inputSchema: {
1789
+ type: "object";
1790
+ properties: {
1791
+ text: {
1792
+ type: string;
1793
+ description: string;
1794
+ };
1795
+ subtitle: {
1796
+ type: string;
1797
+ description: string;
1798
+ };
1799
+ duration: {
1800
+ type: string;
1801
+ description: string;
1802
+ };
1803
+ backgroundColor: {
1804
+ type: string;
1805
+ description: string;
1806
+ };
1807
+ textColor: {
1808
+ type: string;
1809
+ description: string;
1810
+ };
1811
+ outputPath: {
1812
+ type: string;
1813
+ description: string;
1814
+ };
1815
+ videoPath?: undefined;
1816
+ musicPath?: undefined;
1817
+ musicVolume?: undefined;
1818
+ fadeInDuration?: undefined;
1819
+ fadeOutDuration?: undefined;
1820
+ loopMusic?: undefined;
1821
+ clips?: undefined;
1822
+ transition?: undefined;
1823
+ transitionDuration?: undefined;
1824
+ inputPath?: undefined;
1825
+ format?: undefined;
1826
+ strategy?: undefined;
1827
+ outputDir?: undefined;
1828
+ formats?: undefined;
1829
+ overlays?: undefined;
1830
+ };
1831
+ required: string[];
1832
+ };
1833
+ } | {
1834
+ name: string;
1835
+ description: string;
1836
+ annotations: {
1837
+ title: string;
1838
+ readOnlyHint: boolean;
1839
+ destructiveHint: boolean;
1840
+ openWorldHint: boolean;
1841
+ idempotentHint: boolean;
1842
+ };
1843
+ inputSchema: {
1844
+ type: "object";
1845
+ properties: {
1846
+ inputPath: {
1847
+ type: string;
1848
+ description: string;
1849
+ };
1850
+ outputPath: {
1851
+ type: string;
1852
+ description: string;
1853
+ };
1854
+ format: {
1855
+ type: string;
1856
+ enum: string[];
1857
+ description: string;
1858
+ };
1859
+ strategy: {
1860
+ type: string;
1861
+ enum: string[];
1862
+ description: string;
1863
+ };
1864
+ videoPath?: undefined;
1865
+ musicPath?: undefined;
1866
+ musicVolume?: undefined;
1867
+ fadeInDuration?: undefined;
1868
+ fadeOutDuration?: undefined;
1869
+ loopMusic?: undefined;
1870
+ clips?: undefined;
1871
+ transition?: undefined;
1872
+ transitionDuration?: undefined;
1873
+ text?: undefined;
1874
+ subtitle?: undefined;
1875
+ duration?: undefined;
1876
+ backgroundColor?: undefined;
1877
+ textColor?: undefined;
1878
+ outputDir?: undefined;
1879
+ formats?: undefined;
1880
+ overlays?: undefined;
1881
+ };
1882
+ required: string[];
1883
+ };
1884
+ } | {
1885
+ name: string;
1886
+ description: string;
1887
+ annotations: {
1888
+ title: string;
1889
+ readOnlyHint: boolean;
1890
+ destructiveHint: boolean;
1891
+ openWorldHint: boolean;
1892
+ idempotentHint: boolean;
1893
+ };
1894
+ inputSchema: {
1895
+ type: "object";
1896
+ properties: {
1897
+ inputPath: {
1898
+ type: string;
1899
+ description: string;
1900
+ };
1901
+ outputDir: {
1902
+ type: string;
1903
+ description: string;
1904
+ };
1905
+ formats: {
1906
+ type: string;
1907
+ items: {
1908
+ type: string;
1909
+ enum: string[];
1910
+ };
1911
+ description: string;
1912
+ };
1913
+ strategy: {
1914
+ type: string;
1915
+ enum: string[];
1916
+ description: string;
1917
+ };
1918
+ videoPath?: undefined;
1919
+ musicPath?: undefined;
1920
+ outputPath?: undefined;
1921
+ musicVolume?: undefined;
1922
+ fadeInDuration?: undefined;
1923
+ fadeOutDuration?: undefined;
1924
+ loopMusic?: undefined;
1925
+ clips?: undefined;
1926
+ transition?: undefined;
1927
+ transitionDuration?: undefined;
1928
+ text?: undefined;
1929
+ subtitle?: undefined;
1930
+ duration?: undefined;
1931
+ backgroundColor?: undefined;
1932
+ textColor?: undefined;
1933
+ format?: undefined;
1934
+ overlays?: undefined;
1935
+ };
1936
+ required: string[];
1937
+ };
1938
+ } | {
1939
+ name: string;
1940
+ description: string;
1941
+ annotations: {
1942
+ title: string;
1943
+ readOnlyHint: boolean;
1944
+ destructiveHint: boolean;
1945
+ openWorldHint: boolean;
1946
+ idempotentHint: boolean;
1947
+ };
1948
+ inputSchema: {
1949
+ type: "object";
1950
+ properties: {
1951
+ inputPath: {
1952
+ type: string;
1953
+ description: string;
1954
+ };
1955
+ outputPath: {
1956
+ type: string;
1957
+ description: string;
1958
+ };
1959
+ overlays: {
1960
+ type: string;
1961
+ items: {
1962
+ type: string;
1963
+ properties: {
1964
+ text: {
1965
+ type: string;
1966
+ description: string;
1967
+ };
1968
+ position: {
1969
+ type: string;
1970
+ enum: string[];
1971
+ description: string;
1972
+ };
1973
+ fontSize: {
1974
+ type: string;
1975
+ description: string;
1976
+ };
1977
+ fontColor: {
1978
+ type: string;
1979
+ description: string;
1980
+ };
1981
+ startTime: {
1982
+ type: string;
1983
+ description: string;
1984
+ };
1985
+ endTime: {
1986
+ type: string;
1987
+ description: string;
1988
+ };
1989
+ fadeIn: {
1990
+ type: string;
1991
+ description: string;
1992
+ };
1993
+ fadeOut: {
1994
+ type: string;
1995
+ description: string;
1996
+ };
1997
+ showBackground: {
1998
+ type: string;
1999
+ description: string;
2000
+ };
2001
+ };
2002
+ required: string[];
2003
+ };
2004
+ description: string;
2005
+ };
2006
+ videoPath?: undefined;
2007
+ musicPath?: undefined;
2008
+ musicVolume?: undefined;
2009
+ fadeInDuration?: undefined;
2010
+ fadeOutDuration?: undefined;
2011
+ loopMusic?: undefined;
2012
+ clips?: undefined;
2013
+ transition?: undefined;
2014
+ transitionDuration?: undefined;
2015
+ text?: undefined;
2016
+ subtitle?: undefined;
2017
+ duration?: undefined;
2018
+ backgroundColor?: undefined;
2019
+ textColor?: undefined;
2020
+ format?: undefined;
2021
+ strategy?: undefined;
2022
+ outputDir?: undefined;
2023
+ formats?: undefined;
2024
+ };
2025
+ required: string[];
2026
+ };
2027
+ } | {
2028
+ name: string;
2029
+ description: string;
2030
+ annotations: {
2031
+ title: string;
2032
+ readOnlyHint: boolean;
2033
+ destructiveHint: boolean;
2034
+ openWorldHint: boolean;
2035
+ idempotentHint: boolean;
2036
+ };
2037
+ inputSchema: {
2038
+ type: "object";
2039
+ properties: {
2040
+ text: {
2041
+ type: string;
2042
+ description: string;
2043
+ };
2044
+ outputPath: {
2045
+ type: string;
2046
+ description: string;
2047
+ };
2048
+ provider: {
2049
+ type: string;
2050
+ enum: string[];
2051
+ description: string;
2052
+ };
2053
+ language: {
2054
+ type: string;
2055
+ description: string;
2056
+ };
2057
+ speed: {
2058
+ type: string;
2059
+ description: string;
2060
+ };
2061
+ elevenLabsVoice: {
2062
+ type: string;
2063
+ enum: string[];
2064
+ description: string;
2065
+ };
2066
+ elevenLabsModel: {
2067
+ type: string;
2068
+ enum: string[];
2069
+ description: string;
2070
+ };
2071
+ openaiVoice: {
2072
+ type: string;
2073
+ enum: string[];
2074
+ description: string;
2075
+ };
2076
+ openaiModel: {
2077
+ type: string;
2078
+ enum: string[];
2079
+ description: string;
2080
+ };
2081
+ stability: {
2082
+ type: string;
2083
+ description: string;
2084
+ };
2085
+ similarityBoost: {
2086
+ type: string;
2087
+ description: string;
2088
+ };
2089
+ url?: undefined;
2090
+ segments?: undefined;
2091
+ viewport?: undefined;
2092
+ backgroundMusicPath?: undefined;
2093
+ backgroundMusicVolume?: undefined;
2094
+ };
2095
+ required: string[];
2096
+ };
2097
+ } | {
2098
+ name: string;
2099
+ description: string;
2100
+ annotations: {
2101
+ title: string;
2102
+ readOnlyHint: boolean;
2103
+ destructiveHint: boolean;
2104
+ openWorldHint: boolean;
2105
+ idempotentHint: boolean;
2106
+ };
2107
+ inputSchema: {
2108
+ type: "object";
2109
+ properties: {
2110
+ text?: undefined;
2111
+ outputPath?: undefined;
2112
+ provider?: undefined;
2113
+ language?: undefined;
2114
+ speed?: undefined;
2115
+ elevenLabsVoice?: undefined;
2116
+ elevenLabsModel?: undefined;
2117
+ openaiVoice?: undefined;
2118
+ openaiModel?: undefined;
2119
+ stability?: undefined;
2120
+ similarityBoost?: undefined;
2121
+ url?: undefined;
2122
+ segments?: undefined;
2123
+ viewport?: undefined;
2124
+ backgroundMusicPath?: undefined;
2125
+ backgroundMusicVolume?: undefined;
2126
+ };
2127
+ required: never[];
2128
+ };
2129
+ } | {
2130
+ name: string;
2131
+ description: string;
2132
+ annotations: {
2133
+ title: string;
2134
+ readOnlyHint: boolean;
2135
+ destructiveHint: boolean;
2136
+ openWorldHint: boolean;
2137
+ idempotentHint: boolean;
2138
+ };
2139
+ inputSchema: {
2140
+ type: "object";
2141
+ properties: {
2142
+ url: {
2143
+ type: string;
2144
+ description: string;
2145
+ };
2146
+ segments: {
2147
+ type: string;
2148
+ items: {
2149
+ type: string;
2150
+ properties: {
2151
+ text: {
2152
+ type: string;
2153
+ description: string;
2154
+ };
2155
+ scene: {
2156
+ type: "object";
2157
+ properties: {
2158
+ type: {
2159
+ type: string;
2160
+ enum: string[];
2161
+ };
2162
+ to: {
2163
+ type: string[];
2164
+ };
2165
+ duration: {
2166
+ type: string;
2167
+ };
2168
+ easing: {
2169
+ type: string;
2170
+ };
2171
+ selector: {
2172
+ type: string;
2173
+ };
2174
+ text: {
2175
+ type: string;
2176
+ };
2177
+ waitFor: {
2178
+ type: string[];
2179
+ };
2180
+ pauseAfter: {
2181
+ type: string;
2182
+ };
2183
+ };
2184
+ required: string[];
2185
+ };
2186
+ paddingAfter: {
2187
+ type: string;
2188
+ description: string;
2189
+ };
2190
+ };
2191
+ required: string[];
2192
+ };
2193
+ description: string;
2194
+ };
2195
+ outputPath: {
2196
+ type: string;
2197
+ description: string;
2198
+ };
2199
+ provider: {
2200
+ type: string;
2201
+ enum: string[];
2202
+ description: string;
2203
+ };
2204
+ language: {
2205
+ type: string;
2206
+ description: string;
2207
+ };
2208
+ viewport: {
2209
+ type: string;
2210
+ enum: string[];
2211
+ description: string;
2212
+ };
2213
+ elevenLabsVoice: {
2214
+ type: string;
2215
+ enum: string[];
2216
+ description: string;
2217
+ };
2218
+ openaiVoice: {
2219
+ type: string;
2220
+ enum: string[];
2221
+ description: string;
2222
+ };
2223
+ speed: {
2224
+ type: string;
2225
+ description: string;
2226
+ };
2227
+ backgroundMusicPath: {
2228
+ type: string;
2229
+ description: string;
2230
+ };
2231
+ backgroundMusicVolume: {
2232
+ type: string;
2233
+ description: string;
2234
+ };
2235
+ text?: undefined;
2236
+ elevenLabsModel?: undefined;
2237
+ openaiModel?: undefined;
2238
+ stability?: undefined;
2239
+ similarityBoost?: undefined;
2240
+ };
2241
+ required: string[];
2242
+ };
2243
+ } | {
2244
+ name: string;
2245
+ description: string;
2246
+ annotations: {
2247
+ title: string;
2248
+ readOnlyHint: boolean;
2249
+ destructiveHint: boolean;
2250
+ openWorldHint: boolean;
2251
+ idempotentHint: boolean;
2252
+ };
2253
+ inputSchema: {
2254
+ type: "object";
2255
+ properties: {
2256
+ url: {
2257
+ type: string;
2258
+ description: string;
2259
+ };
2260
+ targets: {
2261
+ type: string;
2262
+ items: {
2263
+ oneOf: ({
2264
+ type: string;
2265
+ description: string;
2266
+ properties?: undefined;
2267
+ required?: undefined;
2268
+ } | {
2269
+ type: string;
2270
+ properties: {
2271
+ feature: {
2272
+ type: string;
2273
+ description: string;
2274
+ };
2275
+ selector: {
2276
+ type: string;
2277
+ description: string;
2278
+ };
2279
+ padding: {
2280
+ type: string;
2281
+ description: string;
2282
+ };
2283
+ revealFirst: {
2284
+ type: string;
2285
+ description: string;
2286
+ };
2287
+ };
2288
+ required: string[];
2289
+ description?: undefined;
2290
+ })[];
2291
+ };
2292
+ description: string;
2293
+ };
2294
+ outputDir: {
2295
+ type: string;
2296
+ description: string;
2297
+ };
2298
+ viewport: {
2299
+ type: string;
2300
+ properties: {
2301
+ width: {
2302
+ type: string;
2303
+ description: string;
2304
+ };
2305
+ height: {
2306
+ type: string;
2307
+ description: string;
2308
+ };
2309
+ };
2310
+ description: string;
2311
+ };
2312
+ darkMode: {
2313
+ type: string;
2314
+ description: string;
2315
+ };
2316
+ deviceScaleFactor: {
2317
+ type: string;
2318
+ description: string;
2319
+ };
2320
+ includeFullPage: {
2321
+ type: string;
2322
+ description: string;
2323
+ };
2324
+ };
2325
+ required: string[];
2326
+ };
2327
+ } | {
2328
+ name: string;
2329
+ description: string;
2330
+ annotations: {
2331
+ title: string;
2332
+ readOnlyHint: boolean;
2333
+ destructiveHint: boolean;
2334
+ openWorldHint: boolean;
2335
+ idempotentHint: boolean;
2336
+ };
2337
+ inputSchema: {
2338
+ type: "object";
2339
+ properties: {
2340
+ url: {
2341
+ type: string;
2342
+ description: string;
2343
+ };
2344
+ viewport: {
2345
+ type: string;
2346
+ properties: {
2347
+ width: {
2348
+ type: string;
2349
+ description?: undefined;
2350
+ };
2351
+ height: {
2352
+ type: string;
2353
+ description?: undefined;
2354
+ };
2355
+ };
2356
+ description: string;
2357
+ };
2358
+ targets?: undefined;
2359
+ outputDir?: undefined;
2360
+ darkMode?: undefined;
2361
+ deviceScaleFactor?: undefined;
2362
+ includeFullPage?: undefined;
2363
+ };
2364
+ required: string[];
2365
+ };
2366
+ })[];