Skip to main content
Glama

create_lop_node

Create a USD LOP node in Houdini by specifying parent path, type, name, and prim path. Verify the correct LOP type with list_node_types before creating to avoid errors.

Instructions

Create a new LOP node.

Before using this, call list_node_types(context='Lop', filter='') to verify the correct node type. Solaris ships many specialized LOPs — sublayer, reference, materiallibrary, assignmaterial, karmarendersettings, editproperties, xform, prune, configurelayer, collection, addvariant — that may not be obvious from their names.

Args: parent_path: Parent node path. lop_type: LOP node type (e.g. "sphere", "sublayer", "merge"). name: Node name. prim_path: USD prim path to set on the node.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
lop_typeYes
prim_pathNo
parent_pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden of behavioral disclosure. It states the creation action and lists examples, but does not disclose side effects such as whether creating the node triggers a cook, what happens with null name or prim_path, whether the parent must already exist, or what the tool returns on success.

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 well-structured with a short intro, a focused prerequisite, and a compact Args list. The list of specialized LOP types is long but earns its place because it prevents incorrect tool usage.

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 covers the main workflow and parameter meanings, which is more than minimal. However, with no output schema and no annotations, it omits return behavior, error conditions, and mutation side effects, leaving the agent with an incomplete picture after invocation.

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?

With 0% schema description coverage, the Args section compensates by documenting all four parameters and giving clarifying examples for lop_type and prim_path. It does not fully explain default behavior for name and prim_path, but the added semantics are genuinely useful.

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 (create) and the resource (a LOP node), and the LOP qualifier distinguishes it from similar create_chop_node and create_cop_node tools. It does not explicitly contrast with the generic create_node tool, so it misses the strongest form of sibling differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives an explicit precondition: call list_node_types(context='Lop', filter='<keyword>') to verify the correct node type, and it names many specialized LOP types the agent might not guess. It does not state when to prefer create_node over this tool, but the usage context is clear.

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