|
Local-first Minecraft server management, without the terminal mess. Create, run, update, monitor, back up, and share Minecraft Java, Bedrock, and PocketMine servers from one native desktop app. |
PocketMC is a native, cross-platform desktop application built using Avalonia UI and .NET 8 for Linux and macOS. It handles software downloads, isolated instances, managed Java and PHP runtimes, startup and shutdown lifecycle monitoring, real-time performance graphs, player lists, automated backups, external cloud replication (Dropbox, Google Drive, OneDrive), CurseForge/Modrinth addon integration, Playit.gg/Cloudflared tunnel provisioning, and a paired remote web dashboard.
Your servers run locally on your hardware. PocketMC is not a cloud hosting service, not a Minecraft launcher, and does not require Docker or system-level virtualization.
| Before PocketMC | With PocketMC |
|---|---|
| Manually find, download, and configure server executables and jars. | Server binaries and matching runtime components are fully managed. |
| Fragmented terminal processes and config files scattered across disks. | Isolated instances maintained under a single structured root. |
| Complex configuration of local reverse proxies and port-forwarding. | Built-in provisioning of Playit.gg and Cloudflared tunnels. |
| Manual, irregular back-up scripts subject to failure. | Scheduled backups with zip extraction and cloud provider synchronization. |
| Vulnerability to orphaned processes and terminal lockups on close. | Automated background process tree cleanup on application exit. |
| Accessing server controls is restricted to the host machine. | Secure web dashboard pairing via QR code or clipboard URL. |
| Vanilla Java | Paper | Fabric | Forge | NeoForge | Bedrock (BDS) | PocketMine-MP |
Install or update PocketMC on Linux or macOS using a single command:
curl -fsSL https://raw.githubusercontent.com/PocketMC/pocket-mc-linux-mac/main/install.sh | bashUninstall PocketMC anytime using the standalone uninstaller script:
curl -fsSL https://raw.githubusercontent.com/PocketMC/pocket-mc-linux-mac/main/uninstall.sh | bashOr from a local clone:
./uninstall.shPrebuilt installers and standalone archives are available on GitHub Releases:
-
macOS Disk Image (
.dmgDrag-and-Drop):- Apple Silicon (M1-M4):
PocketMC-osx-arm64.dmg - Intel Macs:
PocketMC-osx-x64.dmgOpen the downloaded.dmgand dragPocketMC.appinto yourApplicationsfolder.
Note on macOS Gatekeeper: If macOS displays an unverified developer or damaged warning on first open, run this one-time command in Terminal to clear the browser quarantine flag:
xattr -cr /Applications/PocketMC.app
(The universal
install.shscript automatically handles this during installation). - Apple Silicon (M1-M4):
-
Linux Archive (
.tar.gz):tar -xzf PocketMC-linux-x64.tar.gz ./publish/PocketMC.App
-
macOS Archive (
.zip):- Apple Silicon (M1-M4):
PocketMC-osx-arm64.zip - Intel Macs:
PocketMC-osx-x64.zipExtract the archive and movePocketMC.appto/Applications.
- Apple Silicon (M1-M4):
- Creation and deletion of isolated server instance directories.
- Graceful shutdown orchestration via RCON with stdin stream fallback.
- Pre-launch port conflict validation.
- Process supervision preventing orphaned background server processes on crash or close.
- Custom JVM arguments and startup options.
- Automatic detection and retrieval of matching Java runtimes based on server engine version.
- Standardized PHP execution bundles for PocketMine-MP instances.
- Zero manual environment variable or system PATH modifications.
- Instant Playit.gg agent tunnel provisioning.
- Cloudflared tunnel creation with continuous stream consumption.
- System keychain storage (macOS Keychain / Linux Secret Service) with AES fallback.
- Local zip-archived instance packaging with configurable retention limits.
- Automated backup scheduling engine.
- Direct synchronization with Dropbox, Google Drive, and OneDrive.
- Search and install mods, plugins, and resource packs from CurseForge and Modrinth APIs.
- Automatic file routing to target instance directory structures.
- Password-authenticated web companion panel.
- Live websocket console output streaming and remote execution controls.
- Update notifications powered by GitHub Releases API.
PocketMC is structured using a service-oriented, layered architecture:
- PocketMC.Core: Domain models, service interfaces, update specifications.
- PocketMC.Platform: Native system integration, credential store wrappers.
- PocketMC.Infrastructure: Process supervisors, file services, RCON client, backup scheduler, cloud sync.
- PocketMC.RemoteControl: Embedded web server, websocket pipelines, tunnel executors.
- PocketMC.App: Desktop presentation layer built with Avalonia UI and MVVM.
- .NET 8.0 SDK
- Nix development shell available via
nix-shell(optional).
git clone https://github.com/PocketMC/pocket-mc-linux-mac.git
cd pocket-mc-linux-mac
dotnet run --project PocketMC.App/PocketMC.App.csprojdotnet testThis project is licensed under the MIT License - see the LICENSE file for full details.
