move
Relocate a video clip to a specified position on its timeline track using its clip ID and target time.
Instructions
Move a clip on its track.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clip_id | Yes | ||
| timeline_in | Yes |
Relocate a video clip to a specified position on its timeline track using its clip ID and target time.
Move a clip on its track.
| Name | Required | Description | Default |
|---|---|---|---|
| clip_id | Yes | ||
| timeline_in | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are absent, so the description carries the full burden. It states only 'Move a clip on its track,' implying a side effect but does not disclose what happens to the previous position, whether moving causes collisions, or what the operation actually changes.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is six words and front-loads the verb. It is efficient with no filler, although its brevity borders on under-specification in other dimensions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a two-parameter tool with no annotations, no output schema, and no parameter descriptions, this definition does not give an agent enough to invoke it correctly (notably the meaning and units of timeline_in). The tool itself is simple, so the gap is meaningful but not catastrophic.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not compensate at all: it never mentions clip_id, timeline_in, what timeline_in represents (e.g., seconds, offset, target in-point), or any relationship between the two parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('move') and resource ('clip'), and scopes it to 'its track.' It is clear enough that this is a timeline move operation and none of the sibling tools shares exactly this purpose, though it does not explicitly contrast itself with siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 instead of other timeline-editing siblings such as trim, add_clip, or set_speed. It does not mention any exclusions, prerequisites, or alternative tool references.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.