WebHook
The Enterprise-Grade Bridge for Modern Minecraft Networks
Forget clunky RCON setups. WebHook provides a sleek, lightning-fast, and ultra-secure HTTP gateway
that connects your web applications directly to your Minecraft console.
Whether you're building a custom store, a staff panel, or automated rewards, WebHook is your bridge.
| ✔ Secure Secret token auth & IP whitelisting keep hackers out. | ✔ Optimized Zero-impact on TPS. Asynchronous request handling. |
| ✔ Controlled Command whitelisting ensures only safe actions are run. | ✔ Modern Built for Paper/Spigot 1.20+ with Java 17 support. |
- Full Console Authority: Execute any command as the console from your website.
- IP-Lock Protection: Restrict access so only your web host’s IP can talk to the server.
- Built-in Rate Limiting: Prevent your server from being flooded by excessive web requests.
- Detailed Logging: Keep a paper trail of every request made via the web for total transparency.
- Live Reloading: Update your config on the fly without restarting your server.
YAML:
webhook:
enabled: true
port: 8080
# Secure your bridge with a unique token
secret: "SECURE_RANDOM_TOKEN_HERE"
security:
ip-whitelist:
- "127.0.0.1"
- "YOUR_WEB_HOST_IP"
rate-limit:
enabled: true
max-requests: 5
per-seconds: 10
commands:
whitelist:
- "say"
- "kick"
- "lp" # LuckPerms integration
JavaScript:
fetch("http://YOUR_SERVER_IP:8080/command", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
secret: "YOUR_SECRET_KEY_HERE",
command: "say Automated message from the Web!"
})
});
