Skip to main content
Glama

Scene Open

scene_open

Load a Maya scene file (.ma or .mb) into a target session, optionally as a reference or bypassing unsaved-change prompts.

Instructions

Open (or reference) a Maya scene file.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesAbsolute path to a .ma or .mb file.
forceNoOpen without prompting about unsaved changes.
referenceNoReference the file instead of opening it.
session_keyNoTarget Maya session.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, and it does little: it does not say that opening replaces the current scene and can discard unsaved work, that force suppresses that prompt, or that a live Maya session is required. 'Open (or reference)' adds no safety or side-effect context.

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?

A single front-loaded sentence with no filler. It is efficient, though its brevity is partly under-specification rather than pure concision.

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?

An output schema exists so return values need not be described, but for a mutating file-open with zero annotations the description is too thin: session prerequisites, unsaved-change behavior, and the open-vs-reference distinction are left entirely to the schema.

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 100%, so path, force, reference, and session_key are all documented in the schema itself. The description contributes nothing beyond the schema, which is the baseline 3 for full-coverage schemas.

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?

States a specific verb (Open) and resource (Maya scene file), and the parenthetical '(or reference)' hints at the dual mode covered by the reference flag. It does not explicitly distinguish itself from siblings like scene_new or scene_save, but the intent is unmistakable.

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 open versus reference, when to set force, or how session_key selects a target. The agent must infer all of this from the schema alone. No alternatives or preconditions are named.

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