Draw pixel-art tiles and tilesets for 2D games, with PNG+metadata export for Unity.
MCPpedia last refreshed this data
io.github.syuaibsyuaib/ssyubix-pixelart-mcp is an MCP server that draw pixel-art tiles and tilesets for 2D games, with PNG+metadata export for Unity. Its tool list has not been published yet over stdio and sse, requires no API key, and scores 85/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"pixelart": {
"args": [
"-m",
"pixelart_mcp.server"
],
"command": "/path/to/ssyubix-pixelart-mcp/venv/bin/python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server (Python) for drawing pixel art and assembling 2D game tilesets. Built with MCP Python SDK v1.x (stable), stdio transport, designed to be used alongside unity-mcp-server in a single agent session.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'ssyubix-pixelart-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked ssyubix-pixelart-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data
Manage Supabase projects — databases, auth, storage, and edge functions
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
DataForSEO API modelcontextprotocol server
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for io.github.syuaibsyuaib/ssyubix-pixelart-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server (Python) for drawing pixel art and assembling 2D game tilesets.
Built with MCP Python SDK v1.x
(stable), stdio transport, designed to be used alongside
unity-mcp-server in a single agent session.
From PyPI:
pip install ssyubix-pixelart-mcp
Or from source:
git clone https://github.com/syuaibsyuaib/ssyubix-pixelart-mcp
cd ssyubix-pixelart-mcp
python3 -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -e .
python -m pixelart_mcp.server
# or, if installed from PyPI:
ssyubix-pixelart-mcp
Add to claude_desktop_config.json (Claude Desktop) or via
claude mcp add (Claude Code):
{
"mcpServers": {
"pixelart": {
"command": "/path/to/ssyubix-pixelart-mcp/venv/bin/python",
"args": ["-m", "pixelart_mcp.server"]
}
}
}
Drawing
pixelart_create_canvas, pixelart_import_canvas, pixelart_set_pixel, pixelart_draw_line, pixelart_draw_rect, pixelart_draw_circle, pixelart_draw_polygon, pixelart_flood_fillCanvas Management
pixelart_clear_canvas, pixelart_flip_canvas, pixelart_duplicate_canvas, pixelart_get_canvas_info, pixelart_get_canvas_preview, pixelart_delete_canvas, pixelart_list_canvasesColor Palette
pixelart_generate_palette, pixelart_extract_paletteSize Suggestion
pixelart_suggest_tile_size, pixelart_suggest_tilemap_layoutTileset
pixelart_create_tileset, pixelart_set_tile, pixelart_export_tileset, pixelart_delete_tileset, pixelart_list_tilesetsThese are easy to conflate and doing so produces broken/tiny output — a real bug that happened in production: an agent asked for a "tilemap" got back a single 32x32 canvas (that's a tile size) and shipped it as the whole map, which looked broken when used at real scale.
pixelart_create_canvas.pixelart_create_tileset + pixelart_set_tile + pixelart_export_tileset.For a single asset/tile:
pixelart_suggest_tile_size (optional) — ask for ideal tile size based on object category or screen resolution.pixelart_generate_palette — create color palette according to style/mood.pixelart_create_canvas → pixelart_set_pixel / draw_line / draw_rect / draw_circle / flood_fill — draw a single tile.pixelart_get_canvas_preview — view the result (upscaled PNG) before proceeding.For a tileset or a full tilemap/level:
5. pixelart_suggest_tilemap_layout — get the grid (columns/rows) and total pixel
size needed, from either an explicit tile count or a target screen/level size.
6. pixelart_create_tileset with that grid → pixelart_set_tile for every slot → pixelart_export_tileset.
7. The result of export_tileset is PNG + JSON metadata (tile size, grid, PPU) —
the agent can then call unity-mcp-server tools to slice/import into a Unity project.