0x00 S00PacketServerInfo
Responds to C00PacketServerQuery with the server's status as a JSON string (MOTD, players, version, favicon, mod info).
Fields
| Field | Type | Description |
|---|---|---|
| jsonResponse | String (JSON) | JSON-encoded ServerStatusResponse with version, players, description, favicon |
Wire Encoding
| Field | Type | Notes |
|---|---|---|
| JSON Response | String | JSON ServerStatusResponse serialized to string |
MCP References
MCP
NetHandlerStatusClient.handleServerInfo()Handler Interface
HND
INetHandlerStatusClientNotes
The JSON response includes: version (name + protocol number), players (max + online + optional sample list), description (MOTD ChatComponent), and optionally favicon (base64-encoded PNG with 'data:image/png;base64,' prefix). For modded servers, may include Forge mod info.
implementation Implementation Cases
ServerInfo
Read server info JSON (MOTD, players, version) for server detection.
BrandDetector
Read server info JSON (MOTD, players, version) for server detection.