Skip to main content
Glama

setup_render

Configure a Houdini render by creating or specifying a camera and ROP node with renderer, output path, resolution, and samples.

Instructions

Set up a render configuration with camera and ROP node.

Args: renderer: Renderer type ("karma", "mantra"). camera: Camera node path; creates one if omitted. output_path: Output image path (supports Houdini variables). resolution: [width, height] resolution. samples: Render sample count. name: ROP node name in /out.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNorender1
cameraNo
samplesNo
rendererNokarma
resolutionNo
output_pathNo$HIP/render/output.$F4.exr

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the disclosure burden. It does disclose key creation behavior, such as 'creates one if omitted' for the camera and places the ROP node name in /out. Missing are explicit side-effect details, such as whether an existing ROP node is overwritten, and whether the tool only configures without rendering.

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 opening sentence states the purpose efficiently, followed by a compact Args block that covers all parameters without fluff. Every sentence adds necessary semantic value, making the definition easy to scan and use.

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?

The description is largely sufficient for invoking the tool because all parameters and key behaviors are explained. The main gaps are the absence of return-value information and no explicit statement that this tool configures rather than executes a render, which would be valuable given the many render-related siblings.

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

Parameters5/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 fully compensate, and it does. Every parameter is explained with useful semantics: renderer enumerates accepted values ('karma', 'mantra'), camera notes creation behavior, output_path notes variable support, and resolution specifies its [width, height] format.

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 states a specific action: 'Set up a render configuration with camera and ROP node.' This is clear and distinguishes it from render-execution siblings like start_render or render_node_network. However, it does not explicitly name or contrast those siblings, so it stops short of full differentiation.

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 about when to prefer this tool over closely related tools such as create_render_node, set_render_settings, or start_render. The description implies a setup role, but it never states that actual rendering is out of scope or names alternatives.

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