Just a WebSocket creating bridge between minecraft server
https://www.spigotmc.org/resources/statuer.114330/
Drop in into your plugins folder and configure stuff you need in plugins/Statuer/config.json
If you disable password required in config, anyone can control your server and grief it
Successful response:
{ "error": false, "message": "Player notch has been kicked with reason: Noob!"}
Error response:
{ "error": true, "message": "Player notch is not online!"}
Player join:
{ "type": "event_playerJoin", "player_info": { "name": "notch", .... } }
Player quit:
{ "type": "event_playerQuit", "player_info": {"name": "notch", "display_name": "notch" }}
On chat message:
{ "type": "event_chat", "player": "notch", "message": "Hello!"}
That is not all, I'm just lazy to add it all here