Skip to main content
Glama

list_roto_shapes

Read-only

Lists all shapes and strokes in a Roto or RotoPaint node, helping you review or manage roto elements.

Instructions

List all shapes and strokes in a Roto or RotoPaint node.

Args: node: name of a Roto or RotoPaint node.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nodeYesname of a Roto or RotoPaint node.

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 establishes this as a safe read, and the description adds that it returns shapes AND strokes, which is useful scope. However it says nothing about return format, ordering, or whether nested/grouped shape data is included, so it adds only modest context beyond the annotation.

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 purpose sentence is front-loaded and efficient. The Args block is redundant with the schema but costs little and is a common convention.

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 one-param read tool this is nearly adequate, but there is no output schema, so the description should ideally sketch what a returned shape/stroke record looks like. That gap is the main thing missing.

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% and the single parameter is fully documented there; the description's Args block merely repeats the schema text verbatim. No extra semantics (e.g. accepted node path formats) are contributed.

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 (List) and resource (shapes and strokes in a Roto/RotoPaint node), so the agent knows exactly what comes back. It does not name or differentiate itself from any sibling, which keeps it short of a 5.

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?

There is no when-to-use guidance, no prerequisites, and no mention of alternatives such as read_node_detail or get_knob for inspecting a node. The agent must infer the context entirely.

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