Compatibility
Minecraft: Java Edition
Platforms
Tags
Creators
Details
PluginHider
PluginHider is a Paper plugin that hides plugins from regular players.
It is meant for servers that do not want players, tab-completion tools, or client-side scanners to easily discover installed plugins through common Bukkit, Paper, or namespaced command surfaces.
Features
- Blocks direct use of common plugin-listing commands such as
/plugins,/pl,/version,/ver,/about, and/icanhasbukkit. - Filters command suggestions and tab completions for blocked commands.
- Prunes Paper/Brigadier command trees before they are sent to players.
- Hides namespaced commands by default, while keeping trusted namespaces such as
minecraftandbrigadier. - Supports a bypass permission for staff or trusted users.
- Uses a simple YAML config.
Supported Versions
This repository keeps separate branches for each supported server/API version:
| Branch | Paper API |
|---|---|
1.21.1 |
1.21.1-R0.1-SNAPSHOT |
1.21.5 |
1.21.5-R0.1-SNAPSHOT |
1.21.8 |
1.21.8-R0.1-SNAPSHOT |
1.21.11 |
1.21.11-R0.1-SNAPSHOT |
version/26.1.2 |
26.1.2.build.69-stable |
Use the branch that matches your server version.
Installation
- Download or build the jar for your server version.
- Place the jar in your server's
plugins/folder. - Start or restart the server.
- Edit
plugins/PluginHider/config.ymlif needed. - Run a full restart after changing command-filtering behavior.
Configuration
Default config:
bypass-permission: ""
blocked-command-message: "&cUnknown command."
blocked-command-paths:
- "plugins"
- "pl"
- "version"
- "ver"
- "about"
- "icanhasbukkit"
- "paper plugins"
- "paper version"
- "paper ver"
hide-namespaced-commands: true
allowed-namespaces:
- "minecraft"
- "brigadier"
Options
bypass-permission
Permission that lets a player bypass PluginHider filtering. Leave it blank to disable bypasses.
blocked-command-message
Message sent when a blocked command is used.
blocked-command-paths
Commands or command paths to hide and block. Multi-word paths such as paper plugins are supported.
hide-namespaced-commands
When enabled, commands like pluginname:command are hidden unless their namespace is allowed.
allowed-namespaces
Namespaces that stay visible when namespaced command hiding is enabled.
Permissions
| Permission | Description | Default |
|---|---|---|
pluginhider.bypass |
Allows a player to bypass PluginHider filtering. | false |
If bypass-permission is blank in the config, no bypass permission is checked.
Building
Requirements:
- Gradle
- A JDK matching the target branch
Build the current branch:
gradle build
The compiled jar will be written to:
build/libs/
Development
Switch to the branch for the version you want to work on:
git switch 1.21.11
Then build:
gradle build
When porting to another Paper version, update:
versioninbuild.gradle.kts- the
paper-apidependency inbuild.gradle.kts api-versioninsrc/main/resources/plugin.yml- Java toolchain/release if the target server requires a different Java version
Notes
PluginHider reduces common ways players can inspect installed plugins, but it cannot guarantee complete plugin secrecy. Some plugins may still expose identifying behavior, messages, permissions, commands, packets, or other side channels.


