aseprite-mcp

MCP server for interacting with the Aseprite API

GitHub Stars

82

User Rating

Not Rated

Favorites

0

Views

22

Forks

9

Issues

3

Installation
Difficulty
Beginner
Estimated Time
5-10 minutes

Installation

Installation

Prerequisites

Please specify required software and versions:
Python: 3.6 or higher
Aseprite: Latest version

Installation Steps

1. Clone Repository

bash
git clone https://github.com/diivi/aseprite-mcp.git
cd aseprite-mcp

2. Install Dependencies

bash
pip install -r requirements.txt

3. Configure MCP Server

Edit claude_desktop_config.json to add the MCP server:
json
{
  "mcpServers": {
    "aseprite": {
      "command": "/opt/homebrew/bin/uv",
      "args": ["--directory", "/path/to/repo", "run", "-m", "aseprite_mcp"]
    }
  }
}

4. Start Server

bash
uv run -m aseprite_mcp

Troubleshooting

Common Issues

Issue: Server won't start Solution: Check Python version and reinstall dependencies. Issue: Aseprite does not recognize the MCP server Solution: Verify configuration file path and syntax.

Additional Resources