Skip to main content
Glama

create_light

Add a USD light to a LOP network, specifying type, intensity, color, and position for scene illumination.

Instructions

Create a USD light in a LOP network.

Args: parent_path: Parent LOP network path. light_type: "dome", "distant", "rect", "sphere", "disk", or "cylinder". name: Light node name. intensity: Light intensity. color: [r, g, b] color values. position: [x, y, z] world position.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
colorNo
positionNo
intensityNo
light_typeNodome
parent_pathNo/stage

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations provided, so the description carries full burden. It states it creates a light but doesn't disclose side effects, permissions, failure behavior, or whether it modifies existing lights. For a mutation tool, this is a significant gap.

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?

Concise, front-loaded with purpose, and efficiently lists parameters without fluff. The format is clean and scannable.

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?

Incomplete for a creation tool with 6 parameters: no mention of return value, prerequisites (like LOP network existence), edge cases, or assumptions. Assumes familiarity with USD/LOP concepts and doesn't explain optionality.

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 coverage is 0%, so the description must compensate. It lists all parameters with brief descriptions (e.g., light_type options), adding meaning beyond the schema. However, lacks ranges/units for intensity, color, and position, and doesn't indicate defaults, so compensation is partial.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific action (create) and resource (USD light in LOP network), clearly distinguishing from list_lights and set_light_properties. The verb+resource is precise and unambiguous.

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 on when to use this tool vs. alternatives like create_light_rig or set_light_properties. The description is silent on selection criteria, prerequisites, or when not to use it.

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