ripple_delete
Delete a video clip and automatically close the gap left in the timeline, keeping the sequence continuous.
Instructions
Delete a clip and close the gap.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clip_id | Yes |
Delete a video clip and automatically close the gap left in the timeline, keeping the sequence continuous.
Delete a clip and close the gap.
| Name | Required | Description | Default |
|---|---|---|---|
| clip_id | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of disclosing behavior. It does disclose that the tool is destructive and that it closes the resulting gap, but it does not say whether media is removed from disk or only the timeline, or whether the operation is reversible.
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 a single seven-word sentence with no filler or redundant content. It states the action and the key side effect with maximum economy.
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?
Given that this is a one-parameter destructive tool with no output schema and no annotations, the description covers the core invocation details: what action is performed, what resource is affected, and what side effect results. It is sufficient for an agent to call the tool correctly, though it could add irreversibility context.
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 adds no detail about the required clip_id parameter beyond its name. The role of clip_id is inferable from the tool's purpose, but the description itself does not compensate for the missing schema documentation.
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-object pair, 'Delete a clip', and adds the unique ripple behavior, 'close the gap'. This is enough to distinguish it from all sibling tools, none of which perform a plain clip deletion.
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?
The description gives no when-to-use guidance, no exclusion criteria, and names no alternatives. An agent cannot tell from the description when to prefer this over trim, split, or remove_silences.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.