Retro Diffusion Pixel Art

Real pixel art in your AI assistant: sprites, animations, tilesets, and editing tools via the Retro Diffusion API.

Documentation

Retro Diffusion

Retro Diffusion MCP Server

Generate real pixel art — sprites, characters, animations, and tilesets — from any MCP-capable AI assistant.
Grid-aligned pixels, controlled palettes, transparent backgrounds. Not "pixel-art style" images. The real thing.

Website · API Docs · API Examples · Discord

Add to Cursor MIT License Streamable HTTP


This is a hosted, remote MCP server — nothing to install or run locally. Point your client at the endpoint, add your API key, and your assistant can browse 90+ pixel art styles, estimate costs for free, and generate game-ready art.

Endpoint:  https://mcp.retrodiffusion.ai/mcp     (Streamable HTTP)
Auth:      Authorization: Bearer <your API key>   (keys start with rdpk-)

Get an API key (2 minutes)

  1. Create a free account at retrodiffusion.ai — new accounts include free starter credits.
  2. Open Developer Tools and click Create API Key.

Pricing is pay-per-generation (from ~$0.01 per image), prepaid, no subscription, and credits never expire. Cost estimation is always free, so your agent can check the price of anything before spending.

Setup by client

Claude Code

claude mcp add --transport http retro-diffusion https://mcp.retrodiffusion.ai/mcp \
  --header "Authorization: Bearer rdpk-YOUR-KEY"

Or install the plugin (bundles the server plus a pixel-art workflow skill):

/plugin marketplace add Retro-Diffusion/retro-diffusion-mcp
/plugin install pixel-art@retro-diffusion

Cursor

Click the Add to Cursor badge above, then replace YOUR_API_KEY — or add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "retro-diffusion": {
      "url": "https://mcp.retrodiffusion.ai/mcp",
      "headers": { "Authorization": "Bearer rdpk-YOUR-KEY" }
    }
  }
}

VS Code (GitHub Copilot)

Add to mcp.json (Command Palette → "MCP: Add Server" → HTTP):

{
  "servers": {
    "retro-diffusion": {
      "type": "http",
      "url": "https://mcp.retrodiffusion.ai/mcp",
      "headers": { "Authorization": "Bearer rdpk-YOUR-KEY" }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "retro-diffusion": {
      "serverUrl": "https://mcp.retrodiffusion.ai/mcp",
      "headers": { "Authorization": "Bearer rdpk-YOUR-KEY" }
    }
  }
}

Claude Desktop

Use mcp-remote in claude_desktop_config.json:

{
  "mcpServers": {
    "retro-diffusion": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.retrodiffusion.ai/mcp",
        "--header",
        "Authorization: Bearer rdpk-YOUR-KEY"
      ]
    }
  }
}

Anything else

Any MCP client that speaks Streamable HTTP works: URL https://mcp.retrodiffusion.ai/mcp, header Authorization: Bearer rdpk-YOUR-KEY.

Tools

Generate

ToolWhat it does
create_inferenceGenerate images, animations (GIF/sprite sheet), or tilesets. Prefer RD Pro styles for top quality
start_inference_jobStart generation as an async job — recommended for animations and batches
get_inference_jobPoll an async job for status and results
estimate_inference_costFree price check for any generation before running it

Edit — post-process any image

ToolWhat it does
list_edit_toolsEnabled edit tools with their fields, costs, and limits
run_edit_toolRun an edit tool: background remover, palette converter, color reducer, pixel correction, rotation, K-centroid downscale (free–$0.01) · image edit, inpainting, outpainting, seam tiling (premium)
estimate_edit_tool_costFree cost/duration estimate for any edit

Styles

ToolWhat it does
list_available_stylesLive style catalog with per-style size limits and capabilities
list_available_modelsThe model families: RD Fast, RD Plus, RD Pro, RD Mini
get_style_usageUsage guidance and constraints for a specific style
create_user_styleCreate a custom style from a reference image (RD Pro template)
update_user_styleModify one of your custom styles
delete_user_styleRemove one of your custom styles

Account

ToolWhat it does
authenticateValidate an API key and attach it to the session
get_balanceCheck remaining prepaid balance and credits
get_service_statusSubsystem health check (no auth required)
logoutClear the stored session key

What you can make

  • Sprites & characters — 90+ styles: portraits, game assets, isometric, top-down, platformer, 1-bit, Minecraft items/textures, UI elements, item sheets, character turnarounds
  • Animations — walk/idle/jump/crouch/attack cycles from a start frame, four-angle walk cycles, 8-direction rotations, VFX, battle sprites; GIF or sprite-sheet output
  • Tilesets — Wang/blob tilesets, tile variations, single tiles, scene objects
  • Consistent characters — generate once with RD Pro, then pass the output as a reference image in follow-up generations (up to 9 references)
  • Edits — img2img, seamless tiling, transparent backgrounds, palette-constrained output

Example prompts to try once connected:

"List the available pixel art styles for animations, then estimate what a 64×64 walking animation would cost."

"Generate a 128×128 pixel art knight resting by a campfire, RD Pro default style, transparent background."

"Create a 16×16 Wang tileset: grey stone path tiles blending into lush grass."

Prompting tips (important)

  • Describe the subject only — never write "pixel art" in the prompt; the style handles the rendering.
  • Sizes run 16×16 to 384×384 depending on style; list_available_styles gives exact per-style limits.
  • Costs range from ~$0.015 (RD Fast) to $0.18/image (RD Pro); animations $0.07–$0.25; tilesets $0.10. estimate_inference_cost is always free — use it first.
  • Reuse a seed to iterate on the same composition while changing only the prompt.

Who makes this

Retro Diffusion is built by Astropulse — a pixel artist with seven years of freelance experience before building the tool — and is used in production by studios and platforms including Replicate, Poe (Quora), and Scenario. It's designed by artists and held to artist-grade quality standards.

Support

License

The contents of this repository (documentation and manifests) are MIT licensed. The Retro Diffusion service itself is governed by its Terms of Service.