Adding plugins

Plugins are the fastest way to bend a Paper, Spigot or Purpur server to your will — voice chat, vein-mining, world editing, custom maps. The Game Panel ships a built-in Modrinth browser, so most plugins are two clicks away. This guide covers every screen, every filter and the gotchas that bite first-timers.

Minecraft Last updated May 19, 2026 ~8 min read

Plugins vs mods — start here

Before you install anything, know which one you actually want:

If your server is Forge/Fabric, the Plugins tab won't help — you want the Modpacks tab or to drop mods into /mods manually. If your server is Paper, you're in the right place.

Not sure what you're running?

Open the console, type version and hit enter. The reply will say something like This server is running Paper version 1.21.1-69-main. If it mentions Paper, Spigot, Purpur or Folia, plugins work. If it mentions Forge, NeoForge or Fabric, plugins do not work — use mods.

Opening the Plugins tab

Sign in to the Game Panel, open your server, and click Minecraft Plugins in the left sidebar. You'll see a grid of plugin cards with a row of filters above:

Always set the Loader filter

The single most common newbie mistake is installing a plugin that doesn't match the server's loader. Set Loaders to your server type before searching — the browser will only show plugins that actually work.

Reading a plugin card

Each card gives you everything you need to judge a plugin at a glance:

Installing a plugin

Click the install icon on a card. A modal slides in with the plugin's full details. Using VeinMiner as an example:

modal
Install VeinMiner

  [icon]  VeinMiner
          Mine the whole vein on mining a single ore.
          Known feature by modpacks and pvp games like UHC (quick mine).
          48.5M downloads · Updated 4 days ago

VERSION
  [ Veinminer Paper - 2.8.2          v ]

  Select the version of the plugin you want to install.

                                  [ Cancel ]  [ Install Plugin ]

Reading the version dropdown

Each row in the dropdown follows the pattern [Plugin] [Loader] - [Version]. Veinminer Paper - 2.8.2 means "VeinMiner build 2.8.2 for the Paper loader." You'll also see entries like Bukkit, Spigot, Purpur, Folia, NeoForge, Fabric. Pick the row that matches what your server runs.

Picking the right version

Hitting Install Plugin

Press Install Plugin. The modal closes and the panel:

  1. Downloads the JAR from Modrinth's CDN.
  2. Drops it into /plugins on your server.
  3. Shows a quick toast notification confirming success.

The whole thing usually takes under 5 seconds — plugins are tiny compared to modpacks.

Install does not start the plugin

The JAR is on disk but the server hasn't loaded it yet. You need to restart the server (or use /plugman load with PlugManX) for the plugin to come alive. Do not use /reload confirm — it's notorious for breaking state in other plugins. Restart is the only safe option.

After installing

  1. Open the dashboard.
  2. Click Restart.
  3. Watch the console for the plugin's load message:
console
[INFO] [VeinMiner] Loading VeinMiner v2.8.2
[INFO] [VeinMiner] Enabling VeinMiner v2.8.2
[INFO] [VeinMiner] VeinMiner has been enabled!
[INFO] Done (8.412s)! For help, type "help"

Most plugins create a folder under /plugins/<PluginName>/ with a config.yml on first run. Edit it via Files, save, then restart again to apply changes.

Permissions & commands

Almost every plugin ships with permission nodes — strings like veinminer.use — that decide who can do what. Vanilla operators bypass them; everyone else needs a permissions plugin.

The de-facto standard is LuckPerms. Install it the same way as anything else, then in the console:

console
lp creategroup veteran
lp group veteran permission set veinminer.use true
lp user Steve parent set veteran

Updating a plugin

  1. Take a quick backup if the plugin manages player data (economy, claims, etc.).
  2. Stop the server.
  3. Open Files/plugins → delete the old JAR. (Leaving two versions of the same plugin will crash startup.)
  4. Go to Minecraft Plugins, find the plugin, hit install, pick the newer version.
  5. Start the server.
Read the changelog before major updates

Some plugins rename config keys or break stored data between major versions. The plugin's Modrinth changelog will call this out — open the external link icon on the card to read it.

Removing a plugin

  1. Stop the server.
  2. Open Files/plugins.
  3. Delete the plugin's JAR.
  4. (Optional) Delete the matching /plugins/<PluginName>/ folder if you don't want to keep its config and data.
  5. Start the server.

Installing a plugin manually

If the plugin lives on SpigotMC, Hangar, GitHub Releases, or a private build server, the browser won't show it. Grab the JAR from there and upload it yourself:

  1. Download the correct JAR (read the page — match your loader and MC version).
  2. Open Files/plugins.
  3. Click Upload and drop the JAR in. For files over 100 MB, use SFTP — see File manager & SFTP.
  4. Restart the server.

Common issues

Still stuck? Open a ticket with the last 200 lines of your console and we'll dig in.