Skip to main content
Glama
leancoderkavy

Premiere Pro MCP Server

Stabilize Clip

stabilize_clip

Apply Warp Stabilizer to a clip to reduce camera shake and smooth motion. Choose a stabilization method and adjust smoothness for steadier footage.

Instructions

Apply the Warp Stabilizer effect to a clip for video stabilization. Uses QE DOM.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
methodNoStabilization method (default: 'Subspace Warp')
node_idYesNode ID of the clip to stabilize
smoothnessNoStabilization smoothness percentage (default: 50). Higher = smoother but more cropping.

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. 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"
      +}
  2. Changed1 schema field changedv1.4.0
    • removedInput schema / additionalProperties
      Removed value: -false
  3. First observedv1.1.1

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already cover the safety profile (readOnlyHint=false, destructiveHint=false, idempotentHint=false), so the description only needs to add value beyond that. It adds the 'Uses QE DOM' implementation note, which hints that the effect is applied through a non-standard API path and that node_id is a QE DOM identifier. However, it does not disclose that Warp Stabilizer triggers a potentially lengthy analysis pass or that the clip's effect stack is modified, leaving notable behavioral traits unstated.

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

Conciseness4/5

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

Two sentences with zero filler, and the core action is front-loaded in the first sentence. The second sentence, 'Uses QE DOM.', is a terse fragment that earns its place as an implementation qualifier but is less informative than a fully formed statement would be.

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

Completeness3/5

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

The burden is lowered by the presence of an output schema, full parameter documentation, and annotations, but meaningful context is still missing: no warning about Warp Stabilizer's analysis time, no prerequisite that node_id refer to a valid video clip, and no pointer to the sibling get_qe_clip_info as a source for the QE DOM node id. The tool is minimally invocable with one required parameter, but the operative context is incomplete.

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 schema already documents method (enum plus default 'Subspace Warp'), node_id, and smoothness (default 50 with the cropping trade-off). The description itself adds no parameter-level detail; the 'Uses QE DOM' statement only weakly disambiguates node_id as a QE DOM-specific identifier. With full schema coverage, the baseline of 3 applies.

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 a specific verb ('Apply'), a specific resource ('the Warp Stabilizer effect'), a target ('a clip'), and the purpose ('video stabilization'), which makes the tool's function clear and distinguishes it from the generic sibling apply_effect. However, it does not explicitly name overlapping siblings or state scope boundaries, so it stops just short of full 5-level differentiation.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives such as apply_effect, color_correct, set_time_interpolation, or reverse_clip, all of which also operate on clips. There are also no stated prerequisites (e.g., the clip must be a video clip with motion) or exclusions, so the agent must infer selection logic from the name alone.

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