npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iborymagic/aseprite-mcp

v0.5.0

Published

MCP server for using Aseprite API

Readme

Aseprite-MCP

This server automates Aseprite workflows using the Model Context Protocol (MCP).
It enables AI, chat assistants, and automation pipelines to directly execute Aseprite tasks such as sprite sheet export, frame extraction, and metadata output.

*Aseprite must be installed in order to use this MCP server.

Features Overview

V1 - Export/Utility

Supports fundamental Aseprite export workflow:

  • aseprite_check_environment: Checks Aseprite installation status, executable path, and version
  • aseprite_export_sheet: Exports a sprite sheet as PNG + JSON
  • aseprite_export_frames: Exports each animation frame as an individual PNG file
  • aseprite_export_metadata: Exports Aseprite metadata in JSON format

V2 - Lua Automation

Adds deeper control using Aseprite Lua scripting, enabling safe AI-driven editing operations such as:

  • aseprite_list_lua_templates: Lists available Lua templates
  • Predefined safe Lua automation(templates)
    • get_active_sprite_info: Provides basic information about the currently active sprite
    • get_frame_info: Inspects the animation timeline and frame structure of the active sprite
    • get_layer_list: Returns a full structural overview of all layers in the active sprite, including groups
    • get_tag_list: Lists all animation tags defined in the active sprite
    • get_is_layer_exists: Checks whether a layer with a specific name exists
    • get_is_tag_exists: Checks whether a specific animation tag exists
    • get_palette_info: Inspects the current palette of the active sprite
    • get_selection_bounds: Inspects the current selection state and its bounds
    • remove_layer_by_name: Removing specific layers
    • recolor_palette: Palette recoloring
    • normalize_animation_speed: Normalizing animation speed
    • auto_crop_transparent: Removing empty transparent borders around the sprite
    • export_layer_only: Exporting only a specific layer as a flattened PNG image
    • export_tag_frames: Exporting all frames within a specific animation tag as individual PNG files
    • merge_visible_layers: Merging all currently visible layers into a single layer
  • aseprite_run_lua_script: Executes a raw Lua script (advanced / unsafe)

How to use

  1. Run directly with npx
npx -y @iborymagic/aseprite-mcp
  1. Local Build & Run (for development)
npm install
npm run build
npx @iborymagic/aseprite-mcp

Using with Claude Desktop

Add the following to your claude_desktop_config.json

{
  "mcpServers": {
    "aseprite-mcp": {
      "command": "npx",
      "args": ["-y", "@iborymagic/aseprite-mcp"]
    }
  }
}

Using with Cursor

Add the following to your mcp.json

{
  "mcpServers": {
    "aseprite-mcp": {
      "command": "npx",
      "args": ["-y", "@iborymagic/aseprite-mcp"]
    }
  }
}