Skip to main content
Glama
vino3dx
by vino3dx

export_abc

Destructive

Export 3ds Max scenes or selected objects to Alembic (.abc) format for interchange with other DCC tools. Specify the output file path; if the Alembic plugin is missing, the call returns an error.

Instructions

导出 Alembic (.abc)。Alembic 是插件,若本机未安装会直接报错(err.class_missing)。 [English] Export Alembic (.abc). Alembic is a plugin - if this Max lacks it the call fails with err.class_missing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes输出 .abc 文件路径。 | Output .abc path.
selectedNo是否只导出当前选择,默认是。 | Export only the current selection, default true.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already mark this as non-read-only and destructive, and the description adds a concrete failure mode: if Alembic is not installed, the call fails with err.class_missing. It does not discuss file overwrite or report return behavior, but the plugin dependency warning is useful context beyond the annotations.

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 states the purpose first, then the critical plugin prerequisite. The bilingual repetition is not filler; it serves the likely MaxScript/3ds Max audience without adding unnecessary detail.

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 two-parameter export tool with no output schema, the description covers the format, the path parameter, the selection default via the schema, and the most important environmental failure. It could mention return/report behavior, but the plugin warning makes it adequate for an agent to call the tool correctly.

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%; path and selected are already documented in the input schema. The description does not add extra parameter-level meaning, so the baseline score of 3 is 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 clearly states the verb and resource: 'Export Alembic (.abc)'. This identifies the tool as the Alembic export option among many export_* siblings, though it does not explicitly name a sibling or scope beyond the schema's selection parameter.

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?

The implied use is when an Alembic .abc export is needed, and it gives an important prerequisite warning: the Alembic plugin must be installed or the call fails with err.class_missing. However, it provides no explicit when-not-to-use guidance or alternatives compared to export_fbx, export_usd, or export_selection.

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