Skip to main content
Glama

list_keyframes

Read-only

Retrieves all keyframes on a given node's knob, returning frame/value pairs.

Instructions

List all keyframes on a knob. Returns frame/value pairs.

Args: node: node name. knob: knob name to inspect.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
knobYesknob name to inspect.
nodeYesnode name.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.2/5.0
Behavior3/5

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

readOnlyHint=true already signals a safe read, so the bar is lower. The description adds that the result is frame/value pairs, which is useful, but discloses nothing about ordering, empty results, or interpolation/curve context.

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

Conciseness3/5

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

The leading sentence is front-loaded and efficient, but the Args section verbatim duplicates the input schema, adding length without adding information.

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 two-parameter read-only listing tool with no output schema, the description covers purpose, inputs, and the shape of the returned data, which is adequate. Minor gaps remain around ordering of returned keyframes.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents both parameters; the description's Args block merely restates the same text ('node: node name.', 'knob: knob name to inspect.') without adding format, naming convention, or lookup hints.

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?

States a specific verb and resource ('List all keyframes on a knob') and names the return shape. It is distinguishable from the sibling set_keyframe, though it does not explicitly contrast with it or with get_knob.

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 when-to-use guidance, no prerequisites, and no routing to alternatives such as set_keyframe (for writing keyframes) or get_knob. Usage is only implied by the tool name.

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