==================
      
       /// MCP ///
      /// ASE ///
        
    ==================
        
    [server:online]
    [protocol:ready]aseprite-mcp
by diivi
Python MCP server enabling programmatic control of Aseprite through its API.
70
8
Open SourceInstallation
1. Clone the repository
git clone https://github.com/diivi/aseprite-mcp.git
cd aseprite-mcp2. (Recommended) Create and activate a Python virtual environment
python -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate3. Install server dependencies
pip install -r requirements.txt4. Configure environment variables the server needs to talk to Aseprite
export ASEPRITE_HOST=127.0.0.1
export ASEPRITE_PORT=8420
export ASEPRITE_API_TOKEN=<your-aseprite-api-token>5. Launch the MCP server
python mcp_server.py     # or the main entry point defined by the project6. Verify the server is running (default http://localhost:3000 or as documented)
Documentation
License: MIT License
Updated 7/30/2025