Skip to main content
Glama

capcut_trim_clip

Trim a CapCut segment's start time or duration by specifying its segment ID and new values, enabling precise timeline edits programmatically.

Instructions

Adjusts the timeline start time or duration of an existing segment by its segment ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
segment_idYesUUID of the segment to trim.
new_start_secondsNoNew start time in seconds.
project_name_or_idYesTarget project name or ID.
new_duration_secondsNoNew duration in seconds.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states that the tool mutates an existing segment but does not mention side effects, reversibility, required permissions, or what happens if neither new_start_seconds nor new_duration_seconds is provided.

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?

A single, front-loaded sentence with no filler. It efficiently communicates the core operation and target resource.

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 schema covers parameter details and the description covers the basic operation, making this minimally viable. However, with no output schema and no annotation support, the lack of guidance on optional parameters and expected behavior prevents a higher score.

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 parameters are already well-documented. The description adds little beyond the schema, and it does not clarify the relationship or constraints between new_start_seconds and new_duration_seconds.

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?

Uses a specific verb ('Adjusts') and resource ('timeline start time or duration of an existing segment by its segment ID'), which clearly conveys the operation. It is distinguishable from siblings like capcut_split_clip and capcut_remove_clip, though it does not explicitly name them.

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?

The description does not state when to use this tool versus alternatives such as capcut_split_clip or capcut_set_clip_speed. It implies usage by describing the operation, but provides no context, prerequisites, or exclusions.

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