Skip to main content
Glama

comp_get_timeline

Get the composition JSON and its total duration to review the timeline structure.

Instructions

Read the composition JSON and its total duration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
comp_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of indicating safety. The verb 'Read' implies a non-destructive operation, which is useful, but the description does not mention error behavior, permissions, or what happens for invalid/missing comp_id.

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 concise sentence with no wasted words. It is front-loaded with the core action and resource, though it is perhaps too terse to cover important usage details.

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

Completeness3/5

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

For a simple getter with one parameter, the description names the primary return values (composition JSON and total duration), and there is no output schema to add detail. However, with no annotations, no output schema, and no sibling differentiation, the description leaves some operational context unstated.

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?

The schema has 0% description coverage and the description does not mention comp_id at all. The parameter name is somewhat self-explanatory, but the description fails to clarify the relationship between comp_id and the returned composition JSON, so it does not compensate for the low schema coverage.

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 ('Read') and a clear resource ('the composition JSON') plus an additional returned value ('total duration'). It distinguishes this tool from the many comp_* mutation/validation siblings, though it does not explicitly name an alternative.

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 provided about when to use this tool instead of other composition-related tools such as comp_validate or comp_create. The description only says what it does, not the conditions or context in which it is the right choice.

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