{"id":22927,"date":"2026-07-07T18:36:11","date_gmt":"2026-07-07T18:36:11","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/"},"modified":"2026-07-07T18:36:11","modified_gmt":"2026-07-07T18:36:11","slug":"minecraft-summon-command","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/","title":{"rendered":"Minecraft \/summon Command: Full Guide with Examples"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><strong>Quick answer:<\/strong> the <code>\/summon<\/code> command spawns a single entity of a chosen type at a position, with optional NBT data to customize it. The basic form in Minecraft Java Edition 26.2 is <code>summon <entity> [<pos>] [<nbt>]<\/code>. For example, <code>summon creeper ~ ~ ~ {powered:true}<\/code> drops a charged creeper right where you&#8217;re standing.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>\/summon<\/code> command is one of the most powerful world-building and redstone tools in the game. It can spawn mobs, lightning, TNT, armor stands, dropped items, and almost any of the roughly 164 registered entity types. It requires operator permissions, so you&#8217;ll want it enabled on your world or server. This guide covers the exact Java 26.2 syntax, real copy-paste examples, and the ways Bedrock Edition differs. Want a no-typing option? Build commands visually with our free <a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/summon-command\">Minecraft Summon Command tool<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Syntax<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The full Java Edition 26.2 signature is:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>summon <entity> [<pos>] [<nbt>]<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Only <code><entity><\/code> is required. The position and NBT arguments are optional. Here&#8217;s what each part means:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Argument<\/th><th>Type<\/th><th>Required?<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td><code><entity><\/code><\/td><td>resource<\/td><td>Yes<\/td><td>A registered ID in the <code>minecraft:entity_type<\/code> registry, e.g. <code>minecraft:creeper<\/code>. The <code>minecraft:<\/code> namespace may be omitted.<\/td><\/tr><tr><td><code>[<pos>]<\/code><\/td><td>vec3<\/td><td>No<\/td><td>Spawn coordinates. Defaults to the command&#8217;s execution position when omitted.<\/td><\/tr><tr><td><code>[<nbt>]<\/code><\/td><td>nbt_compound_tag<\/td><td>No<\/td><td>An SNBT compound of Entity-format data tags, e.g. <code>{NoAI:1b}<\/code>.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The entity ID<\/strong> must exist in the registry. Common IDs include <code>minecraft:zombie<\/code>, <code>minecraft:skeleton<\/code>, <code>minecraft:creeper<\/code>, <code>minecraft:villager<\/code>, <code>minecraft:armor_stand<\/code>, <code>minecraft:item<\/code>, <code>minecraft:lightning_bolt<\/code>, and <code>minecraft:tnt<\/code>. Java 26.2 (&#8220;Chaos Cubed&#8221;, released 2026-06-16) added the Sulfur Cube mob (<code>minecraft:sulfur_cube<\/code>) to the registry.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The position<\/strong> supports three notations: absolute numbers like <code>100 64 100<\/code>, tilde-relative like <code>~ ~ ~<\/code> (the executor&#8217;s position) or <code>~-10 ~ ~<\/code> (10 blocks west), and caret-local like <code>^ ^ ^5<\/code> (relative to the executor&#8217;s facing direction). Coordinate limits are enforced in 26.2: X and Z must be within [-30000000, 30000000), and Y within [-20000000, 20000000).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The NBT compound<\/strong> applies Entity-format data tags. Important for 26.2: <code>\/summon<\/code> still takes genuine entity NBT here \u2014 not data components. Only item stacks <em>nested inside<\/em> that NBT (such as equipment) use the newer component format. For a broader reference, see our <a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-commands-list\/\">full Minecraft commands list<\/a> and <a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-target-selectors\/\">target selectors guide<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Examples<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">These are copy-paste ready for Java 26.2. Run them from a chat box (with cheats\/op) or a command block.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>1. Strike lightning 10 blocks west:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>summon lightning_bolt ~-10 ~ ~<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Spawns a lightning bolt using tilde-relative coordinates, offset 10 blocks along the X axis from wherever the command runs.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>2. A named, charged creeper:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>summon creeper ~ ~ ~ {powered:true,CustomName:'\"Powered Creeper\"'}<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>powered:true<\/code> makes it charged, and <code>CustomName<\/code> takes a JSON text component wrapped in single quotes. Add <code>CustomNameVisible:1b<\/code> if you want the name to always render above the mob.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>3. A baby zombie at fixed coordinates:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>summon zombie 100 64 100 {IsBaby:true}<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Uses absolute coordinates and the <code>IsBaby<\/code> tag to spawn a baby variant.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>4. A frozen evoker facing east:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>summon evoker ~ ~ ~ {Rotation:[-90f,0f],NoAI:1}<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>Rotation<\/code> is a list of two floats \u2014 yaw then pitch (here <code>-90f<\/code> yaw faces east, <code>0f<\/code> pitch is level). <code>NoAI:1<\/code> disables the mob&#8217;s AI so it won&#8217;t move, attack, or pathfind.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>5. An armored zombie with an enchanted sword:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>summon zombie ~ ~ ~ {equipment:{head:{id:\"minecraft:diamond_helmet\",count:1},mainhand:{id:\"minecraft:iron_sword\",count:1,components:{enchantments:{sharpness:3}}}}}<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The unified <code>equipment<\/code> compound maps slot names (<code>head<\/code>, <code>chest<\/code>, <code>legs<\/code>, <code>feet<\/code>, <code>mainhand<\/code>, <code>offhand<\/code>, <code>body<\/code>, <code>saddle<\/code>) to item stacks. Note the nested items use the modern <code>{id, count, components}<\/code> format. Pair this with the <a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-item-ids\/\">item IDs list<\/a> and the <a href=\"https:\/\/xgamingserver.com\/blog\/all-minecraft-enchantments-list\/\">enchantments hub<\/a> to build custom gear.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Permissions, mechanics, and NBT rules<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Permission level:<\/strong> in Java Edition, <code>\/summon<\/code> requires permission level 2 (operator). That means it&#8217;s available in singleplayer when cheats are on, from command blocks (which run at level 2), and to server ops with level 2 or higher.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What can&#8217;t be summoned:<\/strong> players and fishing bobbers cannot be spawned \u2014 those commands always fail.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>NBT vs data components (the key 26.2 detail):<\/strong> unlike <code>\/give<\/code> and <code>\/item<\/code>, which switched to <code>[data components]<\/code> in 1.20.5, <code>\/summon<\/code> still takes real entity NBT as its third argument. The component format only matters for item stacks nested inside that NBT. A few tags to use in their modern form:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Modern (26.2)<\/th><th>Legacy (pre-1.20.5, invalid)<\/th><th>Notes<\/th><\/tr><\/thead><tbody><tr><td><code>active_effects<\/code>, with <code>id:\"minecraft:speed\"<\/code><\/td><td><code>ActiveEffects<\/code>, numeric <code>Id<\/code><\/td><td>Effect id is now a namespaced string.<\/td><\/tr><tr><td><code>equipment:{...}<\/code><\/td><td><code>ArmorItems[]<\/code> \/ <code>HandItems[]<\/code><\/td><td>One unified compound replaced the two arrays.<\/td><\/tr><tr><td><code>count<\/code>, <code>components<\/code><\/td><td><code>Count<\/code>, <code>tag<\/code><\/td><td>Item-stack keys are lowercase now.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Booleans accept either <code>1b<\/code>\/<code>0b<\/code> or <code>true<\/code>\/<code>false<\/code>. Effect durations use ticks (20 ticks = 1 second), and <code>duration:-1<\/code> means infinite. For example: <code>summon zombie ~ ~ ~ {IsBaby:true,active_effects:[{id:\"minecraft:speed\",amplifier:1b,duration:-1,show_particles:true}]}<\/code>. Running summon in loops on a live server can spawn a lot of entities fast \u2014 a solid host helps, and our <a href=\"https:\/\/xgamingserver.com\/minecraft-server-hosting\">Minecraft server hosting<\/a> handles command-block-heavy worlds without lag.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Java vs Bedrock<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The two editions handle <code>\/summon<\/code> very differently. The biggest difference: <strong>Bedrock has no NBT argument at all.<\/strong> The deep entity customization Java does with <code>{...}<\/code> NBT simply isn&#8217;t possible with Bedrock&#8217;s <code>\/summon<\/code>.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>\u00a0<\/th><th>Java Edition<\/th><th>Bedrock Edition<\/th><\/tr><\/thead><tbody><tr><td>Signature<\/td><td><code>summon <entity> [<pos>] [<nbt>]<\/code><\/td><td><code>summon <entityType> [spawnPos] [yRot] [xRot] [spawnEvent] [nameTag]<\/code><\/td><\/tr><tr><td>Customization<\/td><td>Full entity NBT compound<\/td><td><code>nameTag<\/code> string + <code>spawnEvent<\/code> only<\/td><\/tr><tr><td>Rotation<\/td><td><code>Rotation:[yaw,pitch]<\/code> in NBT<\/td><td>Separate <code>yRot<\/code> \/ <code>xRot<\/code> args, or <code>facing<\/code><\/td><\/tr><tr><td>Permission<\/td><td>Level 2 (op \/ cheats)<\/td><td>Game Directors \/ cheats enabled<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Bedrock also offers overloads like <code>summon <type> <nameTag> [spawnPos]<\/code> and <code>summon <type> [spawnPos] facing <x y z | target> [spawnEvent] [nameTag]<\/code>. So while <code>\/summon creeper ~ ~ ~ {powered:true}<\/code> works in Java, the closest Bedrock can get to a plain spawn is <code>\/summon creeper ~ ~ ~<\/code> \u2014 with no way to make it charged via the command alone.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What op level do I need to use \/summon?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In Java Edition you need permission level 2. That&#8217;s granted by op status on a server, by enabling cheats in singleplayer, or automatically inside command blocks.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can I summon a player or a fishing bobber?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">No. Players and fishing bobbers cannot be summoned \u2014 the command will always fail if you try either one.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Does \/summon use data components like \/give does?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">No \u2014 the third argument to <code>\/summon<\/code> is still genuine entity NBT in 26.2. Data components only appear inside nested item stacks, such as items in the <code>equipment<\/code> compound. This is different from our <a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/\">give command guide<\/a>, where the whole item uses components.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I give a summoned mob armor or a weapon?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Use the <code>equipment<\/code> compound, mapping slots like <code>head<\/code> or <code>mainhand<\/code> to item stacks in <code>{id, count, components}<\/code> form. This replaced the old <code>ArmorItems[]<\/code> and <code>HandItems[]<\/code> arrays.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Are the coordinates limited?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. In 26.2, X and Z must be within [-30000000, 30000000) and Y within [-20000000, 20000000). Omit the position entirely to spawn at the command&#8217;s execution point.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Related guides:<\/strong> <a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/\">summon command reference<\/a>, <a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-teleport-commands\/\">teleport commands<\/a>, <a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-gamerules-list\/\">gamerules list<\/a>, and <a href=\"https:\/\/xgamingserver.com\/blog\/keep-inventory-command-minecraft\/\">keep inventory<\/a>. Or skip the syntax entirely with the free <a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/summon-command\">Minecraft Summon Command generator<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Quick answer: the \/summon command spawns a single entity of a chosen type at a position, with optional NBT data to customize it. The basic form in Minecraft Java Edition 26.2 is summon [] []. For example, summon creeper ~ ~ ~ {powered:true} drops a charged creeper right where you&#8217;re standing. The \/summon command is [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":22928,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[19],"tags":[],"class_list":["post-22927","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-minecraft-server-docs"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Minecraft \/summon Command: Full Guide<\/title>\n<meta name=\"description\" content=\"Learn the Minecraft Java 26.2 \/summon command: full syntax, NBT data, copy-paste examples, op level, and Java vs Bedrock differences.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Minecraft \/summon Command: Full Guide with Examples\" \/>\n<meta property=\"og:description\" content=\"Learn the Minecraft Java 26.2 \/summon command: full syntax, NBT data, copy-paste examples, op level, and Java vs Bedrock differences.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/\" \/>\n<meta property=\"og:site_name\" content=\"XGamingServer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/xgamingserver69\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-07T18:36:11+00:00\" \/>\n<meta name=\"author\" content=\"Hectar Carson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hectar Carson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/\"},\"author\":{\"name\":\"Hectar Carson\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d\"},\"headline\":\"Minecraft \/summon Command: Full Guide with Examples\",\"datePublished\":\"2026-07-07T18:36:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/\"},\"wordCount\":925,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-summon-command.jpg\",\"articleSection\":[\"Minecraft\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/\",\"name\":\"Minecraft \/summon Command: Full Guide\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-summon-command.jpg\",\"datePublished\":\"2026-07-07T18:36:11+00:00\",\"description\":\"Learn the Minecraft Java 26.2 \/summon command: full syntax, NBT data, copy-paste examples, op level, and Java vs Bedrock differences.\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-summon-command.jpg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-summon-command.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Minecraft\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/minecraft-server-docs\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Minecraft \/summon Command: Full Guide with Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"name\":\"XGamingServer\",\"description\":\"Dedicated Game Server Hosting\",\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\",\"name\":\"XGamingServer\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"XGamingServer\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/xgamingserver69\/\",\"https:\/\/x.com\/xgamingserver\",\"https:\/\/www.instagram.com\/xgamingserver\/\",\"https:\/\/www.linkedin.com\/company\/xgamingserver\/\",\"https:\/\/www.pinterest.com\/xgamingserver\/\",\"https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d\",\"name\":\"Hectar Carson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g\",\"caption\":\"Hectar Carson\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Minecraft \/summon Command: Full Guide","description":"Learn the Minecraft Java 26.2 \/summon command: full syntax, NBT data, copy-paste examples, op level, and Java vs Bedrock differences.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/","og_locale":"en_US","og_type":"article","og_title":"Minecraft \/summon Command: Full Guide with Examples","og_description":"Learn the Minecraft Java 26.2 \/summon command: full syntax, NBT data, copy-paste examples, op level, and Java vs Bedrock differences.","og_url":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2026-07-07T18:36:11+00:00","author":"Hectar Carson","twitter_card":"summary_large_image","twitter_creator":"@xgamingserver","twitter_site":"@xgamingserver","twitter_misc":{"Written by":"Hectar Carson","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/"},"author":{"name":"Hectar Carson","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d"},"headline":"Minecraft \/summon Command: Full Guide with Examples","datePublished":"2026-07-07T18:36:11+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/"},"wordCount":925,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-summon-command.jpg","articleSection":["Minecraft"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/","url":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/","name":"Minecraft \/summon Command: Full Guide","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-summon-command.jpg","datePublished":"2026-07-07T18:36:11+00:00","description":"Learn the Minecraft Java 26.2 \/summon command: full syntax, NBT data, copy-paste examples, op level, and Java vs Bedrock differences.","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-summon-command.jpg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-summon-command.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Minecraft","item":"https:\/\/xgamingserver.com\/blog\/category\/minecraft-server-docs\/"},{"@type":"ListItem","position":3,"name":"Minecraft \/summon Command: Full Guide with Examples"}]},{"@type":"WebSite","@id":"https:\/\/xgamingserver.com\/blog\/#website","url":"https:\/\/xgamingserver.com\/blog\/","name":"XGamingServer","description":"Dedicated Game Server Hosting","publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/xgamingserver.com\/blog\/#organization","name":"XGamingServer","url":"https:\/\/xgamingserver.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","width":"1024","height":"1024","caption":"XGamingServer"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/xgamingserver69\/","https:\/\/x.com\/xgamingserver","https:\/\/www.instagram.com\/xgamingserver\/","https:\/\/www.linkedin.com\/company\/xgamingserver\/","https:\/\/www.pinterest.com\/xgamingserver\/","https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ"]},{"@type":"Person","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d","name":"Hectar Carson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g","caption":"Hectar Carson"}}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-summon-command.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/22927","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=22927"}],"version-history":[{"count":0,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/22927\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/22928"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=22927"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=22927"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=22927"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}