Discover/mcsrvstat API
live

mcsrvstat APImcsrvstat.us

Query live Minecraft Java and Bedrock server status via the mcsrvstat.us API. Get player counts, MOTD, version, icons, and debug metadata for any server address.

Endpoint health
verified 3d ago
get_server_icon
get_java_server_status
get_bedrock_server_status
is_server_online
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the mcsrvstat API?

The mcsrvstat.us API exposes 4 endpoints for querying real-time Minecraft server status across both Java Edition (1.7+) and Bedrock Edition. Use get_java_server_status to retrieve up to 10 distinct response fields per server — including resolved IP, base64 server icon, MOTD variants, protocol version, and per-player counts — or use is_server_online for a lightweight online/offline check with player totals.

Try it
Server hostname or IP address (e.g., 'hypixel.net', 'mc.mineplex.com').
api.parse.bot/scraper/1e9174ec-7e1b-40a9-ab60-f6253c94084a/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/1e9174ec-7e1b-40a9-ab60-f6253c94084a/get_java_server_status?address=hypixel.net' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace mcsrvstat-us-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Minecraft Server Status API — check servers, read details, fetch icons."""
from parse_apis.minecraft_server_status_api import MinecraftServers, IsBedrock, ServerNotFound

client = MinecraftServers()

# Full Java server status — typed fields on the returned JavaServer resource.
java = client.javaservers.get(address="hypixel.net")
print(f"Java server: {java.hostname}, online={java.online}, players={java.players.online}/{java.players.max}")
print(f"  Version: {java.version}, protocol: {java.protocol.name}")
print(f"  MOTD: {java.motd.clean[0]}")

# Full Bedrock server status.
bedrock = client.bedrockservers.get(address="play.histeria.fr")
print(f"Bedrock server: {bedrock.hostname}, online={bedrock.online}, gamemode={bedrock.gamemode}")
print(f"  Players: {bedrock.players.online}/{bedrock.players.max}, version={bedrock.version}")

# Quick online check — lightweight, returns only status + player counts.
status = client.serverstatuses.check(address="hypixel.net")
print(f"Quick check: online={status.online}, players={status.players.online}")

# Fetch server icon as base64 data URI.
icon_result = client.servericons.fetch(address="hypixel.net")
has_icon = icon_result.icon is not None
print(f"Icon present: {has_icon}")

# Typed error handling for an invalid server address.
try:
    client.javaservers.get(address="nonexistent.invalid.server.xyz")
except ServerNotFound as exc:
    print(f"Server not found: {exc.address}")

print("exercised: javaservers.get / bedrockservers.get / serverstatuses.check / servericons.fetch / ServerNotFound")
All endpoints · 4 totalmissing one? ·

Retrieve real-time status of a Minecraft Java Edition server (1.7+). Returns comprehensive server data including online status, player count, MOTD, version, icon, protocol, and debug/DNS information. The response always includes the 'online' boolean; when offline, most other fields are absent.

Input
ParamTypeDescription
addressrequiredstringServer hostname or IP address (e.g., 'hypixel.net', 'mc.mineplex.com').
Response
{
  "type": "object",
  "fields": {
    "ip": "string, resolved IP address of the server",
    "icon": "string, base64-encoded PNG server icon (data URI)",
    "motd": "object with raw, clean, and html arrays of MOTD lines",
    "port": "integer, server port",
    "debug": "object containing diagnostic metadata (ping, query, dns, cache info)",
    "online": "boolean, whether the server is currently reachable",
    "players": "object containing online (integer) and max (integer) player counts",
    "version": "string, Minecraft version required",
    "hostname": "string, resolved hostname",
    "protocol": "object with version (integer) and name (string)"
  },
  "sample": {
    "data": {
      "ip": "172.65.197.160",
      "icon": "data:image/png;base64,iVBOR...",
      "motd": {
        "raw": [
          "§f                 §aHypixel Network §c[1.8/26.1]"
        ],
        "html": [
          "<span>Hypixel Network [1.8/26.1]</span>"
        ],
        "clean": [
          "                 Hypixel Network [1.8/26.1]"
        ]
      },
      "port": 25565,
      "debug": {
        "srv": true,
        "ping": true,
        "query": false,
        "bedrock": false,
        "ipinsrv": false,
        "cachehit": false,
        "apiversion": 3,
        "cnameinsrv": false,
        "animatedmotd": false,
        "querymismatch": false
      },
      "online": true,
      "players": {
        "max": 200000,
        "online": 20079
      },
      "version": "Requires MC 1.8 / 1.21",
      "hostname": "mc.hypixel.net",
      "protocol": {
        "name": "1.8.9",
        "version": 47
      },
      "eula_blocked": false
    },
    "status": "success"
  }
}

About the mcsrvstat API

Java and Bedrock Server Status

The get_java_server_status endpoint accepts a address parameter (hostname or IP, e.g. hypixel.net) and returns a detailed status object: online boolean, players.online and players.max counts, a motd object with raw, clean, and html line arrays, version string, protocol with numeric version and name, and an icon field containing a base64-encoded PNG data URI. A debug object surfaces diagnostic metadata including ping, query, and DNS resolution info useful for troubleshooting unreachable servers.

Bedrock Edition Differences

get_bedrock_server_status covers Bedrock-specific fields absent from the Java endpoint: gamemode (e.g. Survival) and serverid, a unique identifier for the Bedrock server instance. Player list data appears under players.list when the server exposes it. Pass is_bedrock: true to the lighter is_server_online and get_server_icon endpoints to target Bedrock servers with those simpler queries.

Icon and Quick-Check Endpoints

get_server_icon returns the server's favicon as a data:image/png;base64,... string, or null if the server has no icon set — Bedrock servers rarely expose one. is_server_online is the minimal status check: it returns only online and the players object, suitable for monitoring dashboards where full metadata is unnecessary and response size matters.

Reliability & maintenanceVerified

The mcsrvstat API is a managed, monitored endpoint for mcsrvstat.us — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when mcsrvstat.us changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official mcsrvstat.us API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Displaying live player counts and MOTD on a Minecraft server listing site using get_java_server_status
  • Monitoring whether a private or public Minecraft server is reachable via the is_server_online endpoint
  • Rendering server icons in a custom launcher or network hub using the icon field from get_server_icon
  • Detecting server protocol version for client compatibility checks via the protocol.version field
  • Building Bedrock server dashboards that surface gamemode and serverid from get_bedrock_server_status
  • Alerting when a server goes offline by polling online status across a fleet of server addresses
  • Comparing Java vs Bedrock server uptime across a Minecraft network using both edition endpoints
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does mcsrvstat.us have an official developer API?+
Yes. mcsrvstat.us provides a public REST API documented at https://api.mcsrvstat.us. It supports Java and Bedrock queries and returns JSON. The Parse API wraps the same data with a consistent interface and normalized response shapes.
What does the `debug` object in `get_java_server_status` contain?+
The debug field returns diagnostic metadata about the server resolution attempt, including whether ping, query, and DNS lookups succeeded, and cache-related information. It is useful for diagnosing why a server appears offline when its address resolves but the game port is unreachable.
Does the API return individual player names or UUIDs?+
The Java endpoint returns only aggregate players.online and players.max counts; individual player names and UUIDs are not currently exposed. The Bedrock endpoint includes an optional players.list array when the server makes that data available, but Java player lists are not covered. You can fork this API on Parse and revise it to add a player-list endpoint if the underlying source exposes that data for a specific server.
What happens when a server is offline or the address doesn't resolve?+
online will be false, and fields like players, motd, and version will not be populated in the response. The debug object in the Java endpoint can indicate whether the failure was at the DNS, ping, or query stage.
Does the API support querying historical uptime or past player counts?+
No historical or time-series data is exposed. All four endpoints return the current live state of the server at query time. You can fork this API on Parse and revise it to persist and aggregate responses over time to build your own uptime history.
Page content last updated . Spec covers 4 endpoints from mcsrvstat.us.
Related APIs in Developer ToolsSee all →
minecraftservers.org API
Search and discover Minecraft servers with real-time player counts, server details, and statistics directly from minecraftservers.org. Find the perfect server by filtering results and viewing comprehensive information like gameplay modes, player capacity, and server ratings.
planetminecraft.com API
Find and explore Minecraft servers (Java and Bedrock) by searching through thousands of options with detailed stats, player counts, and descriptions. Discover trending, top-voted, and newly added servers to find your next gaming community.
minecraft-mp.com API
Search and discover Minecraft multiplayer servers with detailed information like player counts, statistics, and voting data. Ping servers, filter by specific criteria, and access comprehensive server lists and historical performance metrics all in one place.
mcpservers.org API
Search and discover MCP servers, clients, and Claude skills from mcpservers.org, including featured and official recommendations organized by category. Browse detailed server information, remote server options, and find exactly what you need with powerful search and filtering capabilities.
fr.namemc.com API
Look up Minecraft player profiles with their name history and skin gallery, search for trending skins, check server statistics, and verify if usernames are available. Get comprehensive data about any Minecraft player and discover popular skins across the community.
mcp.so API
Discover and explore MCP servers on the mcp.so marketplace by browsing categories, searching by tags, viewing detailed server information, and checking available tools and integrations. Find top-rated servers, compare clients, and filter options to identify the perfect MCP solutions for your needs.
topg.org API
Discover and compare Minecraft servers by version, type, location, and player count, plus track voting scores and historical player data to find the best server for your gameplay. Search across multiple game categories, view newly launched servers, and submit your own server votes to help others discover quality gaming communities.
minecraft.gamepedia.com API
Access detailed information about Minecraft achievements and advancements across both Java and Bedrock editions, including names, descriptions, earning criteria, and Gamerscore point values for console versions. Browse the complete list of in-game goals for either edition.