Skip to main content
Glama

Get Scene Info

get_scene_info

Summarize the current Maya scene by returning its name, path, units, FPS, object count, and references for quick context.

Instructions

Summarize the current scene: name, path, units, fps, object count, references.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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

B3.4/5.0
Behavior2/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 implies a read via 'Summarize'/'Get' but never states that it is non-mutating, that it requires an active Maya session, or how session targeting (session_key) behaves or fails.

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 with zero filler; the verb and resource come first and the reported fields follow. Every token earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With a 100%-covered single optional parameter and an existing output schema, the description covers the essentials for a simple read tool. It could still mention session targeting or open-scene requirements, but nothing critical is missing.

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?

There is one parameter at 100% schema description coverage, so the schema already documents session_key ('Target Maya session.'). The description adds no session-selection semantics, so the baseline of 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 gives a specific verb ('Summarize') and resource ('the current scene') and enumerates the fields it reports, so an agent knows exactly what comes back. It does not explicitly differentiate itself from adjacent readers like list_objects or get_attributes, so it stops short of a 5.

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: call this when you need a scene-level overview rather than per-object data. However, no alternative is named and no when-not conditions or prerequisites (e.g., needing an open scene) are stated.

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