Skip to main content
Glama

Ase Save As

ase_save_as

Save a sprite copy to a new path by specifying the source sprite file and the desired output destination.

Instructions

Save a sprite copy to a new path.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
out_pathYes
sprite_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.1/5.0
Behavior1/5

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

There are no annotations, so the description carries full responsibility for behavioral disclosure. The description only states the action; it does not mention whether the original sprite is modified, whether the output overwrites existing files, format support, error conditions, or any side effects. For a save operation, this is a critical gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no waste, but it is under-specified. Conciseness is achieved at the expense of essential information. It does not front-load any useful constraints or context beyond the minimal action.

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

Completeness1/5

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

For a two-parameter save tool with no annotations, the description is severely incomplete. It does not explain return values (despite an output schema), file format behavior, overwrite policies, or any edge cases. An agent cannot reliably invoke this tool correctly based on the provided information.

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

Parameters1/5

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

Schema description coverage is 0% – the description does not mention any parameters. The schema only provides field names (sprite_path, out_path) with no additional meaning. Since coverage is low, the description should compensate by explaining parameter roles, but it does not, leaving the agent to guess semantics from names alone.

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 'Save a sprite copy to a new path' clearly states a specific action (save), the resource (sprite copy), and the destination (new path). It is not a tautology and conveys the core function. However, it does not explicitly differentiate from sibling tools like ase_export_sprite, which also involves saving sprite data, though 'copy' hints at non-destructive saving.

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 is given about when to use this tool versus alternatives. It does not mention conditions, prerequisites, or contrast with export tools. An agent is left to infer when 'save a copy' is preferred over ase_export_sprite or ase_export_spritesheet.

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