Skip to main content
Glama

comp_add_text

Add text overlays to video compositions at percentage-based positions, with controls for timing, color, font, and alignment.

Instructions

Add a text overlay with percentage positions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes
alignNocenter
colorNo#FFFFFF
startYes
w_pctNo
x_pctYes
y_pctYes
comp_idYes
bg_colorNotransparent
durationYes
font_familyNo
font_size_pxNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/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 implies a mutating create operation but does not explain what side effects occur, whether validation is performed, what happens with defaults, or what response is returned. The phrase 'percentage positions' is the only behavioral detail beyond the bare create action.

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, front-loaded sentence with no wasted words. It places the core action first and adds the key distinguishing qualifier at the end, making it easy to parse. However, given the tool's parameter count and sibling set, the brevity borders on under-specification rather than disciplined conciseness.

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?

For a tool with 12 parameters, no annotations, and no output schema, this description is incomplete. It does not mention prerequisites like an existing comp_id, how timing values are interpreted, what defaults apply, or what the tool returns after adding the text overlay. The one-sentence summary leaves too much for the agent to infer from names and schema constraints.

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

Parameters2/5

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

Schema description coverage is 0%, and the description must compensate for the 12 undocumented parameters. 'Percentage positions' clarifies the meaning of x_pct and y_pct, but it does nothing for comp_id, text, start, duration, color, align, font_family, font_size_px, w_pct, or bg_color. The bulk of the parameter semantics remain implicit in property names and defaults.

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 states a specific action and resource: 'Add a text overlay', which clearly distinguishes this from generic overlay tools like comp_add_overlay and clip manipulation tools. The qualifier 'with percentage positions' adds a meaningful scope detail that helps identify the intended coordinate system, though it does not explicitly name any sibling tool.

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?

No guidance is given about when to use this tool versus comp_add_overlay, comp_update_text, captions_write_srt, or other text-related tools. There are no context cues about prerequisites, such as the composition needing to exist, and no exclusions or alternatives are mentioned.

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