Skip to main content
Glama

Parent Object

parent_object

Reparent or unparent Maya nodes by specifying a child and optional new parent; omit parent to move it to the world.

Instructions

Parent a node under another, or unparent it to the world.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
childYesNode to parent (or unparent).
parentNoNew parent; omit to unparent to the world.
session_keyNoTarget Maya session; omit if only one is connected.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It usefully discloses that omitting the parent unparents to the world, but it does not mention side effects such as whether world/local transforms are preserved, whether the child must already exist, or error behavior for an invalid parent.

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?

A single front-loaded sentence covering both directions of the operation with zero filler. Every clause earns its place.

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?

An output schema exists, so return values need not be explained, and all parameters are documented. However, as a scene-mutating hierarchy tool with no annotations, it should say more about transform preservation and preconditions to be fully complete.

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 schema already documents 'child', 'parent', and 'session_key' including the omit-to-unparent semantics. The description adds no meaning beyond that, so the 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?

The description states a specific verb (parent/unparent) acting on a resource (a node), and the dual operation is explicit. It is clearly distinguishable from siblings like duplicate_object or delete_objects, though it does not name or contrast any specific alternative.

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 by the operation itself: use it to change hierarchy. There is no explicit statement of when to prefer this over alternatives, no prerequisite conditions, and no exclusions, so guidance is only implicit.

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