Skip to main content
Glama

create_tag

Create animation tags for frame ranges in Aseprite, naming segments like 'walk' or 'idle' to organize sprite animations.

Instructions

Creates an animation tag for a range of frames (e.g. 'walk', 'idle').

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesTag name e.g. 'idle', 'run'
colorNoOptional UI color for tag
toFrameYesEnd frame number
fromFrameYesStart frame number

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 carries the full behavioral burden for a mutation tool. It does not say whether tag names must be unique, what happens on a duplicate name, whether the tag persists to the file, or what happens if fromFrame/toFrame exceed the sprite's length.

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?

A single front-loaded sentence with the verb first and no wasted words. It is efficient, though the brevity leaves little structure to work with for a four-parameter mutation tool.

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

Completeness2/5

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

For a mutation tool with no annotations and no output schema, the description is too thin: it omits uniqueness constraints, error behavior, and whether the new tag is returned or how it is confirmed. The schema covers parameter shapes but the description should carry the rest.

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 every parameter is already documented in the schema, including the name examples the description repeats. The description adds only the framing that fromFrame/toFrame define a range, which is already evident from the schema; baseline 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?

States a specific verb and resource ('Creates an animation tag') plus the scope it applies to ('a range of frames'), which is enough to separate it from list_tags. It stops short of explicitly contrasting itself with any sibling tool, but the purpose is unambiguous.

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 gives no when-to-use guidance, no prerequisites (e.g. a sprite must be open), and no mention of alternatives such as list_tags for inspecting existing tags. Only implied usage is available from the verb.

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