Allay
The next-generation Minecraft: Bedrock Edition server software aims to be reliable, fast and feature-rich 🌟
Install / Use
/learn @AllayMC/AllayREADME
The next-generation Minecraft: Bedrock Edition server software aims to be reliable, fast and feature-rich
<a href="https://github.com/AllayMC/Allay/actions"><img src="https://github.com/AllayMC/Allay/actions/workflows/gradle.yml/badge.svg" alt="Build"/></a>
<a href="https://docs.allaymc.org"><img src="https://readthedocs.org/projects/allaymc/badge/?version=latest" alt="Documentation Status"></a>
<a href="https://app.codacy.com/gh/AllayMC/Allay/dashboard"><img src="https://app.codacy.com/project/badge/Grade/30e264923da2425a8b777a84b4028334"></a>
<a href="https://discord.gg/ngkkE4hPTU"><img src="https://img.shields.io/discord/1147136608290750526?label=discord&color=7289DA&logo=discord" alt="Discord" /></a>
<a href="https://feedback.minecraft.net/hc/en-us/sections/360001186971-Release-Changelogs"><img src="https://img.shields.io/badge/minecraft-1.21.50(NetEase) ~ 1.26.10%20(Bedrock)-green" /></a>
📖 Introduction
Allay is a third-party server software for Minecraft: Bedrock Edition written from scratch, with the goal of being reliable, fast and feature-rich.
🎯 Why Allay?
- Fast: Allay is very fast. Compared to almost all other server software, Allay 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: Allay 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: Allay 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 Allay, adding new features is very easy for us.
- Cross-platform: Benefit from JVM, allay can run on almost any platform.
- Multi-version: Allay has multi-version support. No longer worry about losing your players due to version updates.
🛠️ Getting Started
Allay 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, there are two ways to install Allay:
⚡ Use AllayLauncher
AllayLauncher is the launcher for allay. It has some cool features such as auto-updating, daemon mode and java checker. To use it, just run the following command based on your OS:
Linux:
wget -qO- https://raw.githubusercontent.com/AllayMC/AllayLauncher/refs/heads/main/scripts/install_linux.sh | bash
Windows (PowerShell):
Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/AllayMC/AllayLauncher/refs/heads/main/scripts/install_windows.ps1").Content
🔨 Install Allay Manually
If you platform does not support AllayLauncher, don't be worry! You can also install Allay manually. Just
download the allay-server-*-shaded.jar file from our release page. Move it to the folder you want and run:
java -jar allay-server-*-shaded.jar
🌟 Plugins
Allay supports running plugins written in Java, Kotlin, Scala (JVM based language).
Use Plugin Template
The quickest way to create a new plugin is to use our plugin template! You can check out the following plugin templates:
Use Allay Gradle Plugin
Allay provides a Gradle plugin to make it much easier to develop Allay plugin. Check out AllayGradle for more information about how to use it.
Use Allay in Existing Project
Allay API is published to the Maven Central. If you have an existing project and want to use Allay in it, simply add the following dependencies to your project:
repositories {
mavenCentral()
}
dependencies {
compileOnly(group = "org.allaymc.allay", 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 = "org.allaymc.allay", name = "api", version = "<version>-SNAPSHOT")
}
🙌 Contributing
Contributions are welcomed! And please read CONTRIBUTING.md before contributing. There are several ways you can contribute:
Submitting a Pull Request
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:
Feedback
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.
🎫 License
Copyright © 2023-2025 AllayMC, 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
❤️ Special Thanks
- Endstone: Endstone's build-in DevTools is essential for Allay to dump key data from BDS
- Protocol: The protocol library and implementation of RakNet used by Allay
- 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
YourKit has granted AllayMC team an open-source license to their outstanding Java profiler, allowing us to make our software as performant as it can be!
YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications. YourKit is the creator of the YourKit Java Profiler, YourKit .NET Profiler, and YourKit YouMonitor.
👀 Stargazers over time
Related Skills
node-connect
335.4kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.5kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
335.4kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.5kCommit, push, and open a PR

