Skip to main content
Plugins are server-side extensions that run inside your Minecraft servers. They use the Cloud API to interact with your network infrastructure.

Official Plugins

PluginPlatformDescription
Server RegistrationProxyRegisters servers with the proxy
Server ConnectionProxyHandles player connections between servers
Cloud CommandBothIn-game cloud management commands
Proxy EssentialsProxyHub command, maintenance mode, MOTD
NotifyBothServer start/stop notifications
PrefixesServerPlayer prefix management
SignsServerDynamic server status signs
NPCsServerClickable server selector NPCs
PlaceholdersServerPlaceholderAPI integration

Installing Plugins

Via Dashboard

When creating or editing a group, you can add plugins from the Plugins settings. Search for plugins and they’ll be automatically installed on all servers in that group.

Via CLI

# List installed plugins
sc local plugins list

# Add a plugin
sc local plugins add proxy-essentials

# Add all available plugins
sc local plugins add --all

# Remove a plugin
sc local plugins remove proxy-essentials

Manually

Place plugin JARs in your template’s plugins/ folder:
cp my-plugin.jar templates/lobby/plugins/

Plugins vs Droplets

PluginsDroplets
Runs onInside Minecraft serverIndependent service
PurposeIn-game featuresInfrastructure tasks
ExamplesSigns, NPCs, commandsPlayer data, resource packs
For infrastructure-level features, see Droplets.
Have ideas for new plugins? Share them on our Discord or contribute on GitHub.