{"id":22925,"date":"2026-07-07T18:35:57","date_gmt":"2026-07-07T18:35:57","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/"},"modified":"2026-07-07T18:35:57","modified_gmt":"2026-07-07T18:35:57","slug":"minecraft-give-command","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/","title":{"rendered":"Minecraft \/give Command: Full Guide with Examples"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><strong>Quick answer:<\/strong> The <code>\/give<\/code> command drops one or more item stacks straight into a player&#8217;s inventory. The exact syntax in Minecraft Java Edition 26.2 is <code>\/give <targets> <item> [<count>]<\/code> \u2014 for example, <code>\/give @p diamond 64<\/code> hands the nearest player a full stack of diamonds. You need operator permissions (permission level 2) or a single-player world with cheats enabled to run it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Below is the complete breakdown for Java Edition 26.2 (&#8220;Chaos Cubed&#8221;, released June 16 2026), including the modern data-component item format, copy-paste examples, and how Bedrock does things differently. Want to build commands without memorizing SNBT? Use our free <a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/give-command\"><strong>Minecraft Give Command Generator<\/strong><\/a> to point-and-click your item, enchantments, and name, then copy the finished command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Syntax<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The base command takes three arguments \u2014 two required, one optional:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/give <targets> <item> [<count>]<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Argument<\/th><th>Required<\/th><th>What it accepts<\/th><\/tr><\/thead><tbody><tr><td><code><targets><\/code><\/td><td>Yes<\/td><td>An entity argument that <strong>must resolve to player(s)<\/strong> \u2014 a player name, a UUID, or a player-type target selector such as <code>@p<\/code>, <code>@a<\/code>, <code>@r<\/code>, or <code>@s<\/code>.<\/td><\/tr><tr><td><code><item><\/code><\/td><td>Yes<\/td><td>An item in the form <code>item_id[data_components]<\/code>. The bracketed components are optional; omit them for a plain item. The <code>minecraft:<\/code> namespace prefix is optional.<\/td><\/tr><tr><td><code>[<count>]<\/code><\/td><td>No<\/td><td>Integer from 1 to 2147483647. Defaults to 1 when omitted.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">The data-component item format<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Since Java Edition 1.20.5, custom item data is written with <strong>data components<\/strong>, not the old NBT <code>{tag}<\/code> syntax. The format is <code>item_id[component=value,component=value]<\/code>, where each component is a namespaced ID and each value is written in SNBT. Multiple components are comma-separated inside a single pair of square brackets. You can suppress a default component with an exclamation prefix, e.g. <code>stone[!custom_name]<\/code>. Any pre-1.20.5 guide using <code>diamond_sword{Enchantments:[...]}<\/code> is out of date for 26.2.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Component<\/th><th>Purpose<\/th><th>Example value<\/th><\/tr><\/thead><tbody><tr><td><code>enchantments<\/code><\/td><td>Map of enchantment ID to level<\/td><td><code>{sharpness:3,knockback:2}<\/code><\/td><\/tr><tr><td><code>custom_name<\/code><\/td><td>Anvil-renamable display name (text component)<\/td><td><code>{text:\"Magic Wand\",color:\"light_purple\",italic:false}<\/code><\/td><\/tr><tr><td><code>item_name<\/code><\/td><td>Base name that <em>cannot<\/em> be overwritten in an anvil<\/td><td><code>\"Dirt\"<\/code><\/td><\/tr><tr><td><code>lore<\/code><\/td><td>Array of tooltip lines<\/td><td><code>[{text:\"A shiny Emerald!\",italic:false,color:\"gold\"}]<\/code><\/td><\/tr><tr><td><code>damage<\/code><\/td><td>Durability damage already applied<\/td><td><code>500<\/code><\/td><\/tr><tr><td><code>unbreakable<\/code><\/td><td>Item never loses durability (presence alone is enough)<\/td><td><code>{}<\/code><\/td><\/tr><tr><td><code>max_stack_size<\/code><\/td><td>Override max stack size (1\u201399)<\/td><td><code>64<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Need item IDs or enchantment IDs to plug in here? See our <a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-item-ids\/\">Minecraft item IDs reference<\/a> and the <a href=\"https:\/\/xgamingserver.com\/blog\/all-minecraft-enchantments-list\/\">full enchantments list<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Examples<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">All of these are ready to paste into chat or a command block.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>1. A full stack of diamonds to the nearest player:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/give @p diamond 64<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>2. A golden apple to every online player<\/strong> using the <code>@a<\/code> selector:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/give @a golden_apple 1<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>3. An enchanted sword to yourself.<\/strong> The <code>enchantments<\/code> component takes a map of enchantment ID to integer level:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/give @s wooden_sword[enchantments={sharpness:3,knockback:2}] 1<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>4. A named, unbreakable pickaxe.<\/strong> Combine multiple components inside one set of brackets, separated by commas:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/give @p diamond_pickaxe[custom_name={text:\"Magic Wand\",color:\"light_purple\",italic:false},unbreakable={}] 1<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>5. The full worked example<\/strong> \u2014 enchanted, named, and unbreakable in one command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/give @s diamond_sword[enchantments={sharpness:5},custom_name={text:\"Excalibur\",color:\"gold\",italic:false},unbreakable={}] 1<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Note on the enchantments value: the documented data-component format uses the flat <code>{id:level}<\/code> map shown above. The Minecraft Wiki also shows a wrapped form, <code>enchantments={levels:{sharpness:5}}<\/code>; if one form is rejected by your server, try the other. Our <a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/give-command\">give command generator<\/a> always outputs the correct shape for you.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Permissions, op level, and mechanics<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><code>\/give<\/code> is a cheat command. It requires <strong>permission level 2<\/strong> \u2014 meaning you must be an operator (op), or be in a single-player world with cheats enabled. This &#8220;permission level 2&#8221; phrasing is Java-Edition-specific. If you run a server, grant yourself op through your control panel console; on our hosting you can do this from the panel in one click. See our <a href=\"https:\/\/xgamingserver.com\/minecraft-server-hosting\">Minecraft server hosting<\/a> for panels with instant console and command access.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">How the items are delivered: <code>\/give<\/code> places the requested item stack(s) directly into the target&#8217;s inventory. If the inventory is full, the overflow is dropped at the player&#8217;s feet rather than lost.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">About the target selectors: <code>\/give<\/code> requires a <strong>player-type<\/strong> target. <code>@p<\/code> (nearest player), <code>@a<\/code> (all players), <code>@r<\/code> (random player), and <code>@s<\/code> (the executor, i.e. yourself) are all valid. A raw <code>@e<\/code> (all entities) or <code>@n<\/code> (nearest entity) will error unless filtered to players, because those can resolve to non-players. Learn more in our <a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-target-selectors\/\">target selectors guide<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Version context:<\/strong> 26.2 is the first release on Mojang&#8217;s new <em>year.drop.hotfix<\/em> versioning scheme (so &#8220;26.2&#8221; = year 2026, drop 2). Nothing in the 26.2 changelog changes how <code>\/give<\/code> works; the command and the data-component item format are inherited unchanged from the 1.20.5+ component era.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Java vs Bedrock<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is where the two editions diverge significantly. <strong>Bedrock&#8217;s <code>\/give<\/code> does not use Java&#8217;s <code>item_id[...]<\/code> bracket component syntax.<\/strong> Instead it uses positional numeric arguments plus a trailing JSON components object:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>give <player: target> <itemName: Item> [amount: int] [data: int] [components: json]<\/code><\/pre>\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>Custom item data<\/td><td><code>item_id[component=value]<\/code> brackets (SNBT)<\/td><td>Positional <code>amount<\/code>\/<code>data<\/code> ints + trailing JSON <code>components<\/code><\/td><\/tr><tr><td>Enchanting via \/give<\/td><td>Yes, via <code>enchantments<\/code> component<\/td><td>No full data-tag support<\/td><\/tr><tr><td>Permission<\/td><td>Permission level 2 (op \/ cheats)<\/td><td>Cheats \/ op<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">A Bedrock example that gives an item with a component looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/give @p diamond_sword 1 0 {\"keep_on_death\":{}}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Here the <code>1<\/code> is the amount, <code>0<\/code> is the data\/aux value, and the JSON object is the components field. Bedrock also uses the data value for variants \u2014 e.g. <code>\/give @a potion 1 5<\/code> gives a specific potion type by number. Because the syntaxes are incompatible, always confirm which edition you&#8217;re on before copying a command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">How much can I give with one command?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>count<\/code> argument accepts any integer from 1 up to 2147483647. Items beyond a stack&#8217;s normal maximum are placed as additional stacks (or dropped if the inventory fills up).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why does my command say I don&#8217;t have permission?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>\/give<\/code> needs permission level 2. Make yourself an operator on your server, or enable cheats in your single-player world. Without op or cheats, the command is blocked.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can I give an item to everyone at once?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes \u2014 use the <code>@a<\/code> selector, which targets every online player, for example <code>\/give @a golden_apple 1<\/code>. Use <code>@r<\/code> for a single random player.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I make an item unbreakable or rename it?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Add data components in brackets. Use <code>unbreakable={}<\/code> for infinite durability and <code>custom_name={text:\"...\"}<\/code> for an anvil-renamable name. Use <code>item_name<\/code> instead if you want a name that can&#8217;t be overwritten in an anvil.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why won&#8217;t my old \/give command work anymore?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If it uses NBT <code>{tag}<\/code> syntax like <code>diamond_sword{Enchantments:[...]}<\/code>, it&#8217;s from before 1.20.5 and is outdated. Java 26.2 uses the data-component format <code>item_id[component=value]<\/code> instead. Convert it, or rebuild it with our <a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/give-command\">give command generator<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Keep exploring commands<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-commands-list\/\">Full Minecraft commands list<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-summon-command\/\">\/summon command guide<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-teleport-commands\/\">\/teleport commands<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/blog\/minecraft-gamerules-list\/\">Game rules list<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/blog\/keep-inventory-command-minecraft\/\">Keep inventory command<\/a><\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Quick answer: The \/give command drops one or more item stacks straight into a player&#8217;s inventory. The exact syntax in Minecraft Java Edition 26.2 is \/give [] \u2014 for example, \/give @p diamond 64 hands the nearest player a full stack of diamonds. You need operator permissions (permission level 2) or a single-player world with [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":22926,"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-22925","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 \/give Command: Full Guide &amp; Examples<\/title>\n<meta name=\"description\" content=\"Master the Minecraft \/give command in Java 26.2: full syntax, data-component examples, op level, and Java vs Bedrock differences with copy-paste commands.\" \/>\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-give-command\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Minecraft \/give Command: Full Guide with Examples\" \/>\n<meta property=\"og:description\" content=\"Master the Minecraft \/give command in Java 26.2: full syntax, data-component examples, op level, and Java vs Bedrock differences with copy-paste commands.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/minecraft-give-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:35:57+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-give-command\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/\"},\"author\":{\"name\":\"Hectar Carson\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d\"},\"headline\":\"Minecraft \/give Command: Full Guide with Examples\",\"datePublished\":\"2026-07-07T18:35:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/\"},\"wordCount\":950,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-give-command-scaled.jpg\",\"articleSection\":[\"Minecraft\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/\",\"name\":\"Minecraft \/give Command: Full Guide & Examples\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-give-command-scaled.jpg\",\"datePublished\":\"2026-07-07T18:35:57+00:00\",\"description\":\"Master the Minecraft \/give command in Java 26.2: full syntax, data-component examples, op level, and Java vs Bedrock differences with copy-paste commands.\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-give-command-scaled.jpg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-give-command-scaled.jpg\",\"width\":2560,\"height\":1440},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/minecraft-give-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 \/give 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 \/give Command: Full Guide & Examples","description":"Master the Minecraft \/give command in Java 26.2: full syntax, data-component examples, op level, and Java vs Bedrock differences with copy-paste commands.","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-give-command\/","og_locale":"en_US","og_type":"article","og_title":"Minecraft \/give Command: Full Guide with Examples","og_description":"Master the Minecraft \/give command in Java 26.2: full syntax, data-component examples, op level, and Java vs Bedrock differences with copy-paste commands.","og_url":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2026-07-07T18:35:57+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-give-command\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/"},"author":{"name":"Hectar Carson","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d"},"headline":"Minecraft \/give Command: Full Guide with Examples","datePublished":"2026-07-07T18:35:57+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/"},"wordCount":950,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-give-command-scaled.jpg","articleSection":["Minecraft"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/","url":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/","name":"Minecraft \/give Command: Full Guide & Examples","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-give-command-scaled.jpg","datePublished":"2026-07-07T18:35:57+00:00","description":"Master the Minecraft \/give command in Java 26.2: full syntax, data-component examples, op level, and Java vs Bedrock differences with copy-paste commands.","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/minecraft-give-command\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-give-command-scaled.jpg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/07\/minecraft-give-command-scaled.jpg","width":2560,"height":1440},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/minecraft-give-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 \/give 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-give-command-scaled.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/22925","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=22925"}],"version-history":[{"count":0,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/22925\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/22926"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=22925"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=22925"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=22925"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}