Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Quick update: v1.3.0 just shipped with streamable HTTP transport support!

You can now run the server in HTTP mode:

python server/server.py --transport streamable-http --port 8000

Default is still stdio (no changes needed for existing setups). The HTTP mode enables remote connections and web-based MCP clients.

Thanks for the suggestion @InfernalDread!

Fantastic! Thank you for your quick responses and adjustments! Is it possible for you to add the http mode for your Aseprite MCP tool in the future?

Just shipped it! v1.1.0 adds streamable HTTP transport for Aseprite MCP Pro.

Start the server with:

  node server/build/index.js --http

Then configure your client:

  {

    "mcpServers": {

      "aseprite-mcp-pro": {

        "type": "streamable-http",

        "url": "http://127.0.0.1:8003/mcp"

      }

    }

  }

Port is customizable with --http-port or the ASEPRITE_MCP_HTTP_PORT env var (default: 8003).

Let me know how it goes!

Sweet! Thank you very much!