Enderman icon

Enderman Summon Command Generator

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

The enderman is the tallest naturally spawning mob in the game at three blocks, which makes placement matter: summon one under a two-block ceiling and it suffocates in the roof. Map builders use it for silhouette scares, End-themed encounters, and neutral background wanderers, but its teleport behavior means an unmodified summon rarely stays where you put it.

This generator wires the enderman preset into a ready /summon command with custom names, health overrides, riders, and behavior traits. NoAI pins it in place for statue work, silent removes the vwoop and idle sounds, and persistent stops the despawn timer from clearing your set dressing between play sessions.

For combat encounters, remember endermen counter ranged play by teleporting out of projectile paths. Design enderman arenas around melee pressure, add rain cover so weather doesn't kill your boss early, and pair a custom name with custom_name_visible so players can track the target after it blinks across the room.

Example commands

End shrine statue

/summon minecraft:enderman ~ ~ ~ {NoAI:1b,Silent:1b,PersistenceRequired:1b}

NoAI stops pathfinding, stare aggro, and wandering, so the figure stays on its plinth as scenery.

Voidwalker arena boss

/summon minecraft:enderman ~ ~ ~ {PersistenceRequired:1b,CustomName:"The Voidwalker",CustomNameVisible:1b,Health:100f,attributes:[{id:"minecraft:max_health",base:100}]}

100 health is two and a half times the default 40, and the visible name tag keeps players oriented after each teleport.

Glowing stalker

/summon minecraft:enderman ~ ~ ~ {Glowing:1b,Silent:1b,PersistenceRequired:1b}

The glowing outline shows through walls, which turns one wandering enderman into a tension mechanic for horror maps.

Enderman with vex escort

/summon minecraft:enderman ~ ~ ~ {PersistenceRequired:1b,Passengers:[{id:"minecraft:vex"}]}

The vex rides at shoulder height and attacks independently, covering the melee-only enderman against kiting players.

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:enderman ~ ~ ~ {PersistenceRequired:1b,CustomName:'{"text":"The Voidwalker"}',CustomNameVisible:1b,Health:100f,Attributes:[{Name:"generic.max_health",Base:100}]}

Java 1.21.4

/summon minecraft:enderman ~ ~ ~ {PersistenceRequired:1b,CustomName:'{"text":"The Voidwalker"}',CustomNameVisible:1b,Health:100f,attributes:[{id:"minecraft:max_health",base:100}]}

Java 26.2

/summon minecraft:enderman ~ ~ ~ {PersistenceRequired:1b,CustomName:"The Voidwalker",CustomNameVisible:1b,Health:100f,attributes:[{id:"minecraft:max_health",base:100}]}

Bedrock 26.x

/summon minecraft:enderman "The Voidwalker" ~ ~ ~
  • Bedrock /summon does not accept Java entity NBT; omitted Health/Attributes, traits (persistent, custom_name_visible).

Worth knowing

  • Water in any form damages endermen: rain, splash water bottles, and stepping into a stream all trigger hurt ticks, and the mob usually teleports away in response.
  • Locking your crosshair on an enderman's upper body from up to 64 blocks provokes it; a carved pumpkin worn as a helmet lets players study it safely.
  • Arrows, tridents, and snowballs almost never land because the mob teleports out of the projectile's flight path, so encounters resolve in melee.
  • Endermen carry blocks: grass blocks, sand, TNT, and a handful of others can be picked up and set down elsewhere, which slowly erodes unprotected builds while mobGriefing is on.
  • Base health is 40 points, twice a zombie's, and the mob deals 7 damage per swing on normal difficulty.

FAQ

Why won't my summoned enderman stay in its arena?

Endermen teleport when damaged, when touched by water, and sometimes while idle. Contain fights with a roofed arena, or use the no_ai trait for placements that must never move.

Does rain kill an enderman boss fight outdoors?

Yes. Rain deals steady damage and each hurt tick can trigger a teleport, so an outdoor enderman boss can vanish or die before players engage. Roof the arena or run the fight underground.

How do I stop the enderman despawning between sessions?

Add the persistent trait, which sets PersistenceRequired so the hostile-mob despawn rules skip it. A custom name alone does not guarantee persistence the way a name-tag item does.