Skip to main content
Glama
sakethramanujam

video-harness

timeline_ensure

Create the named timeline when missing and switch to it. Ensures the specified timeline is active for subsequent operations.

Instructions

Create the named timeline if needed and switch to it. Idempotent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It does disclose that the tool is idempotent and that it switches to the timeline, which is useful. However, it does not mention what happens to an existing timeline beyond not recreating it, or any side effects beyond switching.

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 two short sentences with zero filler. The key conditions 'if needed' and 'Idempotent' are front-loaded, and every phrase adds meaning.

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 one-parameter tool, the core behavior is covered and an output schema exists, so return details are not required. However, the lack of usage guidance and any mention of alternatives leaves the description incomplete for an agent operating among many timeline-related siblings.

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 only provides a required string 'name', and the description adds only minimal meaning by referring to the 'named timeline'. There is no additional detail about name format, uniqueness, or validation, so parameter semantics remain thinly covered.

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 concrete action, 'Create the named timeline if needed and switch to it', with a clear resource and behavioral intent. It is not a tautology and is distinguishable from sibling tools like timeline_place, though it does not explicitly call out sibling differences.

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?

The description provides no guidance on when to use this tool versus alternatives such as timeline_place or timeline_lift. The phrase 'if needed' implies an ensure-style pattern, but there is no explicit context, prerequisite, or exclusion to help an agent decide.

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