> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hypedexer.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AI Agents (MCP)

> Query Hyperliquid data from Claude, Cursor, or any MCP client — 78 read-only tools on a hosted Model Context Protocol server.

HypeDexer exposes its data API as a **Model Context Protocol (MCP)** server, so an AI agent — Claude Desktop, Cursor, or any MCP client — can query Hyperliquid data in plain language. **78 read-only tools**, hosted on our infrastructure: there is nothing to install.

## At a glance

|                    |                                                        |
| ------------------ | ------------------------------------------------------ |
| **Endpoint**       | `https://mcp.hypedexer.com/mcp`                        |
| **Transport**      | Streamable HTTP, stateless (MCP protocol `2026-07-28`) |
| **Authentication** | `Authorization: Bearer <your HypeDexer API key>`       |
| **Tools**          | 78, all read-only                                      |
| **Health check**   | `GET https://mcp.hypedexer.com/health`                 |

<Note>
  2025-era clients are served through the SDK's legacy fallback, so older MCP clients keep working without any change on your side.
</Note>

## Quickstart

### 1. Get an API key

The bearer token **is** your HypeDexer API key — the same key you use for the REST API. There is no separate MCP token, and there is no anonymous access. Existing keys work as-is; [create one](https://www.app.hypedexer.com/) if you don't have it yet.

### 2. Point your client at the server

Add HypeDexer to your MCP client configuration:

```json theme={null}
{
  "mcpServers": {
    "hypedexer": {
      "url": "https://mcp.hypedexer.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}
```

Restart your client — the 78 tools appear automatically. See [Client configuration](/mcp/clients) for Claude Desktop, Cursor, generic MCP clients, and the local stdio alternative.

### 3. Ask a question

Your agent now picks the right tool on its own and calls it with your key:

* "What were the top traders on Hyperliquid over the last 24 hours?"
* "Show me the HIP-4 prediction market providers ranked by volume."
* "How much funding did `0x079f…a5be` pay this week?"

Browse the [tool catalog](/mcp/tools) to see everything the agent can reach.

## Credits & billing

MCP usage bills credits from your account balance, exactly like direct REST calls.

One tool call can fan out into several API requests, so a single tool call may cost more than one REST call — the 24h market snapshot, for instance, calls five endpoints.

## Continue

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/mcp/authentication">
    Use your existing API key as the bearer token.
  </Card>

  <Card title="Client configuration" icon="plug" href="/mcp/clients">
    Copy-paste setup for Claude Desktop, Cursor, and stdio.
  </Card>

  <Card title="Tool catalog" icon="wrench" href="/mcp/tools">
    The 78 read-only tools, grouped by domain.
  </Card>

  <Card title="Errors" icon="triangle-exclamation" href="/mcp/errors">
    401, 402, 403 and 429 — and how to recover.
  </Card>
</CardGroup>

***

Need Help ?

<Columns cols={2}>
  <Card title="Telegram" icon="telegram" href="https://t.me/EnigmaValidatorCommunity/1" />

  <Card title="Discord" icon="discord" href="https://discord.com/invite/cbKncMeZ52" />

  <Card title="Email" icon="envelope" href="mailto:contact@hypedexer.com" />

  <Card title="Twitter" icon="twitter" href="https://x.com/hypedexer" />
</Columns>
