zapcap_mcp_create_task
Create customized video processing tasks by specifying video ID, template, and advanced settings like subtitles, B-roll, and animations for precise editing control.
Instructions
Create video processing task with full customization options
Input Schema
Name | Required | Description | Default |
---|---|---|---|
request | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"CreateTask": {
"properties": {
"animation": {
"default": true,
"description": "Enable subtitle animation",
"title": "Animation",
"type": "boolean"
},
"auto_approve": {
"default": true,
"description": "Auto approve the task",
"title": "Auto Approve",
"type": "boolean"
},
"broll_percent": {
"default": 30,
"description": "B-roll percentage (0-100)",
"title": "Broll Percent",
"type": "integer"
},
"display_words": {
"default": 1,
"description": "Number of words to display",
"title": "Display Words",
"type": "integer"
},
"emoji": {
"default": true,
"description": "Enable emoji in subtitles",
"title": "Emoji",
"type": "boolean"
},
"emoji_animation": {
"default": true,
"description": "Enable emoji animation",
"title": "Emoji Animation",
"type": "boolean"
},
"emphasize_keywords": {
"default": true,
"description": "Emphasize keywords",
"title": "Emphasize Keywords",
"type": "boolean"
},
"enable_broll": {
"default": false,
"description": "Enable B-roll (requires video > 8-10 seconds)",
"title": "Enable Broll",
"type": "boolean"
},
"font_color": {
"default": "#ffffff",
"description": "Font color",
"title": "Font Color",
"type": "string"
},
"font_shadow": {
"default": "l",
"description": "Font shadow (s/m/l)",
"title": "Font Shadow",
"type": "string"
},
"font_size": {
"default": 30,
"description": "Font size",
"title": "Font Size",
"type": "integer"
},
"font_uppercase": {
"default": true,
"description": "Use uppercase font",
"title": "Font Uppercase",
"type": "boolean"
},
"font_weight": {
"default": 900,
"description": "Font weight",
"title": "Font Weight",
"type": "integer"
},
"highlight_color_1": {
"default": "#2bf82a",
"description": "First highlight color",
"title": "Highlight Color 1",
"type": "string"
},
"highlight_color_2": {
"default": "#fdfa14",
"description": "Second highlight color",
"title": "Highlight Color 2",
"type": "string"
},
"highlight_color_3": {
"default": "#f01916",
"description": "Third highlight color",
"title": "Highlight Color 3",
"type": "string"
},
"language": {
"default": "en",
"description": "Language code",
"title": "Language",
"type": "string"
},
"position_top": {
"default": 60,
"description": "Subtitle position from top",
"title": "Position Top",
"type": "integer"
},
"punctuation": {
"default": true,
"description": "Include punctuation",
"title": "Punctuation",
"type": "boolean"
},
"stroke": {
"default": "s",
"description": "Stroke style",
"title": "Stroke",
"type": "string"
},
"stroke_color": {
"default": "#000000",
"description": "Stroke color",
"title": "Stroke Color",
"type": "string"
},
"template_id": {
"description": "Template ID",
"title": "Template Id",
"type": "string"
},
"video_id": {
"description": "Video ID from upload",
"title": "Video Id",
"type": "string"
}
},
"required": [
"video_id",
"template_id"
],
"title": "CreateTask",
"type": "object"
}
},
"properties": {
"request": {
"$ref": "#/$defs/CreateTask"
}
},
"required": [
"request"
],
"title": "zapcap_mcp_create_taskArguments",
"type": "object"
}