DeepSlate MCP
Click on "Install 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., "@DeepSlate MCPRender examples/house.nbt as 1024x768 isometric PNG"
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.
DeepSlate MCP
An MCP (Model Context Protocol) server that renders Minecraft structure files (NBT / Sponge schematic / Litematic) into PNG preview images using vanilla Minecraft resources.
deepslate-mcp wraps the misode/deepslate
rendering engine (MIT-licensed) inside a small MCP server, so any MCP-aware
agent — including Hermes Agent —
can call a tool and get a PNG back.
Tools
Tool | Description |
| Load a |
| Build a structure from a programmatic block list and render to PNG |
| Read structure metadata (size, palette, block count) without rendering |
| Render a single Minecraft item/block as an icon |
Each tool supports configurable camera angles (isometric, top, front, side, and custom rotation), background colour, output dimensions, and zoom level.
Related MCP server: Pixal3D-MCP
At a glance
Language | TypeScript / Node.js ≥ 20 |
License | MIT (inherits upstream deepslate) |
Upstream |
|
Protocol | MCP 2025-06-18 spec (stdio transport) |
Renderer | headless WebGL via |
Resources | Vanilla Minecraft assets from Mojang's client.jar |
Tests | Vitest — 65 unit + integration tests across 9 modules |
Example call (from an MCP client)
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "render_structure",
"arguments": {
"nbt_path": "examples/fixtures/tiny_house.nbt",
"angle": "isometric",
"width": 1024,
"height": 768
}
}
}Response includes a text summary and an inline base64-encoded PNG image.
Quick start
# Dependencies
npm install
# Build
npm run build
# Run (stdio MCP server)
node bin/deepslate-mcp.js
# Development (hot-reload via tsx)
npm run dev
# Smoke test (starts the server and exercises all tools)
npm run smoke
# Tests
npm test
# Lint (TypeScript strict check)
npm run lintSystem dependencies
On Linux, headless-gl requires Mesa libraries:
apt install libgl1-mesa-devThe server expects an X display or virtual framebuffer (Xvfb :99 -screen 0 1024x768x24).
Architecture
See ARCHITECTURE.md for the full technical design.
M0 — Foundation (scaffold, build, basic MCP server) M1 — Render core (headless WebGL, camera presets, PNG encoding) M2 — Resource pipeline (Mojang client.jar extraction, blockstate/model/texture parsing) M3 — Multi-format loaders (.nbt, .schem, .litematic) M4 — MCP tools (4 tools wrapping the pipeline) M5 — Hermes integration (MCP config, end-to-end tool calls from Hermes Agent) M6 — Hardening (error UX, cache invalidation, progress reporting, unit tests, smoke test, lint, packaging, README polish)
All milestones complete — ready for v0.1.0 publication.
🏗️ Building Design Toolkit
This repository also includes a Minecraft building design toolkit as a
Hermes Agent skill —
minecraft-building-design.
It provides:
Format specifications for all three major Minecraft structure formats: Vanilla NBT, Create Mod schematic, and Litematica
Python generators (zero external dependencies) to produce
.nbt,.litematicfiles from codeDesign helpers (
fill_cuboid,hollow_cuboid, mirror, rotate, etc.)Example — a modern villa generated in all three formats
To install:
# Via install script
bash skill/install.sh
# Or manually copy
cp -r skill/minecraft-building-design ~/.hermes/skills/creative/Then in Hermes:
skill_view(name='minecraft-building-design')The skill complements deepslate-mcp perfectly:
deepslate-mcp renders existing
.nbt/.schem/.litematicfiles to PNGminecraft-building-design builds those files from scratch
See skill/minecraft-building-design/SKILL.md
for full documentation.
Resource caching
Vanilla resources (~3,500 blockstates, ~10,000 models, ~1,500 textures) are extracted from Mojang's client.jar and cached to disk on first build. Subsequent loads take ~0.2s instead of ~7s. Purge the cache with:
rm -rf ~/.cache/deepslate-mcpEnvironment variables
Variable | Purpose |
| Point to a pre-downloaded client.jar (skips network) |
| Override the cache directory (default: |
| X display for headless-gl (e.g. |
Credits
This project is built on top of
misode/deepslate by Misode,
licensed under MIT. See ATTRIBUTION.md for full
upstream credits and license obligations.
Minecraft content and assets are © Mojang AB; this project never distributes Mojang-owned assets — all resources are fetched at runtime from official sources.
License
MIT — see LICENSE.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Philogag/deepslate-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server