Minecraft how to see someone’s inventory
Mia Phillips
Updated on March 23, 2026

Commands:/data get entity PlayerName Inventory/replaceitem entity PlayerName inventory.0 minecraft:airRemember to Like, Subscribe, and tell me what I should …
There are other answers below:
In Minecraft Vanilla 1.12.2 you can’t look up other player’s inventories, you can only test if a certain item is in it. But in 1.13 (and already in the snapshots) you can use /data get entity
How to Check a Player’s Inventory Minecraft Bedrock – YouTube.
The next step is to select the file that has the name of the person’s inventory you want to capture and right-click it and then click rename in the menu.
Command format: /see
Though it should be said that checking an online player’s inventory/ender chest items is as easy as: data get entity
Player inventories and ender chests of any player can be opened. Even for offline players! Using the openinv or openender command without any arguments opens the last accessed player’s inventory/ender chest. Search all online players for a certain item in their inventory or ender chest.
The same way as you use inv editor, you can see the inv of everyone and change it, even with cheats off
The easiest method would be to simply check their inventory, though this will only be able to check for an exact amount and not minimum: /testfor @a {Inventory:[{id:minecraft:arrow,Count:2b}]} or /scoreboard players set @a OBJECTIVE 1 {Inventory:[{id:minecraft:arrow,Count:2b}]}
Click to expand… Cheat clients can’t see someone’s entire inventory. All they can see is the armor a person wears and the items they hold, because that’s all the server sends to the client. Usually the server sends the entire item to the client including all enchantments and custom lore/names.
- To look a player inventory: To look a chest inventory: To set a player inventory in a chest and clean his inventory (command block): Provided you are using a multiplayer server, the common (and useful) Essentials plugin comes with an in-build command to view a player’s inventory. You can use the /invsee <name> command to achieve this.
- Similar search: how to look at a player inventory
Related Questions
How to see other players inventory in Minecraft?
Provided you are using a multiplayer server, the common (and useful) Essentials plugin comes with an in-build command to view a player’s inventory. You can use the /invsee
How do you get inventory from a chest in Minecraft?
To look a player inventory: /data get entity @p Inventory. To look a chest inventory: /data get block 0 0 0 Items. To set a player inventory in a chest and clean his inventory (command block): execute at @p run data modify block 762 70 1565 Items set from entity @p Inventory clear @p. Share.
What is the command to show the player’s inventory?
Command format: 1 /see <target:target> inv // Shows the player’s inventory – Original 2 /see <target:target> am // Shows the player’s armor, offhand, and armor – I added 3 /see <target:target> ec // Shows the player’s Ender Chest – I added More items…
How to find out if a player has an item?
If you want to find if a player has an item, you can use the /execute command and test for player NBT: /execute if entity @p [nbt = {Inventory: [ {id: “minecraft:iron_sword”}]}] run say Hi (Says hi only if the player has the selected item somewhere in their inventory)