MSMP Enhanced is a server-side Fabric Mod that extends the Minecraft Server Management Protocol introduced in Minecraft 1.21.9 (25w35a).
This mod provides optional Unix socket support and adds additional RPC methods. MSMP Enhanced can also be used as a remote server console backend, similar to RCON but with support for structured Text Components and command tab completion. This allows external tools (like web panels or CLI utilities) to run commands, view styled output, and get live suggestions for commands as you type.
- Method:
msmpenhanced:command/run - Description: Runs console commands and returns the command output as structured Text Components
- Parameters:
command(String) - Response:
messages(Array of Text Components)
- Method:
msmpenhanced:command/suggest - Description: Allows external tools (e.g. web panel or CLI tools) to provide command tab completion
- Parameters:
partialCommand(String) - Response:
suggestions(Command Suggestions)
Instead of binding the Minecraft Management Server to a TCP port, MSMP Enhanced can listen on a Unix Domain Socket. See Config for the configuration options.
start(Integer): start position of the suggestionsend(Integer): end position of the suggestionssuggestions(Array of Command Suggestion)
text(String): command suggestiontooltip(Optional Text Component): additional tooltip
Config is stored at config/msmpenhanced.json
{
"unixSocketEnabled": false,
"unixSocketPath": "msmp.sock"
}MSMP Enhanced will default to TCP (vanilla behavior).
This project is licensed under the GNU Lesser General Public License version 3 only.