-
Notifications
You must be signed in to change notification settings - Fork 0
Send to Server
Mqx edited this page Oct 21, 2025
·
16 revisions
POST /console/sendSend a Minecraft command to the server console.
Warning
Commands are not validated, parsed or checked for permission. This should be handled by an other layer on top of this mod!
{
command : string
}{
errors : Array<{
message : string,
stacktrace : string
}>
}POST /console/send
Content-Type: application/json
{
"command": "say Hello World!"
}200 OK
{
"errors": []
}400 ERROR
{
"errors": [
{
"message": "Internal Server Error",
"stacktrace": "..."
}
]
}