Skip to main content
Glama

timeline_add_clip

Place a bin clip onto a specified timeline track at a given position, setting optional in and out points for partial use.

Instructions

Place a bin clip onto a specific track at a given time position.

Args: clip_id: Bin clip identifier to place (from bin_list_clips). track: Target track number. position: Start time on the timeline in seconds. in_point: Media trim-in (where to start playback inside source) in seconds. out_point: Media trim-out (where to end playback inside source) in seconds. Defaults to full bin duration. Use timeline_trim_clip to adjust after placement.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
trackYes
clip_idYes
in_pointNo
positionYes
out_pointNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It explains trim-in/trim-out semantics and the out_point default, which adds value. However, it does not disclose potential side effects such as overlapping behavior, whether existing clips are overwritten, track validity requirements, or failure modes.

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 main statement is one concise sentence, followed by a compact argument list. Every line adds information and there is no filler or redundant repetition of schema titles.

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

Completeness4/5

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

The description covers all parameters, the source of clip_id, and follow-up tool usage. It lacks explicit constraints around track existence, overlap policy, or timeline boundaries, but the presence of an output schema and the clear parameter explanations make it mostly complete for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the Args section fully compensates. Every parameter is explained with units and meaning, clip_id sourcing is noted, and out_point's default to full bin duration is explicitly stated.

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 opens with a specific action: 'Place a bin clip onto a specific track at a given time position.' This clearly identifies the resource (bin clip, track, timeline), the operation (placement), and distinguishes it from sibling tools like timeline_move_clip or timeline_add_track.

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

Usage Guidelines4/5

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

The description provides useful routing context by stating clip_id comes from bin_list_clips and explicitly recommends timeline_trim_clip for post-placement adjustments. It does not enumerate when not to use this tool versus other timeline editing tools, but the intended use case is clear.

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