In-Game NBTEdit Reborn
This Minecraft mod provides a convenient graphical interface for editing any NBT tags directly during gameplay. You can modify data for blocks, entities, and items, which is especially useful for map creators when developing custom items and for modders when debugging their projects.
Supported Platforms
Full compatibility with Forge, NeoForge, and Fabric!
How to Use
Hotkeys
By default, the N key opens the editor. The editor automatically detects the target: if you're looking at a block or entity, it will open the corresponding data; otherwise, it will edit the item in your main hand.
Ctrl+C— copy nodeCtrl+V— paste nodeCtrl+X— cut nodeCtrl+D— delete node
Commands
/nbtedit me— edit the player's own data/nbtedit hand— edit the item in main hand/nbtedit <x> <y> <z>— edit block at coordinates/nbtedit <entity selector>— edit selected entity
Permission System
| Permission | Default Level | Description |
|---|---|---|
| use | 2 | Full access to NBT editing |
| read_only | 1 | NBT viewing only without save capability |
| edit_on_player | 4 | Editing player data (use with caution) |
On Forge and NeoForge platforms, managing permissions requires additional mods like LuckPerms, which allow assigning rights via nodes nbtedit.<permission name>. In Fabric, permission settings can be changed through configuration files.
Configuration Settings
For Forge/NeoForge
File: .minecraft/config/nbtedit.toml
# General settings
[general]
# Enable debug logs. Necessary when reporting issues.
debug = false
# Permission levels. Like vanilla, from 0 to 5.
[general.permission]
use = 2
read_only = 1
edit_on_player = 4
For Fabric
File: .minecraft/config/nbtedit.json
{
"debug": false, // Enable debug logs. Necessary when reporting issues.
"permissionsLevels": { // Permission levels. Like vanilla, from 0 to 5.
"read_only": 1,
"edit_on_player": 4,
"use": 2
}
}
Images


Common Issues
- Getting kicked from server when saving changes:
If you see the errorPayload may not be larger than 32767 bytes, install the Packet Fixer mod by developer TonimatasDEV.