Serious building on a Minecraft server runs on plugins. The difference between placing every block by hand and commanding a thousand blocks with one line of text isn't skill — it's tooling. This guide walks through the plugins every building-focused Paper or Spigot server should have in 2026: what each one does, the commands that actually matter, and real use cases where each shines.
Everything here is free and open-source. All tested on Paper 1.21.5; most also work on Spigot and Purpur.
Quick: How to Install a Plugin
- Download the plugin's
.jarfrom its official page (SpigotMC, Modrinth, or GitHub releases). - Drop it into your server's
/pluginsfolder. - Restart the server (don't just
/reload— it breaks some plugins). - Configuration files appear in
/plugins/<PluginName>/on first load. Edit as needed, then restart again.
1. WorldEdit — The Essential One
Download: enginehub.org/worldedit · Paper/Spigot 1.21.x supported
If you install only one plugin from this list, make it WorldEdit. It turns "place a thousand stone blocks" into a single command. Select two corners with the wooden axe (//wand gives you one), then any region command operates on the selected volume.
Commands You'll Actually Use
| Command | Effect |
|---|---|
| //wand | Give yourself the selection wand (wooden axe) |
| //pos1 / //pos2 | Set corners by command (at your current location) |
| //set stone | Fill the selection with stone |
| //set 0 | Empty the selection (fill with air) |
| //replace grass dirt | Replace all grass blocks with dirt |
| //walls stone | Only fill the outer walls of the selection |
| //cyl stone 10 20 | Cylinder of radius 10, height 20 |
| //sphere stone 15 | Sphere of radius 15 |
| //copy / //paste | Copy selection, paste at your position |
| //rotate 90 | Rotate clipboard 90° |
| //flip | Mirror clipboard along the direction you're facing |
| //undo / //redo | Undo or redo your last operation |
| //schem save name | Save current selection as a schematic file |
| //schem load name | Load a schematic into your clipboard |
//set stone on a million-block selection. Use //timeout <ms> to cap operation time, or install FastAsyncWorldEdit (next) for near-instant execution.2. FastAsyncWorldEdit (FAWE) — For Huge Operations
Download: SpigotMC · Replaces WorldEdit (don't install both)
FAWE is a drop-in replacement for WorldEdit that runs operations asynchronously on a separate thread. A //set of 500,000 blocks that would freeze your server for 30 seconds on WorldEdit runs smoothly in 2–3 seconds on FAWE with no lag to other players.
All WorldEdit commands work identically. If you're running a mid-to-large building SMP, use FAWE. Install it instead of WorldEdit, not alongside.
3. VoxelSniper — Terrain Sculpting
Download: VoxelSniper Reimagined on SpigotMC · Paper 1.21.x
VoxelSniper is the terrain-shaping counterpart to WorldEdit. Where WorldEdit fills selections, VoxelSniper lets you paint the world like a sculpture — long-range brushes that raise hills, carve rivers, and smooth cliffs, all from wherever you're standing.
Core Commands
/b [brush]— pick a brush (e.g.,/b bfor ball,/b dfor disc,/b vfor voxel)./b [size]— set brush size (number)./b [material]— set material:/b s stonemeans "stone" is the snipe material./vs— smooth brush (great for rounding terrain)./vh— height of the brush.
Left-click to erase (or set to air), right-click to place. Once you've used it for 20 minutes, flat Minecraft terrain will feel broken to you forever.
4. HeadDatabase — 50,000+ Decorative Heads
Download: Head Database on SpigotMC
Player heads in Minecraft can have any texture — they're the closest thing vanilla has to a detail block. HeadDatabase gives you a searchable GUI of 50,000+ community-designed heads: food items, furniture details, animal heads, musical instruments, fictional characters. Browse, click, get the head, place it.
Real Use Cases
- Food on tables — place a burger head on an item frame.
- Decorative books — stack of book heads on a shelf.
- Garden details — flower heads, mushroom heads, vegetable heads.
- Character NPCs — armor stands wearing custom character heads.
- Store signs and logos — a head with a shop logo texture.
Use /hdb to open the GUI. Favorite heads you use often (star icon) so they're quick to grab.
5. WorldGuard — Protect Finished Builds
Download: enginehub.org/worldguard
Once your build is done, you want to protect it. WorldGuard lets you define named regions with rules: "no block breaking inside the castle," "PvP disabled at spawn," "only trusted-builders can place blocks in the cathedral." The standard for server-wide protection.
Defining a Region
- Select the region with WorldEdit's wooden axe.
- Run
/rg define castleto create a region called "castle". - Configure flags:
/rg flag castle build denydisables block breaking;/rg flag castle pvp denydisables PvP. - Add owners:
/rg addowner castle <playername>. - Add members (can build but not manage):
/rg addmember castle <playername>.
6. Arceon — Armor Stand Poser
Download: Armor Stand Tools on SpigotMC (an Arceon alternative)
Armor stands are one of the most underused building tools. With a poser plugin, you can rotate every limb independently, make them hold any item, position them with sub-pixel precision, and freeze them into any pose. Great for action dioramas, statues of server members, frozen scenes in quest builds.
The same concept with slightly different commands works in ArmorStandEditor, Armor Statues, and similar plugins. Pick whichever is maintained on your version.
7. Goldmensch Schematic Browser (or similar)
Server-side schematic managers let builders browse, load, and paste schematics from in-game menus instead of uploading files. SchematicBrushReborn is one option — it turns any schematic file into a WorldEdit brush, so you can "paint" houses across your world by right-clicking.
Bonus: MCASelector (Desktop Tool)
Download: github.com/Querz/mcaselector
Not a plugin — a desktop tool for pruning world files. Use it to delete chunks that were terraformed badly, copy regions from one world to another, or reset the Nether after 1.16 ruined the generation. Essential before a big update bumps your version and you want fresh terrain in new chunks.
The Recommended Builder Stack
If you're just setting up a build-focused server, install these together in this order:
- Paper (or Purpur) as the server software.
- FastAsyncWorldEdit — bulk editing, schematics.
- VoxelSniper — terrain brushes.
- HeadDatabase — detail blocks.
- WorldGuard — protection for finished builds.
- LuckPerms — so only trusted builders can use the powerful commands.
/lp group builder permission set worldedit.* true. Regular members shouldn't have access to commands that can reshape the whole world.Common Issues
"My server lags when someone uses WorldEdit"
Switch to FastAsyncWorldEdit. It runs operations asynchronously so the main thread keeps ticking. For truly huge operations, also bump max-blocks-changed in the FAWE config and add more RAM.
"Schematic paste is misaligned"
WorldEdit pastes relative to your position, not the selection's original world coordinates. Use //copy standing at a reference point on the build (like a corner), then //paste standing at the same relative point in the target area. For exact-coordinate paste, use //schem load then //paste -a with air-skip off.
"My builders can't use the commands"
LuckPerms didn't grant the right nodes. Double-check: /lp user <name> permission info to see what they have. If WorldEdit commands fail, they likely need worldedit.* or more specifically worldedit.region.*.
Put Your New Plugins to Work
Plugins are just tools — the work still comes down to design. Browse our curated tutorials for proven builds that scale beautifully with WorldEdit and VoxelSniper:




