Horse icon

Horse Summon Command Generator

  • Category: passive
  • Baby variant: yes
  • Entity id: minecraft:horse

Every horse rolls its own stats — health from 15 to 30, a movement speed, and a jump strength — which is exactly why map makers reach for summon commands: they drop a horse at precise coordinates for a stable, a race gate, or a reward pen instead of gambling on whatever wanders past. Summoned horses arrive untamed, so players still get the taming moment if the map wants one.

The generator covers named mounts, foals, and statue horses. A glowing, custom-named horse reads instantly as the prize waiting at the end of a race track; a NoAI, invulnerable horse becomes a permanent stable prop that never paws at the ground, eats through its lead, or wedges itself into a fence corner.

Riding still requires a saddle placed in the horse's own inventory, and its dedicated armor slot accepts horse armor only — the command hands over the animal, the tack comes afterward.

Example commands

Race prize horse

/summon minecraft:horse ~ ~ ~ {Glowing:1b,PersistenceRequired:1b,CustomName:"Comet",CustomNameVisible:1b,Health:30f,attributes:[{id:"minecraft:max_health",base:30}]}

30 health is the very top of the natural roll, so the prize genuinely is the best horse a player could own, and the glow marks it from the grandstand.

Foal

/summon minecraft:horse ~ ~ ~ {IsBaby:1b}

Foals cannot be saddled or ridden until they mature, which makes them safe scenery for paddocks players are meant to walk through.

Stable statue

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

A NoAI horse never wanders off its plinth or reacts to damage, turning it into a permanent prop for stables and monument builds.

Skeleton rider encounter

/summon minecraft:horse ~ ~ ~ {CustomName:"Pale Courser",Passengers:[{id:"minecraft:skeleton"}]}

A skeleton passenger fires from horseback while the horse carries it — a hand-placed echo of the skeleton trap without waiting for lightning.

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

Java 1.21.4

/summon minecraft:horse ~ ~ ~ {Glowing:1b,PersistenceRequired:1b,CustomName:'{"text":"Comet"}',CustomNameVisible:1b,Health:30f,attributes:[{id:"minecraft:max_health",base:30}]}

Java 26.2

/summon minecraft:horse ~ ~ ~ {Glowing:1b,PersistenceRequired:1b,CustomName:"Comet",CustomNameVisible:1b,Health:30f,attributes:[{id:"minecraft:max_health",base:30}]}

Bedrock 26.x

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

Worth knowing

  • Horse health rolls between 15 and 30 points per individual, alongside randomized speed and jump strength, so no two natural horses perform identically.
  • Taming works by mounting the horse repeatedly until hearts appear; feeding sugar, apples, or golden carrots lowers its temper and shortens the process.
  • A player cannot steer a horse without a saddle in its inventory slot, and horse armor occupies a separate dedicated slot on the same screen.
  • A foal's stats are computed from both parents plus a third randomly rolled value, which is why selective breeding improves a stable only gradually.
  • The strongest jumpers clear more than five blocks of height, well beyond what any potion-free player can match.

FAQ

Is a summoned horse already tamed?

No — you still tame it by mounting repeatedly until hearts appear. Feeding sugar, apples, or golden carrots lowers its temper and speeds this up.

What health value should I give a custom horse?

Natural horses roll between 15 and 30 health, so 30 already reads as elite. Higher values work for boss mounts but are visibly beyond anything breedable.

Can a horse carry another mob as a rider?

Yes — add a passenger in the generator. A skeleton passenger produces a working mounted archer, similar to the trap horses lightning storms create.