hyquery-plugin-v2.0.1.jar
27 May 2026
CurseForge · Hytale mod
Let server lists show your server's status — players online, MOTD, and more.
Quick answer
hyquery-plugin-v2.0.1.jar targets Hytale. Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer. No required dependencies listed for this file.
Where it goes
Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.
Put Hytale mods on the world host or dedicated server. Singleplayer runs a local server too; Hytale does not use separate client mods.
hyquery-plugin-v2.0.1.jar. Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional project dependencies. Check the creator notes before changing an existing world.
Before you install it
Built for hyquery-plugin-v2.0.1.jar. Pick another file and the loader, install side or required mods may change.
Use hyquery-plugin-v2.0.1.jar. It targets Hytale; another release may target a different game build or dependency set.
This file does not list any required mods. Do not add a library just because a different file uses it.
Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.
Use the “Get this file” button beside hyquery-plugin-v2.0.1.jar. It opens that exact file at the source.
About this project
Let server lists show your server's status - players online, MOTD, and more!
HyQuery is a server query protocol developed specifically for Hytale servers. Once installed, server lists and monitoring tools can automatically display your player count, server name, and other details - no manual updates needed!
Whether you're building a server listing website, a Discord bot, or a server management tool, HyQuery provides a standardized way to get server information.
HyQuery is the standard implementation for most Hytale server lists.
By default, just the basics:
You can optionally enable:
HyQuery returns server information in a simple JSON format:
{
"online": true,
"players": {
"online": 42,
"max": 100
},
"version": "1.0.0",
"motd": {
"raw": "Welcome to My Server!",
"clean": "Welcome to My Server!"
},
"latency": 24
}
For a single server, it's as simple as:
mods folderThat's it!
If you're running a network with multiple servers (such as a lobby and several minigame servers), HyQuery supports aggregating player counts across your entire network. This allows server lists to display your total network population accurately.
The network feature uses a primary/worker architecture. Your hub server acts as the primary and your game servers act as workers. All servers connect to a shared Redis instance — workers publish their player data, and the primary aggregates it into a single response when queried. This supports hub clustering with multiple primary servers out of the box.
You'll need a Redis server accessible to all your game servers. This can run on the same machine as your primary, or on a dedicated host. Secure it with a strong password and make sure port 6379 is open between your servers.
Download HyQuery and place it in the mods folder on all servers in your network (hub and workers).
On your hub server, configure the plugin as the primary node that aggregates data from Redis:
{
"enabled": true,
"showPlayerList": true,
"showPlugins": false,
"network": {
"enabled": true,
"role": "primary",
"coordinator": "redis",
"namespace": "global",
"staleAfterSeconds": 10,
"redis": {
"host": "127.0.0.1",
"port": 6379,
"password": "your-redis-password",
"tls": false,
"requireAvailable": true
},
"logStatusUpdates": false
}
}
On your minigame/gamemode servers, configure each as a worker that publishes to the same Redis instance:
{
"enabled": true,
"network": {
"enabled": true,
"role": "worker",
"coordinator": "redis",
"id": "minigame-1",
"namespace": "global",
"redis": {
"host": "127.0.0.1",
"port": 6379,
"password": "your-redis-password",
"tls": false,
"requireAvailable": true
},
"logStatusUpdates": false
}
}
If you want to tweak things, edit mods/HyQuery/config.json:
Set logStatusUpdates to true while configuring your network. This outputs to the console whenever updates are sent or received. Once everything is working, switch it back to false to reduce console spam.
Use the namespace setting to isolate groups of servers within the same Redis instance. All servers sharing a namespace will be aggregated together. This is useful if you're running multiple networks on the same Redis server.
You can use the Server Status checker on Hyvote to verify HyQuery is working correctly on your server.
Running a server list? Get in touch on Discord to be added.
MIT - use it however you like!
Join us on Discord for setup help, bug reports, or just to chat with other server owners.
Project description from CurseForge.
Recent files
27 May 2026
26 Feb 2026
27 Jan 2026
24 Jan 2026
14 Jan 2026
Looking for an older file? The official CurseForge project page is in Resources.