Menu
 

Install Minecraft Bedrock Add-ons on a Dedicated Server

Install Minecraft Bedrock Add-ons on a Dedicated Server

Minecraft Bedrock Dedicated Server (BDS) uses behavior packs for logic and resource packs for textures, sounds, and other client assets. These are not Java .jar mods. The server needs the extracted pack folders and the active world needs to reference the pack UUID and version from each manifest.json.

Before changing the world

  • Stop the server and download the full active world folder.
  • Confirm the add-on supports your current Bedrock version.
  • Use packs from a source you trust; behavior packs can materially change a world.
  • Keep behavior and resource packs that belong together on matching releases.

Microsoft's Bedrock Dedicated Server guide documents top-level and world-specific behavior_packs and resource_packs folders. Its behavior-pack guide explains the manifest structure.

Method 1: enable the add-on locally, then upload the world

This is usually the least error-prone method for a downloaded .mcaddon or .mcpack:

  1. Import the package into Minecraft Bedrock on a PC.
  2. Create a new test world or copy the intended world.
  3. Enable the behavior and resource packs in that world's settings. Enable experimental features only when the add-on explicitly requires them.
  4. Enter the world once and confirm the add-on works.
  5. Export or locate the complete world folder, then stop the dedicated server.
  6. Upload the world under the BDS worlds directory and set level-name in server.properties to the folder name.
  7. Start the server, inspect the console for pack errors, and join with a test account.

This workflow lets the Bedrock client write the world pack-registration files and any required world settings. It also gives you a disposable place to discover that an add-on is outdated before touching the live world.

Method 2: register extracted packs manually

1. Extract and place the packs

An .mcpack or .mcaddon is a package, not the final server directory. Extract it and locate each pack folder containing its own manifest.json. Put behavior-pack folders in behavior_packs and resource-pack folders in resource_packs. BDS also supports world-specific pack folders inside the active world directory.

2. Read the manifest header

Open each pack's manifest.json. Register the UUID and version from the header, not a dependency or module UUID. A simplified header looks like this:

{
  "header": {
    "name": "Example Pack",
    "uuid": "743f4c0a-1111-2222-3333-0123456789ab",
    "version": [1, 0, 0]
  }
}

3. Register the pack to the active world

In the active world folder, add behavior packs to world_behavior_packs.json:

[
  {
    "pack_id": "743f4c0a-1111-2222-3333-0123456789ab",
    "version": [1, 0, 0]
  }
]

Add resource packs in the same shape to world_resource_packs.json. Keep valid JSON: use commas between multiple objects, no trailing comma after the last object, and version numbers that exactly match the manifest header.

4. Decide whether clients must accept resources

In server.properties, this setting requires players to accept the server's resource pack before joining:

texturepack-required=true

It does not register a missing pack or repair a bad manifest; it only changes the client-download requirement for resources the world already loads.

Common add-on failures

SymptomLikely causeFix
Pack does not appear in the consoleWrong folder depth or no manifest.json at the expected pack rootRemove the extra wrapper directory and restart.
Missing dependencyA behavior pack expects a paired resource pack or libraryInstall the matching package and version listed in the manifest dependencies.
Invalid pack UUID/versionThe world JSON uses a module UUID, typo, or old versionCopy the header UUID and version exactly.
Clients loop on “Loading resources”Large, corrupt, or incompatible resource packTest one pack at a time and inspect both server and client logs.
World opens but features are absentPack is not activated for that world, or required experiments are missingUse the local-world method and enable only the documented experiments.
World breaks after an updateAdd-on targets an older Bedrock buildRestore the backup and wait for a compatible pack release.

Marketplace and Realms are different

BDS can run user-created behavior and resource packs, but it is not a drop-in replacement for every Marketplace product. Realms Plus is Mojang's native route for the included Marketplace Pass catalog. Check the license and export behavior of a Marketplace world or add-on before assuming it can be copied to a third-party BDS instance.

Related Bedrock guides

Host a Minecraft Bedrock server with Supercraft if you want managed BDS, world uploads, file access, and backups.

Launch a Minecraft Java server with this setup

Pick a preset and your new server boots preconfigured - rates, rules and mods already dialed in. Change anything later in the panel.

Browse all Minecraft Java recipes →

Minecraft Hardcore

One life, no second chances: Hardcore mode, Hard difficulty, PvP on. Death is permanent: players are banned t…

Minecraft Creative Build

A peaceful creative server for builders: Creative mode, Peaceful difficulty, flight enabled, PvP off and no s…

Tired of fighting this issue every patch?

Run a managed Minecraft server with us. We handle the patches, mod-version pinning, save backups, and DDoS protection. Set up in minutes, multiple datacenter regions, no contract.

See Minecraft hosting plans →
Top