Skip to main content
Glama

list_nodes

Read-only

List every node in a Foundry Nuke script, or show the children of a Group node when you provide its name.

Instructions

List all nodes in the script, or children of a Group node.

Args: root: optional Group node name to list children of.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rootNooptional Group node name to list children of.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.5/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, lowering the disclosure bar. The description adds the Group-scoping behavior, but says nothing about the return shape (flat list vs tree, ordering) or pagination. Useful context beyond annotations, but not rich.

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 core purpose is front-loaded in one sentence, and the rest is short. The Args block is somewhat redundant with the schema, costing a little space, but nothing is padded or buried.

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 single-optional-param read tool with readOnlyHint annotations, this covers what is needed to call it correctly. The main omission is return format, which matters mildly for a listing tool with no output schema.

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 single root parameter is already fully documented in the schema. The description's Args block restates the schema text verbatim, adding no format, default, or lookup semantics beyond it. Baseline 3 applies.

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 nodes in the script') and adds the conditional variant for Group children. However, it never distinguishes itself from the sibling find_nodes, so an agent cannot tell from the description alone which listing tool to pick.

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?

Usage is implied: pass a Group name via root to list children, omit it to list everything. There is no explicit when-not guidance and no named alternative (e.g. find_nodes for filtered lookup), so the agent must infer the choice.

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