Skip to main content
Glama
vino3dx
by vino3dx

list_objects

Read-only

List 3ds Max scene objects filtered by superclass, class, layer, or name wildcard, with pagination via limit/offset. Read-only, use it to survey the scene before making changes.

Instructions

列出场景对象,可按 superclass/class/layer/名称通配符过滤,支持 limit/offset 分页并返回 count。只读,适合先摸清场景再决定操作。namePattern 用 * 作通配,例如 Box* [English] List scene objects, filterable by superclass/class/layer/name wildcard, paginated with limit/offset and a count field. Read-only, use it to survey the scene first. namePattern uses * as wildcard, e.g. Box.*

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNosuperClass 的别名。 | Alias of superClass.
classNo按确切类名过滤,例如 Box、Editable_Poly。 | Filter by exact class, e.g. Box, Editable_Poly.
layerNo按层名过滤。 | Filter by layer name.
limitNo每页最多条数,默认 200。 | Max per page, default 200.
offsetNo分页偏移,默认 0。 | Pagination offset, default 0.
superClassNo按 superclass 过滤,例如 GeometryClass、Shape、Light、Camera、Helper。 | Filter by superclass, e.g. GeometryClass, Shape, Light, Camera, Helper.
namePatternNo名称通配符,例如 Box*、*prop*。 | Name wildcard, e.g. Box*, *prop*.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the read-only statement alone adds little. However, the description goes beyond annotations by disclosing that the response includes a count field and by documenting the wildcard behavior for namePattern (* as wildcard, e.g. Box*). These are useful behavioral details not present in the structured fields.

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?

The description is compact and front-loaded: it opens with the core purpose and filters, then adds the read-only usage context, and ends with the practical wildcard example. The bilingual structure is slightly redundant but serves a clear audience need without padding.

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?

For a read-only listing tool with no output schema, the description covers the key operational aspects: purpose, filters, pagination, wildcard syntax, and intended usage. The main gap is that it does not spell out the full return format beyond the count field, but the name and context make the list-of-objects result reasonably inferable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds meaningful value by explicitly specifying the wildcard syntax for namePattern ('* as wildcard, e.g. Box*'), which is not described in the schema. The other parameters are already well-covered by their schema descriptions.

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?

The description uses a specific verb and resource: 'List scene objects', and clearly enumerates the filtering dimensions (superclass/class/layer/name wildcard) and pagination features. It also frames the tool as a read-only survey operation, which distinguishes it from the many mutation-oriented sibling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly states the intended use: 'Read-only, use it to survey the scene first' (先摸清场景再决定操作). This gives clear contextual guidance, though it does not name specific alternative tools or state exclusions, so it falls short of a full 5.

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