Skip to main content
← All Guides
How-to · 4 min read · Java & Bedrock 1.21

How to Make a Crafter in Minecraft

The crafter is the block that finally automates crafting. Load a recipe, hit it with a redstone pulse, and it spits out the finished item. Here is the recipe and how to wire it into a real auto-crafting machine.

The recipe

1 crafter

Five iron ingots around a crafting table (centre), a dropper bottom-centre, and two redstone in the bottom corners.

How to use it

1Place the crafter and open it. Fill the 3x3 with the recipe you want to mass-produce.
2Click any empty slot to disable it (it shows a red cross). Disabled slots stay empty, so the crafter only ever makes that one recipe.
3Power it with redstone. Each pulse crafts one item and shoves it out of the front face, exactly like a dropper.
4It only crafts when every active slot has an item, so a hopper feeding it keeps it running.

Make it fully automatic

The crafter shines in a farm loop: a hopper drips ingredients into the top, a redstone clock (or an observer watching the input) pulses it, and the output drops into a chest. Now any farm that produces raw items can auto-pack them, sticks into ladders, iron into blocks, gunpowder into TNT, with no clicking.

A comparator on the side reads how full the grid is, so you can stop the clock when it runs dry and avoid wasting pulses.

Best things to auto-craft

MakeFromPair it with
Iron / gold / diamond blocks9 ingotsany ingot farm, for compact storage
TNT5 gunpowder + 4 sanda creeper farm
Paper & bookssugar canean auto sugar-cane farm
Sticks2 planksa tree farm, feeds scaffolding/tools
Bonemeal blocks9 bonemeala skeleton or mob farm

Pro tips

Quick answers

Does the crafter work in Bedrock?

Yes. The crafter and its redstone behaviour are in both editions from 1.21.

Why won't it craft?

Either an active slot is empty, the recipe is invalid, or it is getting a constant signal instead of a pulse. It needs a rising edge each craft.

Can it craft anything?

Any normal 3x3 or smaller recipe. It cannot use recipes that need a specific station like smithing or brewing.

How fast can it go?

One craft per redstone pulse, so as fast as your clock pulses, up to once per game tick with the right circuit.

Related on Astroworld

⚒️Every crafting recipe🧱Dropper, hopper & item data🟥Redstone commands