# PixelLab

Generate animated pixel art characters, tilesets, and object directly from your AI coding assistant!

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add samedii/pixellab

# Browse available tools
npx -y @smithery/cli@latest tool list samedii/pixellab

# Get full schema for a tool
npx -y @smithery/cli@latest tool get samedii/pixellab create_character

# Call a tool
npx -y @smithery/cli@latest tool call samedii/pixellab create_character '{}'
```

## Direct MCP Connection

Endpoint: `https://pixellab--samedii.run.tools`

## Tools (19)

- `create_character` — Queue a character creation job with 4 or 8 directional views.
- `animate_character` — Queue animation jobs for an existing character.
- `get_character` — Get complete character information including rotations, animations, and download link.
- `list_characters` — List all your created characters.
- `delete_character` — Delete a character and all its associated data.
- `create_isometric_tile` — Create an isometric tile with pixel art style.
- `get_isometric_tile` — Retrieve an isometric tile by ID. Returns tile data if completed, or status information if still processing.
- `list_isometric_tiles` — List all your created isometric tiles.
- `delete_isometric_tile` — Delete an isometric tile by ID. Only the owner can delete their own tiles.
- `create_map_object` — Create a pixel art object with transparent background for use in game maps.
- `get_map_object` — Get map object information and status.
- `create_topdown_tileset` — Generate a Wang tileset for top-down game maps with corner-based autotiling.
- `get_topdown_tileset` — Retrieve a topdown tileset by ID. Returns tileset data with PNG and metadata download links if completed, or status inf…
- `list_topdown_tilesets` — List all tilesets created by the authenticated user.
- `delete_topdown_tileset` — Delete a topdown tileset by ID. Only the owner can delete their own tilesets.
- `create_sidescroller_tileset` — Generate a sidescroller tileset for 2D platformer games with side-view perspective.
- `get_sidescroller_tileset` — Retrieve a sidescroller tileset by ID. Returns tileset data with PNG and metadata download links if completed, or statu…
- `list_sidescroller_tilesets` — List all sidescroller tilesets created by the authenticated user.
- `delete_sidescroller_tileset` — Delete a sidescroller tileset by ID. Only the owner can delete their own sidescroller tilesets.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get samedii/pixellab <tool-name>
```

## Resources

- `pixellab://docs/python/sidescroller-tilesets` — Quick Python implementation guide for PixelLab sidescroller tilesets
- `pixellab://docs/godot/sidescroller-tilesets` — Complete Godot 4.x sidescroller tileset implementation guide with PixelLab MCP integration and headless GDScript conver…
- `pixellab://docs/unity/isometric-tilemaps-2d` — Complete Unity 2D isometric tilemap implementation guide with elevation support
- `pixellab://docs/godot/isometric-tiles` — Complete Godot 4.x isometric tiles guide with PixelLab MCP integration and proper TileSet configuration
- `pixellab://docs/godot/wang-tilesets` — Complete Godot 4.x Wang tileset implementation guide with PixelLab MCP integration and headless GDScript converter
- `pixellab://docs/python/wang-tilesets` — Quick Python implementation guide for PixelLab Wang tilesets
- `pixellab://docs/overview` — Complete PixelLab platform overview including all interfaces,

## Prompts (1)

- `create_map_object_example` — Simple example of creating a pixel art map object.
