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: Build and run the Docker image: Or use the provided build scripts: - Linux/macOS: chmod +x build-docker.sh && ./build-docker.sh - Windows: .\build-docker.ps1 See DOCKER.md for detailed Docker setup instructions. To have the container install Aseprite via Ste
Add this skill
npx mdskills install diivi/aseprite-mcpProvides MCP integration for Aseprite but lacks tool descriptions and usage examples
1# Aseprite MCP Tools23A Python module that serves as an MCP server for interacting with the Aseprite API45Demo where Cursor draws a cloud in aseprite using the MCP:67https://github.com/user-attachments/assets/572edf75-ab66-4700-87ee-d7d3d196c59789## Docker Usage1011### Quick Start1213Build and run the Docker image:14```bash15docker build -t aseprite-mcp:latest .16docker run -it --rm aseprite-mcp:latest17```1819Or use the provided build scripts:20- **Linux/macOS**: `chmod +x build-docker.sh && ./build-docker.sh`21- **Windows**: `.\build-docker.ps1`2223### Using Docker Compose24```bash25# Production26docker-compose up aseprite-mcp2728# Development mode29docker-compose --profile dev up aseprite-mcp-dev30```3132See [DOCKER.md](DOCKER.md) for detailed Docker setup instructions.3334### Optional: Install Aseprite via Steam3536To have the container install Aseprite via SteamCMD at startup, provide Steam credentials:3738```powershell39# Create a .env with STEAM_USERNAME/STEAM_PASSWORD (and optional STEAM_GUARD_CODE)40# Then41docker run --rm -i --env-file .env aseprite-mcp:latest42```4344If installed, the binary will be at `/opt/steamapps/common/Aseprite/aseprite` and `ASEPRITE_PATH` will be picked up automatically.4546## Local Installation4748### Prerequisites49- Python 3.13+50- `uv` package manager5152### Installation:53```json54{55 "mcpServers": {56 "aseprite": {57 "command": "/opt/homebrew/bin/uv",58 "args": [59 "--directory",60 "/path/to/repo",61 "run",62 "-m",63 "aseprite_mcp"64 ]65 }66 }67}68```69
Full transparency — inspect the skill content before installing.