Minecraft bedrock server admin
Skill AIKUSAN/minecraft-agent-skills-bundle/.agents/skills/minecraft-bedrock-server-admin
Minecraft AI agent skills bundle for Java and Bedrock server administration, development, packs, crossplay, and automation across Codex, Claude Code, and compatible agent hosts.
npx -y skills add AIKUSAN/minecraft-agent-skills-bundle --skill minecraft-bedrock-server-adminAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Operate Minecraft Bedrock Dedicated Server for 1.21.x. Use for BDS install and update planning, UDP networking, server.properties, allowlist.json, permissions.json, world folders, resource_packs and behavior_packs deployment, backup/restore, Docker or service management, log triage, and incident response. Choose this for Bedrock server administration rather than Java Paper/Purpur operations or Bedrock add-on development.
SKILL.md
4.3 KB, as published. Nobody here has run it
Minecraft Bedrock Server Administration Skill
Scope
Use this skill for Bedrock Dedicated Server operations on Windows or Linux hosts. Prefer the official BDS model and avoid unofficial native plugin-loader workflows unless the user explicitly asks for them.
Routing Boundaries
Use when: the task is BDS setup, configuration, user access, world/resource deployment, backups, networking, or production operations.Do not use when: the task is Java Edition server operations (minecraft-server-admin), Bedrock add-on code (minecraft-bedrock-addon-dev), Java plugin development (minecraft-plugin-dev), or Java-to-Bedrock pack conversion (minecraft-resource-pack-conversion).
Operating Model
Treat BDS as a file-backed service:
bedrock-server/
├── bedrock_server
├── server.properties
├── allowlist.json
├── permissions.json
├── worlds/
├── resource_packs/
├── behavior_packs/
└── development_behavior_packs/
Keep the live server directory small and reproducible. Store backups, downloaded server archives, and deployment notes outside the live directory.
Administration Workflow
- Identify server version, host OS, startup method, and open UDP ports.
- Back up
worlds/,server.properties,allowlist.json,permissions.json, and active pack folders before changing runtime state. - Make one operational change at a time.
- Restart BDS only when the change requires it.
- Verify from both the console log and a Bedrock client.
Network And Access Checks
Default Bedrock ports:
server-port=19132
server-portv6=19133
Operational checks:
- Confirm UDP, not only TCP, is allowed through host and cloud firewalls.
- Keep public test servers on a non-production world copy.
- Use
allow-list=truefor private servers. - Keep operator grants in
permissions.json, not only chat history or notes.
Player Access Files
allowlist.json
Use the server command surface or edit while stopped. Keep entries explicit:
[
{
"name": "AdminPlayer",
"xuid": "2533274800000000"
}
]
permissions.json
Use narrow grants:
[
{
"permission": "operator",
"xuid": "2533274800000000"
}
]
Review operator entries during staff turnover and after incidents.
Pack Deployment
For production BDS pack deployment:
- Validate each add-on or resource pack has a unique
manifest.jsonUUID set. - Put resource packs under
resource_packs/. - Put behavior packs under
behavior_packs/. - Attach packs to the world through
world_resource_packs.jsonandworld_behavior_packs.json. - Restart the server and confirm the client downloads the expected versions.
Avoid editing packs in place on production. Stage a versioned folder, then swap world references after testing.
Backup And Restore
Minimum backup set:
worlds/<world-name>/server.propertiesallowlist.jsonpermissions.json- active
resource_packs/andbehavior_packs/
Restore workflow:
- Stop BDS cleanly.
- Move the broken live world aside.
- Restore the selected backup into
worlds/. - Restore matching pack folders and world pack references.
- Start BDS and inspect the first boot log before opening access broadly.
Incident Triage
For connection failures:
- Check BDS is listening and has not crashed.
- Check host firewall and cloud firewall UDP rules.
- Confirm client and server versions are compatible.
- Validate allowlist and operator files are valid JSON.
For pack failures:
- Confirm manifest UUIDs are unique.
- Confirm world pack reference versions match manifest versions.
- Remove one pack at a time in staging to isolate the failure.
For data loss:
- Stop the service immediately.
- Copy the current broken world before attempting repair.
- Restore from the newest known-good backup into a separate path first.