Wither icon

Wither Summon Command Generator

  • Category: hostile
  • Baby variant: no
  • Entity id: minecraft:wither

The wither is the only boss players can build by hand, but /summon skips the soul sand scaffold entirely and drops a fully formed boss that immediately begins its ten-second charge-up — swelling, flashing, and untouchable — before detonating and hunting everything nearby. That startup window shapes arena design: anyone standing beside a fresh summon eats the spawn explosion, so most maps trigger the command behind a wall or above the arena floor.

An unmodified wither also tends to leave any arena you build. It flies freely, and every time it takes damage it breaks the blocks around it, so ordinary walls last seconds. The generator fields exist to tame that: customHealth shortens the fight for lightly geared players, no_ai freezes it into a skull-free trophy that never chases anyone, and a customName rewrites the boss bar text that every nearby player sees.

Health tuning is the strongest lever. The Java default is 300, backed by constant slow regeneration and projectile immunity below half health, so a vanilla wither is tuned for endgame gear. Arena builds for mixed lobbies usually run 120 to 180 health, while endurance events push past the default and add glowing so spectators can track the boss through walls.

Example commands

Half-strength arena wither

/summon minecraft:wither ~ ~ ~ {CustomName:"Arena Wither",Health:150f,attributes:[{id:"minecraft:max_health",base:150}]}

150 health halves the Java default so iron-gear players can finish the fight before regeneration outpaces their damage; the custom name replaces the default boss bar label for everyone in range.

Trophy room set piece

/summon minecraft:wither ~ ~ ~ {NoAI:1b,Invulnerable:1b,Silent:1b}

no_ai removes flight and skull volleys, invulnerable blocks the damage that would trigger its block-breaking retaliation, and silent cuts the idle rattle — a wither statue that never harms the build.

Endurance raid boss

/summon minecraft:wither ~ ~ ~ {Glowing:1b,CustomName:"The Withermark",Health:600f,attributes:[{id:"minecraft:max_health",base:600}]}

600 health doubles the baseline for group raids; glowing keeps the outline visible when it climbs above arena lighting or slips behind terrain mid-fight.

The same build across versions

Rows appear only where the output actually changes -- copy the one that matches your world.

Java 1.16

/summon minecraft:wither ~ ~ ~ {NoAI:1b,Invulnerable:1b,Silent:1b}

Bedrock 26.x

/summon minecraft:wither ~ ~ ~
  • Bedrock /summon does not accept Java entity NBT; omitted traits (no_ai, invulnerable, silent).

Worth knowing

  • A freshly summoned wither charges up for about ten seconds — growing and flashing while immune to damage — then releases a large explosion and starts seeking targets.
  • On Java Edition it has 300 health, regenerates constantly, and below half health gains wither armor that makes it immune to arrows and other projectiles, forcing the fight into melee range.
  • Taking damage triggers it to break nearby blocks, and its blue skull projectiles can crack obsidian — arenas need to be expendable, self-repairing, or built from blocks the wither cannot destroy.
  • It counts as undead: Smite deals bonus damage, Instant Health potions hurt it, and Instant Damage heals it — the reverse of most mobs.
  • It always drops a nether star on death regardless of what killed it, and the star item cannot be destroyed by explosions while on the ground.

FAQ

Does a command-summoned wither still explode when it spawns?

Yes. The charge-up and detonation belong to the entity itself, not to the soul-sand build, so /summon triggers the full sequence. Give it a few blocks of clearance from anything you want to keep.

How do I make a wither fight winnable for players in iron gear?

Drop customHealth to around 120-150 and stage the fight under open sky so block damage stays cosmetic. The regeneration and projectile immunity below half health still apply, so bring the number down rather than relying on kit alone.

Why did my wither escape the arena?

It flies and it breaks blocks whenever it takes damage, so conventional walls fail quickly. Cap the space with unbreakable blocks like bedrock or barriers, or accept an open-air fight and use terrain to contain the players instead.