Aseprite MCP Tools
A Python module that serves as an MCP server for interacting with the Aseprite API
Demo where Cursor draws a cloud in aseprite using the MCP:
https://github.com/user-attachments/assets/572edf75-ab66-4700-87ee-d7d3d196c597
Docker Usage
Quick Start
Build and run the Docker image:
docker build -t aseprite-mcp:latest .
docker run -it --rm aseprite-mcp:latest
Or use the provided build scripts:
- Linux/macOS:
chmod +x build-docker.sh && ./build-docker.sh - Windows:
.\\build-docker.ps1
Using Docker Compose
# Production
docker-compose up aseprite-mcp
# Development mode
docker-compose --profile dev up aseprite-mcp-dev
See DOCKER.md for detailed Docker setup instructions.
Optional: Install Aseprite via Steam
To have the container install Aseprite via SteamCMD at startup, provide Steam credentials:
# Create a .env with STEAM_USERNAME/STEAM_PASSWORD (and optional STEAM_GUARD_CODE)
# Then
docker run --rm -i --env-file .env aseprite-mcp:latest
If installed, the binary will be at /opt/steamapps/common/Aseprite/aseprite and ASEPRITE_PATH will be picked up automatically.
Local Installation
Prerequisites
- Python 3.13+
uvpackage manager
Installation:
{
"mcpServers": {
"aseprite": {
"command": "/opt/homebrew/bin/uv",
"args": [
"--directory",
"/path/to/repo",
"run",
"-m",
"aseprite_mcp"
]
}
}
}
Recommend MCP Servers 💡
godot-mcp
MCP server for interfacing with Godot game engine. Provides tools for launching the editor, running projects, and capturing debug output.
ida-pro-mcp
MCP Server for IDA Pro.
phxdev1/archy-mcp
An MCP server that generates architectural diagrams using Mermaid syntax from text descriptions or GitHub repositories
mvf1-cli
A Python package and command line interface to control video players for MultiViewer For F1, the best way to watch Formula 1.
ph0ryn/Discord-webhook-MCP
A MCP server that enables sending messages to Discord via webhook using the Model Context Protocol.
python-interpreter-mcp
A lightweight MCP server to execute arbitrary Python scripts in an isolated environment via LLMs.