SkinForge MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SkinForge MCPCreate a techwear hoodie skin with neon cyan accents and render 3D preview"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SkinForge MCP ๐จ๐จ
Autonomous Model Context Protocol (MCP) Server & Procedural Engine for Minecraft Skins.
SkinForge is an all-in-one professional toolkit designed for both human skin artists and autonomous AI/LLM coding agents (Antigravity, Gemini, Claude, GPT-4o, Cursor, Kilo) to create, sample, inspect, edit, audit, and visually verify Minecraft skins with true 3D dual-layer depth โ without requiring ad-hoc Python scripts.
๐ Key Features
1. 45 Native MCP Tools for AI Agents
Model Context Protocol (MCP) v3: Enables LLMs to design, recolor, audit, and verify skins directly over stdio.
Full Skin Assembly & VLM Fine-Tuning (
skin_build): Assembles complete 64ร64 dual-layer skins in a single atomic call using a global palette and ASCII matrices (~1,200 tokens vs 20,000 for raw pixels), purpose-built for Vision-Language model fine-tuning.Direct Reference Sampling (
skin_sample_reference): Samples exact colors or extracts dominant palettes from concept art (reference.jpeg) and screenshots without writing Python scripts.Multimodal Visual Feedback (
skin_render_3d,skin_render_2d): Generates and returns base64 PNG turnaround images directly inside tool results for autonomous visual verification.
2. Real-Time 3D WebGL Viewer with Live Sync (viewer.py)
Interactive Three.js Player: Orbit rotate (Left Click drag), pan (Right Click drag), zoom (Scroll), and preview walk/run animations.
Instant Reactive Updates (300ms): The moment an AI agent or developer calls an editing tool, the 3D model in the browser automatically updates its texture with zero lag, preserving camera angles and animation state.
Live Status Indicator: Header dot pulses violet when updates arrive and returns to emerald green.
3. Dual-Layer 3D Depth Discipline (The 4 Golden Rules)
Rule 1 (Zero Holes): Strictly enforces 100% opacity on all 36 Base Layer parts (prevents the hollow black skull/torso bug).
Rule 2 (+0.35 Relief): Restricts Layer 2 exclusively to 3D relief accents (bangs, hood rims, cuffs, pockets, emblems).
Rule 3 (No Floating Profile Cardboard):
hat_frontrows 4โ7 are kept transparent to prevent detached cardboard planes in 90ยฐ profile view.Rule 4 (No Floating Crown Planks):
hat_topis either solid or transparent, eliminating single detached hovering stripes.Autonomous Self-Healing (
skin_auto_fix): One-click autonomous healing that plugs holes and strips illegal floating planes.
4. Vectorized HSL / HSV Color Engine
Pure-NumPy color manipulation running in < 1 millisecond.
Rotate hue, boost saturation, or adjust brightness across specific parts or the entire skin with optional target color filtering (
skin_adjust_hsv,skin_shift_hue).
5. 3D Seam Continuity Auditor & Edge Healer
3D Edge Connectivity Matrix: Scans cube fold boundaries (head vertical ring, top crown fold, torso flanks, jacket) to detect texture tears or color misalignments.
Auto-Healing (
skin_align_seams): Harmonizes and blends color jumps along adjacent 3D cube edges.
6. Pixel Typography & Cyber Symbols
3ร5 Pixel Font Matrix (
skin_draw_text): Writes crisp letters (AโZ), numbers (0โ9), and punctuation (!, ?, -, :, .) on any face.Emblem Library (
skin_draw_symbol): Instantly stamps cyber emblems (cyber_s6ร8 crest,heart,star,lightning,skull,cross) without coordinate guesswork.
7. Full Outfits Macro & Model Converter
Coordinated Outfits (
skin_apply_outfit): Applies full-body anatomical outfits (techwear_hoodie,cargo_streetwear,casual_tshirt) across Layer 1 and Layer 2 in a single call.Geometry Converter (
skin_convert_model): Seamlessly converts between classic Steve (4px arms) and Alex Slim (3px arms) with UV island resampling.
8. Multi-Target Synchronization & Auto-Previews (skin_save)
Automatically saves to primary destination, synchronizes across canonical project paths, and regenerates 2D composite, 3D turnaround, and bottom-up previews in one atomic tool call.
9. Canvas History, Undo/Redo & Named Checkpoints
Full undo/redo stack (
skin_undo,skin_redo).Save milestone snapshots (
skin_checkpoint) and instantly roll back (skin_restore_checkpoint).
Related MCP server: VoxelForge
๐ Repository Layout
SkinForge/
โโโ instructions.md # System instructions & architectural guide for AI models / MCP clients
โโโ pyproject.toml # Standard Python packaging metadata
โโโ README.md # Project overview & documentation
โโโ cli.py # Command-line interface
โโโ mcp_server.py # Stdio MCP server entry point
โโโ viewer.py # Interactive 3D WebGL viewer server (port 8080)
โโโ skinforge/ # Core library
โ โโโ __init__.py # Public exports
โ โโโ mcp_server.py # MCPServer implementation (44 tools, 4 resources, 2 prompts)
โ โโโ canvas.py # SkinCanvas, 72 UV parts, undo/redo, HSV adjustments
โ โโโ seams.py # 3D wrap-around seam auditing and edge blending
โ โโโ typography.py # 3x5 pixel font matrix & cyber symbols
โ โโโ outfits.py # Full anatomical outfit macros
โ โโโ converter.py # Steve 4px <-> Alex 3px slim model converter
โ โโโ ascii_codec.py # ASCII reverse-engineering & color normalization
โ โโโ templates.py # Solid humanoid template generator (0 holes)
โ โโโ renderer.py # Software 3D rasterizer, 2D composite, turntable GIF
โ โโโ validator.py # Quality auditor & layer rule enforcement
โ โโโ palettes.py # Color palettes & 5-step shading ramps
โ โโโ presets.py # Anatomical presets (eyes, drawstrings, cargo pockets)
โ โโโ sampler.py # Reference art sampler & dominant palette extractor
โโโ tests/
โ โโโ test_mcp_server.py # Comprehensive unit test suite (16 tests)
โโโ examples/
โ โโโ build_syntren.py # Reference script building the Syntren skin
โโโ skins/
โ โโโ skin_syntren.png # 64x64 RGBA canonical skin
โโโ previews/
โ โโโ 3d_turnaround.png # 4-angle 3D rasterized turnaround
โ โโโ 2d_composite.png # 2D front/back composite
โ โโโ turntable_360.gif # 360-degree turntable animated GIF
โโโ static/
โโโ skinview3d.bundle.js # Offline Three.js WebGL skinview3d bundle๐ Quick Start
1. Installation
# Clone the repository
git clone <repo-url>
cd SkinForge
# Install in editable mode
pip install -e .Dependencies: python>=3.9, numpy, pillow, mcp.
2. Using with AI / LLMs (Model Context Protocol)
Add SkinForge to your IDE or agent config (mcp_config.json or .mcp.json):
{
"mcpServers": {
"skinforge": {
"command": "python3",
"args": ["-m", "skinforge.mcp_server"],
"cwd": "/path/to/SkinForge",
"env": {
"PYTHONPATH": "/path/to/SkinForge"
}
}
}
}Now any LLM (Claude, Gemini, Antigravity, GPT-4o) can autonomously design, edit, audit, and view skins!
3. Interactive 3D Web Viewer
# Launch viewer
python3 viewer.py
# Or via CLI
skinforge viewOpen http://localhost:8080 in your browser:
Left Click Drag: Orbit rotate around character.
Right Click Drag: Pan camera horizontally and vertically.
Scroll Wheel: Zoom in/out.
Animations: Toggle Idle, Walking, Running, and Auto-Spin.
Layer Toggles: Individually toggle Head, Torso, Arms, Legs, and Outer 3D overlays.
Live Sync: Edits made via MCP server appear instantly in 300ms!
4. CLI Tools
# Render 3D turnaround and 2D composite
skinforge render skins/skin_syntren.png --out3d previews/3d.png --out2d previews/2d.png
# Generate 360-degree animated turntable GIF
skinforge gif skins/skin_syntren.png --frames 16 --out previews/turntable.gif
# Run quality audit on a skin PNG
skinforge inspect skins/skin_syntren.png
# Mirror right arm to left arm
skinforge mirror skins/skin_syntren.png --from-limb right_arm --to-limb left_arm5. Python API Example
from skinforge import (
SkinCanvas,
SkinValidator,
render_3d_turnaround,
render_composite_2d,
TECHWEAR_CYBERPUNK,
apply_outfit,
draw_symbol,
)
# 1. Initialize canvas and apply full techwear outfit
canvas = SkinCanvas()
apply_outfit(canvas, style="techwear_hoodie", accent_color="#af36f8")
# 2. Add custom cyber emblem to jacket back
draw_symbol(canvas, "jacket_back", "cyber_s", x=1, y=2, color="#af36f8")
# 3. Export to 64x64 PNG
canvas.export_png("my_skin.png")
# 4. Audit quality
validator = SkinValidator("my_skin.png")
valid, report = validator.validate()
print(report)
# 5. Render previews
render_3d_turnaround("my_skin.png", "turnaround.png")
render_composite_2d("my_skin.png", "composite.png")๐งช Testing
SkinForge includes a comprehensive unit test suite covering session state, ASCII reverse-engineering, multimodal rendering, checkpoints, HSV adjustments, seam healing, typography, outfits, and converter:
python3 -m unittest tests/test_mcp_server.pyRan 16 tests in 1.112s
OK๐ License
MIT License. Free for personal and commercial use.
This server cannot be deployed
Maintenance
Related MCP Connectors
Generate authentic pixel art - sprites, animations, and tilesets - from any MCP client
Generate game-ready 3D models, textures, and audio from natural language, over MCP.
Generate, edit, and deploy immersive 3D/WebGL web projects from any MCP assistant.
Create, edit, render, save, and export voxel models with interactive 3D previews.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables generating 3D models from text prompts, rendering turntable animations, and uploading them directly to YouTube via an MCP interface.1415MIT
- AlicenseCqualityDmaintenanceA voxel editor with MCP bridge enabling AI agents to create and edit 3D models, supporting .vox/.obj formats, layers, and a web editor.27MIT
- FlicenseBqualityBmaintenanceEnables AI to control Blockbench for creating and editing 3D models, especially Minecraft-style pets, weapons, and animations, through structured MCP tools and reference image processing.17-
- AlicenseNot gradedqualityAmaintenanceAn MCP server that lets AI agents draw in a live Aseprite editor or headless mode, featuring one-action Unity sprite-sheet export, art-QA sweeps, and game-dev tools.55 PyPI7MIT