← Back to Blog
News

Minecraft Bedrock Modding in 2026: What's New and What's Changed

If you tried Bedrock modding two years ago and gave up, you picked the worst possible time to quit. The Bedrock addon ecosystem in 2026 is almost unrecognizable compared to where it was in 2023. The Script API has matured from a janky experiment into a legitimate development platform, format versions have stabilized, the community has exploded, and AI tools have entered the space in a big way.

Here's everything that's changed and what it means for you as a creator.

The Script API Grew Up

The single biggest shift in Bedrock modding is the Script API. Back in 2023, @minecraft/server was limited to basic event listening and a handful of entity methods. You could detect when a player hit something, maybe run a command, and that was about it.

Now? The API surface is enormous. You can manipulate blocks at the voxel level, create custom UI forms with @minecraft/server-ui, handle complex entity component queries, work with scoreboards programmatically, manage custom properties on entities and worlds, and build systems that would have required a full Java mod in the past.

Key additions that changed the game:

  • World.beforeEvents and World.afterEvents — Fine-grained control over game events. You can cancel block breaks, modify damage calculations, intercept chat messages, and hook into almost every game action.
  • Custom components — Attach your own data to entities and blocks using dynamic properties. This lets you build RPG stats, custom inventories, ownership systems, and more without scoreboard hacks.
  • Block custom components — Register custom block behaviors entirely through script, including placement rules, interaction handlers, and tick updates.
  • Raycasting — Proper line-of-sight checks. This single feature enabled gravity guns, laser weapons, grappling hooks, and a hundred other mechanics that were impossible before.
  • Structure APIs — Save and load structures programmatically. Procedural dungeons, building templates, and schematic paste tools became practical.

The scripting documentation has also improved dramatically. Microsoft's official docs went from sparse to comprehensive, and community wikis like the Bedrock Wiki and wiki.bedrock.dev have filled in the gaps with real examples.

Format Versions Finally Stabilized

One of the most frustrating parts of Bedrock modding used to be format version roulette. You'd write a behavior pack using format version 1.18.0, and then a Minecraft update would break half your entity definitions because the new format version changed how components worked.

The good news: format versions have largely stabilized around the 1.20+ series. Mojang has settled on consistent patterns for entity definitions, block definitions, and item definitions. The days of rewriting your entire mod every update are mostly over.

What you need to know:

  • Use the latest stable format version for new projects. As of late 2025, that means 1.21.x for most definition types.
  • Entity definitions now use a cleaner component system with better documentation of what each component actually does.
  • Item definitions have moved away from the old experimental format and into stable release. Custom items with custom behaviors are fully supported.
  • Block definitions support custom geometry, multiple material instances, and scripted interactions without experimental flags.

This stability means mods last longer. A mod you build today will likely work for the next several Minecraft updates without changes, which wasn't something you could say in 2023.

The Community Exploded

Bedrock modding used to feel like a ghost town compared to Java. The tools were worse, the documentation was sparse, and most modders either stuck with Java or just made simple resource packs.

That's completely changed. The Bedrock modding community has grown massively, driven by a few factors:

  • Mobile and console players want mods. Bedrock runs on phones, tablets, consoles, and PC. That's a much larger player base than Java alone. And those players are hungry for content.
  • The Marketplace proved you can make money. The Minecraft Marketplace showed creators that Bedrock content can generate real income. That attracted serious talent.
  • Better tooling lowered the barrier. Tools like bridge. (the Bedrock addon IDE), Blockbench for models, and now AI generators like BlockSmith have made it possible to create mods without being a JSON wizard.
  • YouTube and TikTok fuel demand. Content creators constantly need new mods to showcase. Every mod review video drives downloads, which drives more creators to make mods. It's a flywheel.

Discord servers dedicated to Bedrock addon development now have tens of thousands of members. The MCPEDL and mcbedrock.dev communities are thriving. And the quality of community-made addons has gone from "reskinned zombie" to genuinely impressive total conversion mods.

AI Tools Entered the Space

This is the most controversial and most exciting development. AI-powered mod generators can now produce working .mcaddon files from plain English descriptions. You describe what you want — "a tameable fire dragon that breathes fire and drops dragon scales" — and get a complete addon with entity definitions, behaviors, loot tables, spawn rules, and recipes.

What AI mod generation is good at:

  • Speed. What used to take hours of JSON editing takes seconds. Prototyping ideas is nearly instant.
  • Correctness. AI generators produce valid JSON that follows current format versions. No more hunting for a missing comma in a 500-line entity definition.
  • Completeness. A good generator handles all the tedious parts — manifest files, pack structure, resource pack references, language files — that new modders often miss.
  • Accessibility. People who could never learn Bedrock JSON syntax can now create mods. A 12-year-old with a great idea can build it.

What AI generation still struggles with:

  • Complex scripting logic. Multi-system mods with intricate Script API interactions still need human refinement.
  • Custom models. AI can define entities, but creating custom 3D geometry still requires tools like Blockbench.
  • Balancing. AI can set stat values, but knowing whether 15 damage is fun or broken requires playtesting.

The smart approach is to use AI for the scaffolding — get 80% of the mod generated instantly — and then tweak the remaining 20% by hand. That's where tools like BlockSmith shine: you get a working foundation in seconds and customize from there.

What's Coming Next

Looking ahead, a few trends are shaping the future of Bedrock modding:

  • More Script API surface area. Mojang continues to expose new APIs each update. Camera controls, custom enchantments, and deeper world generation hooks are all on the roadmap or in preview.
  • Better cross-platform parity. The gap between Bedrock and Java modding capabilities continues to shrink. Features that were Java-exclusive are being added to Bedrock's addon system.
  • Marketplace 2.0. Rumors of a revamped Marketplace with better discovery and creator tools could further boost the ecosystem.
  • AI iteration. AI tools will get better at handling complex scripting, custom models, and multi-system mods. The ceiling of what you can generate automatically keeps rising.

The Bottom Line

2026 is the best time to start Bedrock modding. The tools are better, the community is bigger, the platform is more stable, and the barrier to entry has never been lower. Whether you're hand-writing JSON, using an IDE like bridge., or generating mods with AI — the ecosystem is ready for you.

If you have an idea for a mod, there has literally never been a better moment to build it.


Ready to Build?

BlockSmith generates complete Minecraft Bedrock addons from plain English descriptions. Describe your mod idea, download the .mcaddon, and start playing. No JSON knowledge required.