Skip to main content
← All Guides
Redstone · Automation · Java & Bedrock

How to Make a Redstone Sorting System

An item sorter splits a mixed pile so every item type lands in its own chest. Feed it a farm's output and your storage organises itself.

MIXED ITEMS →
a filter hopper per item each type to its own chest
Items ride a hopper line past a row of filter hoppers. Each filter is set to grab one item type, so a mixed pile sorts itself into a labelled chest for every item, hands-free.

What you need

Hoppers (line + filters)
Comparators to detect
A chest per item type
Redstone + filler items

Each filter catches one item

A sorter is a row of filter hoppers under one long line. Each filter is pre-loaded with a single copy of its target item plus filler itemsand a comparator only releases an item when a matching one arrives. So each type drops into its chest while everything else rides on to the next filter, and an overflow chest at the end catches the rest.

Quick answers

What is a redstone sorting system in Minecraft?

It is a line of filter hoppers that splits a mixed pile of items so each type drops into its own chest. You tip a farm's output or a full inventory onto the line and it sorts itself, leaving every item neatly stored without you clicking a thing.

How does an item sorter actually work?

Each filter hopper is pre-loaded so it will only let one specific item fall through. The hopper holds a single copy of the target item plus filler items in its other slots, and a comparator releases an item only when a matching one arrives, so that type drops into the chest while everything else rides on to the next filter.

How do you set up the filter for each item?

Load that sorter's hopper with one of the item you want it to catch, then fill the remaining slots with filler items so only the target can push through. Repeat with a different target for each filter along the line, one per item type you care about.

Why does my item sorter overflow or grab the wrong items?

Almost always the filler. If the filler items are missing or are something that also appears in your stream, the filter lets the wrong things through or clogs. Use a filler that never enters the sorter, and give the line an overflow chest at the end for unsorted leftovers.

Can a sorter handle every item in the game?

One filter handles one item type, so a full sorter is just many filters in a row, which can get long. Most builders sort the items they care about and send the rest to a single overflow chest, then extend the line as they need more types.

Does an item sorter work on Bedrock?

The idea is the same, but Bedrock hoppers and comparators behave a little differently, so a Java sorter design often needs a Bedrock-specific layout rather than a direct copy.
Database →
Hoppers & comparators
Look up hoppers, comparators and the items you want to sort.
Guide →
Use a redstone comparator
The block that reads each filter hopper to release the right item.

How a filter actually decides

The filter is a hopper that is nearly full

A sorter works by keeping a hopper stocked with a specific item plus filler that cannot leave, so that only matching items can enter. That is the entire mechanism, and every sorter design is a different way of arranging the same trick.

Renamed items break it

The filter matches on the item, so an item with a custom name or different enchantment can behave unexpectedly and end up in the overflow. Sorting a chest full of enchanted books is the case where a sorter stops being the right tool.

Overflow needs somewhere to go

Items with no matching filter will back up and eventually block the input line, stopping the whole system. A final chest at the end of the run that catches everything unsorted is not optional, and it also tells you which filters you still need to build.

Blocks and items in this guide

Enchanted Book in MinecraftEnchanted BookComparator in MinecraftComparatorRedstone in MinecraftRedstoneHopper in MinecraftHopperTarget in MinecraftTarget

All 5 of these are named in the guide above, starting with Enchanted Book. Look them up in the item database.

More guides on this site

Guides that go with this one

How to Make an Allay Item Farm in MinecraftAn allay item farm uses allays to collect one item type and drop it at a note block into a chest. Here is...How to Make a Hopper in MinecraftA hopper is five iron and a chest, and it moves items between containers on its own. Here is the recipe, how...How to Make a Villager Crop Farm in MinecraftA farmer villager plants and harvests your crops on its own and throws the surplus for you to collect. Here...How to Make an Auto Brewer in MinecraftAn auto brewer feeds a brewing stand with hoppers so potions brew and collect on their own. Here is what you...How to Make a Hopper Clock in MinecraftA hopper clock loops items between two hoppers to make a steady redstone pulse. Here is what you need, how to...How to Make an Automatic Storage System in MinecraftAn automatic storage system files everything you dump in into a wall of labelled chests. Here is what you...

Related tools & databases

Tool
Crafting Recipes
Visual crafting grid for every recipe in the game.
Database
Item Database
Every item with its stats, IDs, recipes and uses.
Tool
Minecraft Tools
Calculators and generators for servers and players.
Guides
More Farms & Redstone guides
Auto farms, contraptions and every redstone component explained.