The next-generation Minecraft: Bedrock Edition server software aims to be reliable, fast and feature-rich
AllayPlus is a third-party server software for Minecraft: Bedrock Edition written from scratch, with the goal of being reliable, fast and feature-rich.
- Fast: AllayPlus is very fast. Compared to almost all other server software, AllayPlus is far more performant in almost all aspects. The written from scratch codebase allows us to re-examine performance critical points and solve problems in the most efficient way.
- Reliable: AllayPlus is designed to be reliable. To achieve this goal, we have written a lot of unit tests to ensure the stability of the project.
- Hassle-free: AllayPlus is designed to be user-friendly and is ready to use right out of the box. We also have complete documentation to guide you in your deployment.
- Developer-friendly: Our api is seperated from the implementation and is well-documented. No more wasting time looking at the implementation.
- Feature-rich: One of our goal is to be feature-rich. Thanks to the architecture of AllayPlus, adding new features is very easy for us.
- Cross-platform: Benefit from JVM, AllayPlus can run on almost any platform.
- Multi-version: AllayPlus has multi-version support. No longer worry about losing your players due to version updates.
AllayPlus is written and running in java 21, so you need to install java 21. There are several version of java, and we recommend you to use GraalVM for the best performance. OpenJDK is also a good choice if you want to have a stable experience.
After you have installed java 21, you can install AllayPlus manually. Just
download the allayplus-server-*-shaded.jar file from our release page. Move it to the folder you want and run:
java -jar allayplus-server-*-shaded.jarAllayPlus supports running plugins written in Java, Kotlin, Scala (JVM based language).
The quickest way to create a new plugin is to use our plugin template! You can check out the following plugin templates:
AllayPlus provides a Gradle plugin to make it much easier to develop AllayPlus plugin. Check out AllayGradle for more information about how to use it.
AllayPlus API is published to the Maven Central. If you have an existing project and want to use AllayPlus in it, simply add the following dependencies to your project:
repositories {
mavenCentral()
}
dependencies {
compileOnly(group = "io.github.allayplus", name = "api", version = "<version>")
}You can also use the snapshot version that is under development. To fetch the snapshot version, the central snapshot repository needs to be added:
repositories {
mavenCentral()
// Add the central snapshot repository
maven("https://central.sonatype.com/repository/maven-snapshots/")
}
dependencies {
// Add `-SNAPSHOT` suffix to the version to use the snapshot version, an example is `0.19.0-SNAPSHOT`
compileOnly(group = "io.github.allayplus", name = "api", version = "<version>-SNAPSHOT")
}Contributions are welcomed! And please read CONTRIBUTING.md before contributing. There are several ways you can contribute:
We appreciate code contributions. If you've fixed a bug or implemented a new feature, please submit a pull request! Please ensure your code follows our coding standards and include tests where possible.
This project exists thanks to the participation of the following developers:
Your feedback can make this project better. If you find a problem/have a new idea, feel free to raise it in the issues page. Ensure to include a detailed description of the bug and steps to reproduce it.
Copyright © 2026 AllayPlus, all rights reserved. If not otherwise specified, project content is open source under the LGPL-3.0 license. The contents of the following folders are open-sourced under the MIT license:
- data
- codegen
- Endstone: Endstone's build-in DevTools is essential for AllayPlus to dump key data from BDS
- Protocol: The protocol library and implementation of RakNet used by AllayPlus
- df-mc: References for some key API designs
- gophertunnel: The protocol library for reference which is well-documented
- pmmp: Provides a lot of useful information in many ways