Ask three players how many items are in Minecraft and you'll get three numbers. All three can be right. "Item" means something different depending on whether you count what you can craft, what you can hold, what you can place, or every ID the game registers internally. Our numbers come from Crafty's own game data, which we regenerate from the Java Edition files on every release. They're the same counts behind the crafting guide and the item ID list, and none of them come from an old forum post.
Quick answer
We keep the two hard numbers apart on purpose. The 972 figure changes whenever Mojang adds or removes a recipe, and that happens in almost every drop. The item ID count moves more slowly. It also includes hundreds of things you can obtain but never craft, like spawn eggs, music discs and mob drops.

The four different things people mean by "item"
Craftable items. Anything with a crafting table, furnace, stonecutter or smithing recipe. This is the count most people want when they ask, since it's the list you work through in survival. Crafty tracks 972 of them in Minecraft 26.2, each with its exact grid on its own page. So for us, "how many recipes" and "how many craftable items" are the same number. Each output item gets one entry, even when the game stores several recipe variants for it. The four wood-colour variants of a bed count as four items, say, but the two ways of arranging a fence recipe don't.
Item IDs. The internal registry entries, the strings you type after /give @s minecraft:. This covers every craftable item plus everything you can only find, loot, trade for or spawn in creative. Think raw ores, mob heads, spawn eggs (one per mob, which is over 80 entries on their own), goat horns, banner patterns and armor trim templates. Crafty's item ID reference lists 1,505 of them.
Blocks. Placeable things. Every block has an item form so it can sit in your inventory, but it doesn't work the other way round. A diamond sword has no block. Orientation and state variants also inflate block counts without being separate items. Stairs, slabs and doors are one item each but several block states.
Creative inventory entries. What you see scrolling the creative menu. It's smaller than the ID count because the menu hides technical items like minecraft:air, command blocks (in some tabs), and the various "lit", "waterlogged" and "powered" block states.
How the count has grown
Minecraft 1.0 shipped in November 2011 with a few hundred items. The big jumps since then came with the Update Aquatic and Village & Pillage (new wood types, coral, and the trade items), Caves & Cliffs (copper, amethyst, deepslate, and a full set of new ores), Trails & Tales (armor trims added 18 smithing templates and the trim variants), and the 1.21 drops. Those brought the mace, the trial chamber loot, bundles, and the copper family of tools and armor in the Copper Age drop.
The 26.x releases stick with small drops instead of one big update a year, so the recipe count now shifts several times a year. Every page of Crafty's crafting data shows the version it was generated from at the top. If a newer drop is out by the time you read this, the crafting guide has the live number and this article explains where it comes from.
How to count for yourself
Want the number for a specific version, or for a modded game? Ask the game, not a wiki:
- Download the server jar for the version you care about.
- Run the built-in data generator:
java -DbundlerMainClass=net.minecraft.data.Main -jar server.jar --reports. - Open
generated/reports/registries.json. Theminecraft:itementry lists every item ID; count the keys. - For recipes, the same command with
--allalso dumpsgenerated/data/minecraft/recipe/, one JSON file per recipe. Count the files. To get the craftable-item figure instead of the recipe-variant figure, deduplicate by output item.
Crafty builds its datasets the same way, which is why these numbers match what /give accepts in-game.
Why other sources give a different number
- They counted recipes, not items. The game stores variants (shapeless versions, dyeing recipes for each colour) as separate files, so a raw recipe count comes out higher than 972.
- They counted blocks and items separately and added them. That double-counts every block.
- They included Bedrock-only or removed items. Bedrock has a handful of items Java lacks, and old lists still include things like the removed
minecraft:cake_blocksplit. - The number is just old. Most "how many items" answers online were written for 1.12 through 1.16 and never touched again. Anything under 900 craftable items describes a version from before Caves & Cliffs.

FAQ
How many crafting recipes are in Minecraft?
Counting one recipe per craftable item, 972 in Java Edition 26.2. Count every recipe file the game ships, shapeless duplicates and colour variants included, and you get a higher figure that changes with every drop. We regenerate Crafty's crafting guide from the game files on each release, so its count is always the current one.
How many blocks are in Minecraft?
There's no single agreed number. You can count a block per item (one for oak stairs) or per block state (dozens for oak stairs). Per item, blocks make up a large majority of the 1,505 registered IDs. Per state, the total runs into the tens of thousands. Check which one a source means before you compare figures.
Does the item count include spawn eggs and potions?
Spawn eggs, yes. Each mob has its own egg with its own ID, and that's a big part of why the item ID list is so much longer than the craftable list. Potions, no. Every potion type shares one item ID, with a data component describing the effect, so the registry counts a handful of potion items and not every brew.
Is the number the same on Bedrock Edition?
Close, but not identical. Bedrock has a few items Java doesn't, such as some education-mode and camera items. It also trails Java by a few weeks on new drops, so the count differs for a short while after each release. The 972 and 1,505 figures here are Java Edition numbers.