Skip to main content
Glama

capcut_set_clip_transform

Set a clip's scale, rotation, x/y position, and opacity in a CapCut project. Use this to precisely reposition or resize any video segment.

Instructions

Adjusts scale, rotation, translation position (x, y), or opacity of an existing clip.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
xNoHorizontal position [-1.0 to 1.0].
yNoVertical position [-1.0 to 1.0].
alphaNoOpacity from 0.0 to 1.0.
scaleNoScale factor (1.0 = 100%).
rotationNoRotation in degrees.
segment_idYesUUID of the segment.
project_name_or_idYesTarget project name or ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior2/5

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

Annotations are absent, so the description carries the full behavioral disclosure burden. It says 'adjusts' but does not clarify whether values are absolute or cumulative, whether unspecified properties remain unchanged, or whether prior transforms/keyframes are affected. This ambiguity is significant for a mutating tool.

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 a single front-loaded sentence with no filler. Every word earns its place: the verb, target resource, and the affected transform properties are all immediately visible.

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

Completeness2/5

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

For a mutating tool with no annotations and no output schema, a one-sentence description is thin. Missing context includes absolute vs relative semantics, behavior of omitted parameters, and what the agent can expect as a success signal or result. The complete parameter schema helps but does not resolve these behavioral gaps.

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 coverage is 100%, so the schema already documents all parameters and their ranges/units. The description maps broad categories (scale, rotation, position, opacity) onto the schema, but adds no new meaning beyond what the structured input already provides.

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

Purpose5/5

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

The description uses a specific verb ('Adjusts'), names the resource ('an existing clip'), and lists the exact transform properties (scale, rotation, x/y position, opacity). This clearly distinguishes it from transform-related siblings like capcut_set_clip_speed or capcut_trim_clip.

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 given about when to use this tool versus alternatives such as capcut_add_keyframe for animated transforms or capcut_set_clip_speed for speed adjustments. The only implied usage is that the clip must already exist, but this is not stated as a decision rule.

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