MC ToolboxMC TOOLBOX

The Definitive Minecraft Creative Studio

Practical tools for commands, building, resource packs, and world exploration. No accounts and no installs, just focused Minecraft utilities in your browser.

57 Tools
Java & Bedrock
Client-Side Processing
100% Free

Why I rebuilt everything for Minecraft 1.21+

The shift from NBT tags to Data Components, and what it means for your commands

When 1.21 landed, Mojang did something pretty drastic: they replaced the old NBT tag system with a new Data Component format. If you've ever written a /give command before 1.21 and tried running it after the update, you know the pain: half your commands just broke silently.

The new system is actually a big upgrade. Components like minecraft:item_name, minecraft:lore, and minecraft:enchantments are cleaner and more predictable than the old nested JSON strings. But here's the catch: nobody wants to memorize an entirely new syntax just to give a player a custom sword.

That's why I rebuilt the /give Generator and /summon Generator from scratch. Every component dropdown, every validation check, every generated command reflects how the game actually parses things in 1.21+. If the game would reject a tag, the tool won't let you generate it. I test each release against both Java and Bedrock preview builds to make sure nothing drifts out of sync.

The whole thing runs client-side in your browser, no server processing, no uploads, no account needed. Pick your components, copy the finished command, paste it into chat. Done.

Featured Tools

Skin Studio

Advanced Commands

Creative Building

Banner Studio

16 layer banner and shield designer

Custom Paintings

Turn your images into Java or Bedrock painting resource packs

Firework Designer

Simulate and craft custom rockets with physics

Armor Stand Posing

Advanced joint manipulation and skeletal pose

Crafting Table

Browse 170+ recipes and auto-calculate all raw materials needed

Villager Trades

Search profession offers and build custom villager trade commands

Enchant Calculator

Optimize anvil costs and XP for perfect gear

Manifest Generator

Create Bedrock manifest.json files with UUIDs and pack metadata

pack.mcmeta Generator

Java resource-pack metadata for 1.21 and 26.x formats

Recipe Generator

Create shaped and shapeless Java datapack recipe JSON

Loot Table Generator

Build item pools, counts, and random drop conditions

Advancement Generator

Generate custom advancement display and criteria JSON

Achievement Maker

Design and download Minecraft-style achievement PNGs

Block Model Generator

Create Java resource-pack block model JSON

Font JSON Generator

Build bitmap font provider files for resource packs

Image to Pixel Art

Quantize images to blocks and export build commands

Image to Map Art

Create a 128x128 Minecraft map-palette preview

Rank Badge Maker

Create transparent PNG badges for Minecraft server ranks

Random Loot

Build weighted pools and simulate chest rolls

Pack Converter

Convert Java and Bedrock resource packs in your browser

Pack Merger

Merge and reorder multiple Minecraft resource packs

MRPack → ZIP

Convert Modrinth .mrpack modpacks to a standard ZIP file instantly

ZIP → MRPack

Convert CurseForge modpack ZIP exports to Modrinth .mrpack files

Rich Text & Colors

World Exploration

Server & Files

How MC Toolbox is organized

A practical Minecraft toolbox for creators, server owners, and survival players

MC Toolbox is built around the work players actually repeat: writing commands, testing visuals, planning builds, converting resource packs, and checking game data after updates. Each section below links to a real tool group rather than a generic landing page, so you can move from research to creation quickly.

Command generators

Build valid Minecraft Java and Bedrock commands without memorizing every component name, bracket, and escaping rule. The command tools cover custom items, entities, spawners, effects, particles, armor stands, and formatted JSON text.

Explore tools

Skin and character tools

Edit skins, preview armor trims, generate printable papercraft templates, and test how a character looks before downloading or copying commands. These tools are focused on visual creation, so the preview stays close to what players expect in game.

Explore tools

Resource pack utilities

Create pack metadata, convert pack formats, merge resource packs, and package paintings or modpack files with fewer manual steps. Most file work happens locally in the browser, which keeps private assets on your own device.

Explore tools

Build planning and world tools

Plan portals, spheres, circles, structures, and seed routes before spending hours in survival. The world tools are meant for builders and server owners who want clear measurements, predictable coordinates, and less guesswork.

Explore tools

Text, color, and server presentation

Design MiniMessage strings, MOTDs, gradients, color codes, and tellraw-style JSON text with live previews. This is useful for server lists, ranks, announcements, command blocks, datapacks, and plugin configuration files.

Explore tools

Server files and setup

Generate plugin.yml, BungeeCord config, start scripts, eula.txt, whitelist.json, and a 64x64 server icon. Built for operators who want correct file shapes without hand-editing YAML every time.

Explore tools

Crafting and progression helpers

Look up recipes, calculate raw materials, compare item paths, and avoid wasting rare resources. These tools are practical for survival projects, SMP planning, tutorials, and players returning after a major Minecraft update.

Explore tools

These tools exist because I got tired of typing commands by hand

Real frustrations I hit while building, running servers, and designing maps

Here's a real example. You want a banner with 12 pattern layers, specific dye colors, and a shield overlay. In vanilla, that's a /give command roughly 400 characters long with nested JSON inside NBT inside more JSON. One missing comma and the whole thing fails, and Minecraft doesn't even tell you where the error is. The Banner Studio lets you click patterns onto a live preview, tweak colors visually, and copy a verified command in seconds.

Same frustration led to the Armor Stand Designer. I had a castle build that needed 20 statues in the courtyard. Posing each one manually with /data merge entity took about 40 minutes per statue. Most of that time was fighting with limb angles. With the visual poser, I select a joint, drag it into position, and grab the command. What used to take an entire afternoon now takes 20 minutes total.

The MOTD Creator came from a server launch where I wanted a gradient welcome message with proper section symbols across 3 version targets. Getting the formatting right by hand meant trial and error, testing against multiple client versions after every tweak. Now I just pick colors, type the text, and see exactly what players will see in the multiplayer menu, no guessing, no restarts.

Every tool on this site started as a real problem I hit while playing or running servers. The Firework Designer came from a server event where I needed synchronized rocket launches across 50 players. The Crafting Calculator? Too many diamonds wasted on wrong anvil repair orders. If a tool is here, I probably built it because vanilla made something simple way harder than it needed to be.

Latest Content

Minecraft Guides

Your world data stays on your machine. Here's why that matters

How client-side processing keeps your seeds, skins, and coordinates private by design

Let me be direct: your Minecraft world seed is effectively a password to your server's entire geography. If someone has your seed and your base coordinates, they can locate every base, every stronghold, every hidden chest room. That's why the Seed Map Viewer runs entirely in your browser using WebAssembly (WASM). The seed you type in never touches a server, the biome math and structure detection all happen locally on your machine.

This same principle applies everywhere. The Skin Studio processes textures client-side. The /give Generator builds commands in JavaScript, not on a backend. The JSON Text Hub formats everything locally. I don't have a database to store your data, I don't run third-party analytics, and I don't collect usage data. No accounts, no uploads, no trackers. By design, not by accident.

It's faster this way too. There's no round trip to a server every time you click something. Click a tool, start working immediately. The WASM modules load once and then run at near-native speed. The Seed Map renders biome tiles in real time as you pan around. That simply wouldn't be possible if every tile had to come from a backend server.

As Minecraft keeps moving toward a data-driven architecture with each update, I'm keeping everything current, from the MRPack to ZIP converter to the Nether Portal Coordinate Calculator. The goal stays simple: handle the complex game mechanics behind the scenes while you get tools that are fast, private, and actually pleasant to use.

Technical Hub

Minecraft is moving towards a data-driven future. We provide the technical backbone for creators using components from 1.18, 1.21.x, through 26.x.

Privacy First

100% Client-side. No data leaks.

Performance

Lightning-fast native C engine.

Responsive

Desktop power on your phone.

Reliable

Verified in-game syntax.

Frequently Asked

Is it completely free?

Is it updated for the latest Minecraft versions?

Affiliation with Mojang?

Does it work on mobile?

Ready to create?

Join the experts using MC Toolbox everyday.

Start Studio