LearnProjectsResourcesToolsReviewsConnect Sign Up
80+ commands · 7 tools · 6 tips

Resources & links.

The full command reference, tools and tips built by the community. Nothing affiliate, nothing sponsored.

Command Library

80+ commands per edition, fully documented

Filter by category. Click to copy. Both Bedrock and Java syntax covered.

Community Tools

Built by the community

These aren't ours — they're third-party tools we use ourselves. Worth bookmarking.

MCSTACKER

JAVA

The classic. Visual builders for NBT, JSON text components, target selectors, and entity summoning.

mcstacker.net

BRIDGE. EDITOR

BEDROCK

The most polished visual add-on editor for Bedrock. JSON UI, manifests, behavior packs, the works.

bridge-core.app

MINECRAFT WIKI

BOTH

The reference. When the syntax has changed, check the wiki before anything else.

minecraft.wiki

MCBE ESSENTIALS

BEDROCK

Mobile-friendly NBT editors and cheat sheets when you're on your phone fixing a redstone build.

mcbe-essentials.github.io

BLOCKBENCH

BOTH

Free 3D model editor that exports straight to Java and Bedrock. Custom mobs, custom items, custom everything.

blockbench.net

SNOWSTORM

BEDROCK

Browser-based particle editor for Bedrock. Live preview, export-ready JSON.

snowstorm.app

MCPEDL

BEDROCK

Largest Bedrock add-on hub. Maps, mods, textures, behavior packs — all free.

mcpedl.com
Pro tips

Six things we wish we'd known

Quick reminders that save hours when you're knee-deep in a command chain.

01

Always test in a copy

Copy the world before running anything destructive. /fill can replace 32,768 blocks in a single tick — undo is not a feature.

02

Name your command blocks

Rename them to describe what they do (Anvil → command block). Future-you will know why that chain exists.

03

Start with /say for debugging

Before chaining /execute, prove the trigger fires by sending a chat message. It's the simplest "did this run?" tool.

04

Keep ticking areas small

Bedrock allows max 10 per world. Treat them like budget — only the loop areas need them.

05

Tags beat scoreboards for yes/no

Use /tag for boolean states. Save scoreboards for actual numbers — counts, coins, kills.

06

Chain blocks run in one tick

Order matters: Impulse → Chain → Chain → Chain. Set conditional and unconditional carefully. They all fire on the same tick if powered.