Skip to main content
Glama

timeline_remove_track

Delete a specified track and all its clips from the Kdenlive timeline using the numeric track ID.

Instructions

Delete a track and all its clips from the timeline.

Args: track_id: Numeric track identifier (from timeline_list).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
track_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden, and it clearly discloses the destructive cascade: deleting a track also deletes all its clips. It does not discuss reversibility or invalid track IDs, but for a simple deletion tool the core behavioral impact is communicated.

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 appropriately brief: one action sentence followed by a single argument clarification. There is no filler, and the destructive scope is front-loaded before the parameter details.

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?

For a one-parameter destructive operation with an output schema, the description is nearly complete: it states the target, the cascading effect on clips, and where to obtain the valid track ID. Missing edge-case details like behavior on invalid or locked tracks are minor given the tool's simplicity.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate. It does so by adding provenance information: track_id is a numeric identifier 'from timeline_list.' This is more useful than the schema's bare integer type, though 'numeric' partly restates the type.

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 verb and resource: 'Delete a track and all its clips from the timeline.' This cleanly distinguishes it from sibling tools like timeline_remove_clip, which operates on a single clip, and makes the destructive scope unmistakable.

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

Usage Guidelines3/5

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

The action itself implies when to use it, but the description never explicitly contrasts it with timeline_remove_clip or states 'use this when you want to remove an entire track.' An agent has to infer the appropriate context from the wording rather than receiving direct routing guidance.

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