Skip to main content
Glama

Get Attributes

get_attributes

Retrieves attribute values from a specified Maya node. Omit attribute names to get common transform attributes, or provide specific ones for targeted inspection.

Instructions

Read attributes of a node.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nodeYesNode name.
attrsNoAttribute names (short or dotted). Omit for the common transform attributes.
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

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the behavioral load. It implies a read-only operation via 'Read', but does not disclose session targeting, error behavior, idempotency, or any other traits an agent would need to invoke it confidently.

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 a single, front-loaded sentence with no wasted words. While it is extremely terse, it is appropriately concise for a tool whose parameters and return values are covered by the schema and output schema.

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 output schema exists and the input schema has full coverage, reducing the burden on the description. However, the description still lacks usage guidance and sibling differentiation, leaving an agent without enough context to choose this tool confidently over alternatives like set_attributes or get_scene_info.

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 input schema already fully documents all three parameters. The description adds no parameter-level meaning beyond what the schema provides, making the baseline score of 3 appropriate.

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 'Read attributes of a node' states a specific verb (read) and resource (attributes of a node), making the basic action clear. However, it does not differentiate from sibling tools like set_attributes or get_scene_info, leaving the agent to infer when this tool is the right choice.

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?

The description provides no when-to-use guidance, no conditions for selecting this tool over alternatives, and no mention of prerequisites or related tools. It is a bare statement of function with no routing context.

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