Skip to main content
Glama

cook_top_node

Cook a Houdini TOP node to execute its work items. Optionally wait for completion or generate items without cooking.

Instructions

Cook a TOP node to execute its work items.

Args: ctx: MCP context. node_path: TOP node path. block: Wait for cooking to complete. generate_only: Only generate work items, do not cook.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
blockNo
node_pathYes
generate_onlyNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/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 the blocking behavior and the generate_only mode, which is useful, but it does not mention side effects, failure modes, or that cooking can be a long-running operation. This is partial but not comprehensive transparency.

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 description is compact and front-loaded with the core action, followed by a clean parameter list. The only minor waste is 'ctx: MCP context,' which is generic and adds little, but overall the structure is efficient and easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has no output schema and no annotations, yet the description does not explain what the tool returns, what happens when block is false, or what errors/prerequisites exist. For a cooking action with many related TOP tools, an agent still lacks important operational context.

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

Parameters4/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, and it does. Each parameter receives a meaningful one-line explanation, especially generate_only ('Only generate work items, do not cook') and block ('Wait for cooking to complete'), which add real semantics beyond the raw schema.

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 clearly states the action ('Cook a TOP node') and the effect ('execute its work items'), which goes beyond the bare tool name. However, it does not explicitly differentiate from related siblings like cook_frame_range or get_cook_status, so it stops short of full sibling distinction.

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 guidance is given on when to use this tool versus alternatives such as cancel_top_cook, get_cook_status, or cook_frame_range. The intended context is only implied by the verb 'cook' and the parameter names, with no explicit when-to-use or when-not-to-use information.

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

Deploy Server

Other Tools