HookRaft is a NeoForge mod that keeps your Minecraft chat in sync with external webhooks. Forward in-game chat to outside services, receive messages back, and even send webhook messages via /hook.

/hook command messages.mods folder.config/hookraft-server.toml.[webhook]
outgoingWebhookUrl = "https://example.com/api/webhook"
incomingPort = 8000
[chat]
filterMode = "ALL"
displayMode = "HIGHLIGHTED"
senderName = "HookRaft"
[advanced]
connectionTimeout = 10000
debugLogging = false
/hook <message> – send a webhook message from chat./hookraft send <message> – alias for /hook./hookraft status – show mod health./hookraft list – list all settings./hookraft get <setting> – read a setting./hookraft set <setting> <value> – change a setting (OP level 2). {
"type": "chat",
"player": "PlayerName",
"message": "Hello world!",
"timestamp": 109971141181051
}
/api/receive with message, text, or content./api/health returns mod status, version, and player count.Source code can be obtained here.