Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Hypixel Public API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fhypixel.net%2Fhypixel" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fhypixel.net%2Fhypixel" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Hypixel Public API.
Retrieve a player's stats, recent games, and online status
Look up a guild's data
Read SkyBlock profiles, museums, gardens, and news
Query the SkyBlock auction house and bazaar
Fetch game resources such as achievements, quests, and skills
GET STARTED
Read leaderboards, boosters, and player counts
Patterns agents use Hypixel Public API for, with concrete tasks.
★ Agent-Powered Player Stat Lookups
An AI agent answering questions about a Hypixel player or building a stats overlay retrieves their profile on demand. The Hypixel Public API returns a player's stats, recent games, and online status, so the agent grounds its answers in live data through Jentic. These endpoints require an API key.
Look up a player's stats and recent games by their UUID
SkyBlock Economy Tracking
A trading tool or bot tracks SkyBlock item prices across the bazaar and auction house. The Hypixel Public API's bazaar and auction endpoints are public and return live market data, so an agent can watch prices and flag deals without a key.
Fetch current SkyBlock bazaar prices and flag items below a target price
Game Resource Reference
An app needs the canonical list of Hypixel achievements, quests, or SkyBlock skills to label player data. The Hypixel Public API serves these game resources on public endpoints, so an agent can pull the reference data it needs to interpret a player's progress.
Fetch the SkyBlock skills resource and map a player's XP to skill levels
34 endpoints — the hypixel public api exposes data from the hypixel minecraft server network, covering player stats, guilds, online status, and the skyblock game mode.
METHOD
PATH
DESCRIPTION
/v2/player
Get a player's stats
/v2/status
Get a player's online status
/v2/guild
Look up a guild
/v2/skyblock/bazaar
Get SkyBlock bazaar prices
/v2/skyblock/auctions
List SkyBlock auctions
/v2/resources/skyblock/skills
Get the SkyBlock skills resource
/v2/leaderboards
Read leaderboards
/v2/counts
Get player counts
/v2/player
Get a player's stats
/v2/status
Get a player's online status
/v2/guild
Look up a guild
/v2/skyblock/bazaar
Get SkyBlock bazaar prices
/v2/skyblock/auctions
List SkyBlock auctions
/v2/resources/skyblock/skills
Get the SkyBlock skills resource
/v2/leaderboards
Read leaderboards
/v2/counts
Get player counts
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Hypixel by hand means sending your API key in the API-Key header on the authenticated endpoints, leaving it off the public ones, and mapping 34 player, guild, and SkyBlock endpoints yourself. Through Jentic you install once, import the Hypixel Public API from the Directory, store your key once, and your agent calls it.
Permission scoping
Every Hypixel operation is a read, and the key is carried in a header rather than a resource path, so rules govern which operations your agent may call. You choose those operations, so you can allow the public bazaar and resource endpoints while withholding the player and guild lookups that need a key.
Credential isolation
Your Hypixel API key is stored once, encrypted, by your own Jentic One instance and injected at execution time on the endpoints that require it. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'get a hypixel player' or 'read the skyblock bazaar', and Jentic returns the matching operation with its input schema so the agent calls the right endpoint.
Alternatives and complements available in the Jentic catalogue.
Specific to using Hypixel Public API through Jentic.
Does the Hypixel Public API require an API key?
Some endpoints do and some don't. Player, guild, SkyBlock profile, housing, and leaderboard endpoints require an API key sent in the API-Key header, while the game resource, SkyBlock auction, and bazaar endpoints are public, per its OpenAPI spec. Through Jentic the key is stored encrypted by your own Jentic One instance and injected on the calls that need it.
Is there a Hypixel API MCP server?
You don't need an MCP server to give your agent the Hypixel Public API. Jentic connects it directly from the API Directory: import it, store your API key once, and your agent reads player, guild, and SkyBlock data as it needs to. Nothing extra is loaded into the agent's context until a call is made.
Can I limit what my agent is allowed to do with the Hypixel Public API?
Yes. Every operation is read-only, and you choose which of the 34 your agent may call, so you can allow public resource and market endpoints while withholding the authenticated player and guild lookups. Every call it makes is logged for review.
Can I track SkyBlock auction and bazaar prices with the Hypixel Public API?
Yes. The SkyBlock bazaar and auctions endpoints are public and return live market data, so an agent can poll them to track prices without an API key.
How do I look up a Hypixel player through Jentic?
Search Jentic for 'get a hypixel player', which returns the player operation with its input schema. Add the Hypixel Public API from the Jentic API Directory, store your API key once for the authenticated endpoints, and your agent can read player and SkyBlock data. To run it on your own infrastructure, install Jentic One from its GitHub repo.
For Agents
Read Hypixel network data: player stats, guilds, online status, SkyBlock profiles and economy, leaderboards, and game resources. Some endpoints need an API key; others are public.
Use for: Get a player's stats by their UUID, Look up a guild by name, Check whether a player is online, Get the current SkyBlock bazaar prices
Not supported: Does not modify game state, manage accounts, or cover non-Hypixel Minecraft servers. Use for reading Hypixel player, guild, SkyBlock, and game-resource data only.
The Hypixel Public API exposes data from the Hypixel Minecraft server network, covering player stats, guilds, online status, and the SkyBlock game mode. Authenticated endpoints return player, guild, SkyBlock profile, housing, leaderboard, and booster data, while a set of public endpoints serve game resources and the SkyBlock auction house and bazaar without a key. Authenticated requests pass an API key in the API-Key header.