Skip to main content
Glama
leancoderkavy

Premiere Pro MCP Server

Create Caption Track

create_caption_track

Add approved captions to the active sequence as a caption track, or create a read-only timing and review plan for lecture SRT/VTT content without modifying the Premiere project.

Instructions

Import an already reviewed caption artifact into the active sequence, or create a local lecture-caption timing and review workflow plan. Import reports structural success only when the host exposes a caption-track readback; the planning action never contacts Premiere or changes an artifact.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionNoUse import (the default) to create a Premiere caption track, or plan_lecture_workflow for a read-only SRT/VTT timing and review plan.import
item_idNoFor action import, the node ID or name of the imported caption project item (for example, an SRT file). Omit for plan_lecture_workflow.
start_secondsNoFor action import, offset in seconds from the start of the sequence (default: 0).
caption_formatNoFor action import, Premiere caption format: subtitle (default), 608, 708, teletext, ebu, op42, or op47.
artifact_formatNoFor plan_lecture_workflow, the syntax of caption_content. VTT content must include its WEBVTT header.
caption_contentNoFor plan_lecture_workflow, the caller-owned SRT or VTT content to parse locally. The returned plan contains no caption text and does not write this artifact.
observed_offset_secondsNoFor plan_lecture_workflow, an editor-observed constant offset in seconds. Positive means captions currently appear later than intended; the preview proposes the inverse shift when safe.
target_duration_secondsNoFor plan_lecture_workflow, optional intended sequence duration. A mismatch requires review unless proportional scaling is explicitly authorized.
timing_tolerance_secondsNoFor plan_lecture_workflow, tolerance used to classify an offset or duration mismatch (default: 0.25 seconds).
allow_proportional_scalingNoFor plan_lecture_workflow, explicitly permit a bounded timing-scale preview when the artifact end does not match target_duration_seconds. This still never rewrites a caption artifact.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYesWhether the tool completed successfully.
dataNoTool-specific result data when ok is true.
toolYesThe registered MCP tool name.
errorNoFailure detail when ok is false.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed15 schema fields changedv1.14.9
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / properties / action
      Added value: +{
      +  "default": "import",
      +  "description": "Use import (the default) to create a Premiere caption track, or plan_lecture_workflow for a read-only SRT/VTT timing and review plan.",
      +  "enum": [
      +    "import",
      +    "plan_lecture_workflow"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / allow_proportional_scaling
      Added value: +{
      +  "description": "For plan_lecture_workflow, explicitly permit a bounded timing-scale preview when the artifact end does not match target_duration_seconds. This still never rewrites a caption artifact.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / artifact_format
      Added value: +{
      +  "description": "For plan_lecture_workflow, the syntax of caption_content. VTT content must include its WEBVTT header.",
      +  "enum": [
      +    "srt",
      +    "vtt"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / caption_content
      Added value: +{
      +  "description": "For plan_lecture_workflow, the caller-owned SRT or VTT content to parse locally. The returned plan contains no caption text and does not write this artifact.",
      +  "maxLength": 750000,
      +  "minLength": 1,
      +  "type": "string"
      +}
    • changedInput schema / properties / caption_format / description
      Previous value: -"Caption format: 'subtitle' (default), '608', '708', 'teletext', 'ebu', 'op42', 'op47'"New value: +"For action import, Premiere caption format: subtitle (default), 608, 708, teletext, ebu, op42, or op47."
    • changedInput schema / properties / item_id / description
      Previous value: -"Node ID or name of the imported caption project item (e.g., an .srt file)"New value: +"For action import, the node ID or name of the imported caption project item (for example, an SRT file). Omit for plan_lecture_workflow."
    • addedInput schema / properties / item_id / maxLength
      Added value: +512
    • addedInput schema / properties / observed_offset_seconds
      Added value: +{
      +  "description": "For plan_lecture_workflow, an editor-observed constant offset in seconds. Positive means captions currently appear later than intended; the preview proposes the inverse shift when safe.",
      +  "maximum": 86400,
      +  "minimum": -86400,
      +  "type": "number"
      +}
    • changedInput schema / properties / start_seconds / description
      Previous value: -"Offset in seconds from the start of the sequence (default: 0)"New value: +"For action import, offset in seconds from the start of the sequence (default: 0)."
    • addedInput schema / properties / start_seconds / maximum
      Added value: +604800
    • addedInput schema / properties / start_seconds / minimum
      Added value: +0
    • addedInput schema / properties / target_duration_seconds
      Added value: +{
      +  "description": "For plan_lecture_workflow, optional intended sequence duration. A mismatch requires review unless proportional scaling is explicitly authorized.",
      +  "maximum": 604800,
      +  "minimum": 0.001,
      +  "type": "number"
      +}
    • addedInput schema / properties / timing_tolerance_seconds
      Added value: +{
      +  "description": "For plan_lecture_workflow, tolerance used to classify an offset or duration mismatch (default: 0.25 seconds).",
      +  "maximum": 10,
      +  "minimum": 0.001,
      +  "type": "number"
      +}
    • removedInput schema / required
      Removed value: -[
      -  "item_id"
      -]
  2. Changed2 schema fields changedv1.14.4
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "https://json-schema.org/draft/2020-12/schema",
      +  "additionalProperties": false,
      +  "properties": {
      +    "data": {
      +      "description": "Tool-specific result data when ok is true."
      +    },
      +    "error": {
      +      "description": "Failure detail when ok is false.",
      +      "type": "string"
      +    },
      +    "ok": {
      +      "description": "Whether the tool completed successfully.",
      +      "type": "boolean"
      +    },
      +    "tool": {
      +      "description": "The registered MCP tool name.",
      +      "minLength": 1,
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "ok",
      +    "tool"
      +  ],
      +  "type": "object"
      +}
  3. Changed1 schema field changedv1.4.0
    • removedInput schema / additionalProperties
      Removed value: -false
  4. First observedv1.1.1

TDQS

A4.3/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses important behavioral nuance beyond annotations: import success is structural and depends on host readback support, while the planning action is fully local and does not modify artifacts. This is valuable operational context that the annotation hints alone do not provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two dense sentences that front-load the main action and include only necessary distinctions. Every clause contributes either to the import/plan split or to the critical behavioral caveats, with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given a detailed output schema, high parameter coverage, and the provided annotations, the description sufficiently covers the key decision points and behavioral caveats. An agent can understand mode selection, what the planner does not touch, and import success semantics without needing additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the input schema already explains every parameter, including action-specific applicability. The description adds the two-mode framing that maps to the action enum, but does not add meaning beyond what the schema provides, so the baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names the specific actions: importing a caption artifact into the active sequence, or creating a local lecture-caption timing/review plan. It is clear about the two-mode behavior and distinguishes this from caption-building or reading tools by emphasizing 'already reviewed' and 'local' planning, though it does not explicitly name sibling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly distinguishes when to use the import mode versus the planning mode, and emphasizes that planning never contacts Premiere or changes artifacts. It does not explicitly state when to choose a sibling tool like build_caption_artifact or read_sequence_captions, but the context is strong enough for an agent to select correctly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools