Creeper icon

Creeper Summon Command Generator

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

The creeper is the mob people most often summon deliberately: silent trap creepers for adventure maps, named boss creepers with extra health, or a harmless showpiece with NoAI. The typed editor below writes the /summon creeper command for your exact version, so you never hand-edit the NBT braces.

Two details matter more for creepers than for most mobs. Silent matters because the hiss is the only warning a player gets -- a silent creeper is a genuinely different gameplay object. And a creeper with NoAI never starts its fuse on its own; it still explodes if ignited by lightning or a flint-and-steel click, which makes NoAI creepers useful as defusable props.

Example commands

Plain creeper

/summon minecraft:creeper ~ ~ ~

The baseline command. On Java this is all syntax; Bedrock accepts the same shape without NBT.

Silent trap creeper

/summon minecraft:creeper ~ ~ ~ {Silent:1b,CustomName:"Trap"}

No hiss before the blast. Standard for adventure-map ambushes; pair it with a pressure plate corridor.

Glowing boss creeper with extra health

/summon minecraft:creeper ~ ~ ~ {Glowing:1b,PersistenceRequired:1b,CustomName:"Overcharged Creeper",CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

A multi-feature build: name shown above the head, tripled health, glow outline through walls, and no despawn.

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:creeper ~ ~ ~ {Glowing:1b,PersistenceRequired:1b,CustomName:'{"text":"Overcharged Creeper"}',CustomNameVisible:1b,Health:60f,Attributes:[{Name:"generic.max_health",Base:60}]}

Java 1.21.4

/summon minecraft:creeper ~ ~ ~ {Glowing:1b,PersistenceRequired:1b,CustomName:'{"text":"Overcharged Creeper"}',CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Java 26.2

/summon minecraft:creeper ~ ~ ~ {Glowing:1b,PersistenceRequired:1b,CustomName:"Overcharged Creeper",CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Bedrock 26.x

/summon minecraft:creeper "Overcharged Creeper" ~ ~ ~
  • Bedrock /summon does not accept Java entity NBT; omitted Health/Attributes, traits (glowing, persistent, custom_name_visible).

Worth knowing

  • A creeper only detonates when a player is within about 3 blocks for 1.5 seconds; NoAI stops the pursuit but not lightning charging.
  • Creepers flee from cats and ocelots -- a summoned creeper placed near a cat will path away from it even mid-fuse.
  • Explosion damage scales with difficulty, and a charged creeper (struck by lightning) roughly doubles the blast radius.

FAQ

How do I summon a charged creeper?

The charged state lives in the powered NBT tag, which is not part of the typed editor. Summon the creeper here, then strike it with /summon lightning_bolt at the same coordinates, or add powered:1b through the Data Merge generator.

Why does my summoned creeper despawn?

Hostile mobs despawn when no player is within range unless they are persistent. Enable the Persistent trait in the editor and the creeper stays until it dies.

Does /summon creeper work on Bedrock?

Yes -- the bare command is identical. Bedrock cannot accept the Java NBT payload though, so name, health and traits are dropped there and the generator warns you about each one.