Skip to main content
Glama

guide_get

Retrieve a single guide by its ID from a Kdenlive project to access its position and metadata.

Instructions

Get single guide by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
guide_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A3.7/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 full burden. The verb 'Get' implies a read-only, non-destructive operation, and 'single guide by ID' implies idempotent retrieval. However, the description does not disclose behavior for missing/invalid IDs or any special retrieval semantics, though these are less critical for a simple getter.

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 a single, front-loaded sentence with zero filler. Every word contributes to explaining the tool's purpose.

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 simple one-parameter getter with an output schema, the description and schema are sufficient for a correct call. It does not cover edge cases or sibling comparisons, but those are not essential for this tool's straightforward usage.

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%, so the description must compensate. It adds only 'by ID,' which restates the guide_id property name in the schema and provides little additional meaning about where the ID comes from or how it is used.

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 states a specific action ('Get') on a specific resource ('single guide') and specifies the selection method ('by ID'). It clearly distinguishes itself from siblings like guide_list, guide_add, guide_remove, and guide_update.

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 phrase 'single guide by ID' implies the intended use case: retrieving one specific guide when its ID is known. However, it does not explicitly mention alternatives such as guide_list for retrieving multiple guides, nor does it state when not to use this tool.

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