Starting a big Minecraft build without knowing the material cost means endless trips back to the mine. This calculator expands an item’s full recipe tree down to raw resources — logs, ingots, diamonds, redstone — and totals them so you can gather everything in one trip and craft without interruption.
How it works
The tool treats each recipe as a tree and reduces it recursively until only base materials remain, rounding up at every batch conversion because Minecraft items are whole units:
need(item, qty):
if item is a base resource → add qty to totals
else for each (ingredient, count) in recipe(item):
batches = ceil(qty / recipe.yield)
need(ingredient, batches × count)
For example a chest reduces to 8 planks, planks reduce to logs at 4 per log, so
one chest costs ceil(8 / 4) = 2 logs of planks — and the tool then folds the
extra surplus from rounding into the displayed total.
Tips and example
A single chest needs 8 planks; at 4 planks per log that is 2 logs. Make 27 chests for a storage wall and the tool reports 54 logs. A beacon expands into 5 glass, 3 obsidian, and 1 nether star, with glass reducing to 5 sand smelted. Run the tool once per component of a build and add the raw totals to get a single shopping list for your whole project.