Skip to main content
Glama

bin_remove_clip

Remove a clip from the Kdenlive media bin by its ID to clean up unused media assets.

Instructions

Delete a clip from the media bin by its ID.

Args: clip_id: The clip identifier from bin_list_clips or bin_import_clip.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
clip_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A3.8/5.0
Behavior2/5

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

With no annotations, the description must disclose behavior; it only states the deletion action without mentioning side effects, error cases, or whether the operation is reversible. It does not contradict annotations (none 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?

The description is concise, front-loaded with the primary action, and includes a clear Args section. No wasted words.

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 deletion tool with an output schema, the description covers the essential information: what it does, the parameter, and its source. Minor gaps like error handling are understandable given the 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?

The description explains that clip_id is the identifier from bin_list_clips or bin_import_clip, adding context beyond the schema's bare string type. This helps the agent know how to obtain a valid ID.

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 clearly states the action (delete) and the specific resource (clip from media bin) using its ID. This distinguishes it from sibling tools like bin_move_clip or bin_rename.

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 description implies its use for deleting a clip but provides no explicit guidance on alternatives or conditions. There is no mention of when not to use it or prerequisites, leaving usage to inference.

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