Skip to main content
Glama

bin_rename

Rename any clip in the Kdenlive project bin using its clip ID and a new name, solving disorganization and naming conflicts.

Instructions

Rename bin clip.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
clip_idYes
new_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It states that a rename happens, but it does not disclose potential side effects, validation rules, uniqueness constraints, or whether existing references to the clip are updated. The behavioral information is minimal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence with no filler, which makes it easy to parse and front-loads the core action. While it is arguably under-specified, as a conciseness measure it is appropriately compact for a simple operation.

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

Completeness2/5

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

The presence of an output schema reduces the need to describe return values, but the description still omits important invocation context: where clip_id comes from, what constraints apply to new_name, and whether the rename affects other parts of the project. The tool is minimally viable, but not complete for reliable agent use.

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

Parameters1/5

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

Schema description coverage is 0%, and the description 'Rename bin clip.' adds no meaning about the two required parameters, clip_id and new_name. The agent must rely entirely on their names and titles, which is insufficient compensation for the missing schema descriptions.

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?

The description uses a specific verb ('Rename') and a clear resource ('bin clip'), making the core operation unambiguous. It is naturally distinct from sibling tools like bin_import_clip and bin_remove_clip, but it does not explicitly call out scope or exclusions, so it stops short of a 5.

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 the tool should be used when renaming a clip in the bin, but it gives no explicit guidance about when to use it versus alternatives, nor does it mention prerequisites such as obtaining clip_id from bin_list_clips. The intended use case is inferable, not stated.

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