An ultra-lightweight, multi-version Minecraft limbo server written in Rust. It currently supports all Minecraft versions from 1.7.2 through 1.21.5.
If you have any questions or suggestions, join the Discord server!
PicoLimbo is a lightweight limbo server written in Rust, designed primarily as an AFK or waiting server. Its core focus is on efficiency by implementing only essential packets required for client login and maintaining connection (keep-alive) without unnecessary overhead.
When idle, PicoLimbo uses almost no resources: 0% CPU and less than 10 MB of memory, making it extremely lightweight.
While not aiming to replicate every Minecraft server feature, PicoLimbo supports all Minecraft versions from 1.7.2 through 1.21.5, excluding snapshots, with only 24 implemented packets covering over 45 Minecraft versions.
Supports Velocity Modern Forwarding, allowing it to receive forwarded player information from the Velocity
proxy. To enable this, pass the secret key as a command line argument to the pico_limbo
binary:
pico_limbo --address 127.0.0.1:25565 --secret-key MyForwardingSecret
Supports all major Minecraft versions from 1.7.2 to 1.21.5 with a single binary, no need for ViaVersion or ViaBackwards. Snapshots are not supported.
Only a few of the supported versions are on the above screenshot.
For users of the Pterodactyl panel, deployment is simplified with the included egg file.
Velocity Modern Forwarding can be enabled by setting the corresponding environment variable from Pterodactyl panel.
Start the server easily with Docker:
docker run --rm -p "25565:25565" ghcr.io/quozul/picolimbo:latest
For a more managed and scalable setup, use Docker Compose. A sample docker-compose.yml file is
available in the repository. Simply download the docker-compose.yml
file and run:
docker compose up
Important
Ensure the assets
directory is placed alongside the PicoLimbo binary, as it contains essential files required for
server execution.
Download pre-compiled binaries for multiple platforms from the GitHub releases page. No Java or other dependencies required.
To build PicoLimbo from source, you can use Cargo:
cargo install --git https://github.com/Quozul/PicoLimbo.git pico_limbo
- Limbo — Supports only one Minecraft version at a time
- NanoLimbo — Actively maintained (see BoomEaro's fork)
- TyphoonLimbo — No longer actively maintained
- LiteLimbo — No longer actively maintained
Contributions are welcome! If you encounter any issues or have suggestions for improvement, please submit an issue or pull request on GitHub. Make sure to follow the existing code style and include relevant tests.
- Fork the repository.
- Create a new branch
git checkout -b <branch-name>
. - Make changes and commit
git commit -m 'Add some feature'
. - Push to your fork
git push origin <branch-name>
. - Submit a pull request.