A powerful package manager that updates plugins and server software for Minecraft servers.
pluGET is a standalone package manager written in Python for Minecraft servers running Spigot and its forks like PaperMC.
It works with locally installed servers or remote hosts via SFTP/FTP (configured in the config file).
pluGET uses the APIs of Spigot, Modrinth, and GitHub to:
- Check plugin versions
- Download updates automatically
- Compare installed and latest versions
- Update supported server software (e.g. PaperMC)
Managing plugins is one of the most time-consuming parts of running a Minecraft server. Checking for updates manually and downloading each plugin takes a lot of time. pluGET automates this process and makes plugin management simple and fast.
It is designed for server owners who want to save time and keep their plugins up to date. The configuration is simple, so even users without advanced technical knowledge can use it.
- Works locally or through SFTP/FTP
- Runs directly from the console with command line arguments
- Checks for updates and downloads the latest version of all/specific plugins
- Multi-platform plugin support:
- Checks for updates and downloads the latest version of your server software
There are more features in the work. Check Projects for a complete list.
So why do it manually when you can use pluGET to automate it? 🚀
Get the latest release here.
If you enjoy using pluGET and would like to support its development, you can buy me a hot chocolate. ☕🤎
Your support helps keep the project active and maintained.
If you need help, have a question, or want to discuss something about pluGET, feel free to join the Discord or start a conversation in GitHub Discussions.
- Python (Version 3.10+)
- (Recommended) uv
python --versionIf Python is not installed, download it from: https://www.python.org/downloads/
Download the latest release from GitHub.
Unzip the archive and open a terminal in the extracted folder.
a. Recommended Setup (with uv)
Inside the pluGET folder un:
uv venv
uv syncThen start the program with:
uv run python pluget.pyThe dependencies are installed automatically.
b. Alternative Setup (without uv)
If you don't want to use uv:
python -m venv .venvActivate it:
Windows
.venv\Scripts\activateLinux
source .venv/bin/activatepip install .# Windows:
py pluget.py
# Linux
python3 pluget.pyOn first launch, pluGET will create:
pluGET_config.yamlThe program will then exit.
- Open the config file
- Enter your server connection details
- Start pluGET again
Now you are good to go!
Caution
As always, if you update plugins, shut down your server!
help command [all/command]
exit .
help .
get [pluginID/pluginName]
check [all/pluginName] [changelog]
update [all/pluginName]
remove [pluginID/pluginName]
search [pluginName]
get-github [owner/repo]
get-modrinth [project-id]
search-github [searchTerm]
search-modrinth [searchTerm]
check serverjar
update serverjar [Version]
get-paper [paperBuild] [minecraftVersion]
get-waterfall [waterfallBuild] [minecraftVersion]
get-velocity [velocityBuild] [minecraftVersion]
get-purpur [purpurBuild] [minecraftVersion]
pluGET supports all commands directly through the command line.
Get the list of all available command line arguments with the -h argument:
py pluget.py -hExample direct command line call:
py pluget.py check allContributions are very welcome!
If you’d like to contribute, please read the
Contributing Guidelines first.
Pull requests, bug reports, and feature suggestions are always appreciated.
git clone https://github.com/Neocky/pluGET.git
cd pluGETUsing uv (recommended):
uv venv
uv sync --extra devWithout uv:
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e .[dev]Example:
EssentialsX is a prominent example of inconsisten version naming. The installed version is 2.18.2.0 but on Spigot the version is only described as 2.18.2.
That's the reason pluGET can't detect it automatically.
There are of course many more plugins which have some sort of inconsistency which makes it sadly impossible for pluGET to detect them all. EssentialsX is used only as an example.
Download the plugins with the get [pluginName] command to make them detectable for pluGET.
After downloading EssentialsX with get EssentialsX and using check all:
EssentialsX is now detected from pluGET and can update automatically when a new version comes out.
Example:
As you can see the installed version was found but not the latest version for this plugin.
This is because this is a plugin which is not available on Spigot.
pluGET supports currently only plugins from Spigot.
In this example this is a bukkit plugin.




