Skip to main content
Glama

add_frame

Add a new animation frame to a pixel art layer in Piskel projects to create or extend animations.

Instructions

Add a new frame to a layer

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectIdYesProject identifier
layerIndexNoIndex of the layer (default: 0)

Implementation Reference

  • The implementation of the `add_frame` tool handler. It adds a new frame to all layers of the specified Piskel project.
    private addFrame(projectId: string, _layerIndex: number): object {
      const piskel = this.getProject(projectId);
    
      // Add frame to all layers
      for (let i = 0; i < piskel.getLayerCount(); i++) {
        const layer = piskel.getLayerAt(i);
        if (layer) {
          layer.addFrame(new Frame(piskel.getWidth(), piskel.getHeight()));
        }
      }
    
      return {
        success: true,
        frameIndex: piskel.getFrameCount() - 1,
      };
    }
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states 'Add a new frame' but doesn't clarify if this is a mutation (likely yes), what permissions are needed, how it affects existing frames/layers, or what the response looks like. This leaves critical behavioral traits unspecified for a tool that appears to modify project 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?

The description is a single, efficient sentence with no wasted words. It's front-loaded with the core action and resource, making it easy to parse quickly. Every part of the sentence contributes directly to understanding the tool's purpose.

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?

Given the complexity of a tool that likely modifies project state (adding frames to layers), the lack of annotations and output schema means the description should provide more context. It doesn't explain what a 'frame' entails in this system, how the addition affects the project, or what happens upon success/failure, making it incomplete for safe and effective use.

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 input schema has 100% description coverage, with clear documentation for both parameters ('projectId' and 'layerIndex'). The description adds no additional meaning beyond what the schema provides, such as explaining what a 'frame' is or how 'layerIndex' interacts with the layer structure. This meets the baseline score of 3 given the high schema coverage.

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 action ('Add') and the resource ('a new frame to a layer'), making the purpose understandable. However, it doesn't distinguish this tool from sibling tools like 'duplicate_frame' or 'remove_frame', which would require more specific context about what makes 'add_frame' unique.

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 provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing project or layer), exclusions, or comparisons to siblings like 'duplicate_frame' or 'clear_frame', leaving the agent with minimal context for selection.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/yafeiaa/piskel-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server