Skip to main content
Glama

download_character_spritesheet

Export a generated character as a spritesheet ZIP containing a uniform-grid PNG and layout JSON. Use when you need a single sprite sheet with frames organized by rotation and animation direction.

Instructions

Export a character as a single spritesheet: a small ZIP holding one uniform-grid PNG (row 0 = rotations, then one row per animation-direction, columns = frames) plus a layout JSON describing cell size and which animation/direction each row holds. Frames are centred in equal cells and never rescaled. Saves to pixellab-forge-output and returns the file path. Use download_character_zip instead for individual frame PNGs. Returns an error while the character is still generating (HTTP 423).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
character_idYesCharacter ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.8.0

TDQS

A4.7/5.0
Behavior5/5

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

There are no annotations, so the description carries the full burden, and it does well. It discloses output contents, grid row/column semantics, cell centering, no-rescaling behavior, the output destination folder, the returned file path, and the 423 error state.

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?

Every sentence earns its place: output format, grid layout, behavior, destination, return value, alternative, and error condition. The main action is front-loaded, and the technical details are compactly organized.

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

Completeness5/5

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

For a single-parameter export tool with no annotations and no output schema, the description covers input, output format, file destination, return value, error behavior, and the sibling alternative. Nothing critical to invoking it correctly is missing.

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?

The single parameter character_id is already 100% covered by the schema with 'Character ID'. The description adds only indirect context (the character must be fully generated), so it meets the baseline but does not go beyond it.

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 opens with a specific verb and resource: 'Export a character as a single spritesheet', and precisely characterizes the output format (ZIP with uniform-grid PNG plus layout JSON). It explicitly contrasts with download_character_zip, making sibling differentiation clear.

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

Usage Guidelines5/5

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

It names the alternative tool and the exact condition for choosing it: 'Use download_character_zip instead for individual frame PNGs.' It also warns that calling during character generation returns HTTP 423, telling the agent when not to call.

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