MCP server
AI agentsThe Buildix MCP server exposes live Hyperliquid orderflow analytics as Model Context Protocol tools. Plug it into Claude, ChatGPT, Cursor, or any MCP-compatible agent so the model can read the screener, fetch deep-view data on a pair, get current signals, inspect smart money positioning, or pull the liquidation map on demand. Five read-only tools. Streamable HTTP transport. Stateless.
Endpoint
https://www.buildix.trade/api/mcpStreamable HTTP only (POST). SSE is disabled — no Redis, fully stateless.
Connect from Claude Code
Paste this into your terminal. Replace bx_... with a Whale-tier key from your dashboard (anonymous access also works, capped at free-tier limits).
claude mcp add --transport http buildix https://www.buildix.trade/api/mcp \ --header "Authorization: Bearer bx_..."
Connect from Cursor / Claude Desktop
Add this to your client config (e.g. mcp.json).
{
"mcpServers": {
"buildix": {
"url": "https://www.buildix.trade/api/mcp",
"headers": {
"Authorization": "Bearer bx_..."
}
}
}
}Quick test (curl)
MCP is JSON-RPC over POST. This call lists the registered tools.
curl -X POST https://www.buildix.trade/api/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Tools
get_screenerinput: noneAll Hyperliquid pairs with price, 24h change, volume, OI, funding.
get_pairinput: symbol: string (e.g. "BTC")Detailed market data for one pair: mark, oracle, change, volume, OI, funding, max leverage.
get_signalsinput: noneActive V5+V6 orderflow signals: direction, score, confidence (0-100), regime, reasons.
get_smart_moneyinput: noneTop whale wallets, their open positions, aggregated per-coin long/short bias.
get_liquidation_mapinput: symbol: string, price_range_pct?: number (1-20), scenarios?: number[]Liquidation clusters + cascade scenarios. HIP-3 markets supported via "<dex>:<COIN>".
Authentication & rate limits
Anonymous calls work at free-tier rate limits — all 5 tools are open, no tier gates apply on MCP. Pass a Buildix API key in the Authorization: Bearer bx_... header to lift the cap to your tier's daily quota (Whale tier: 50,000 requests/day). Generate keys from Dashboard > API Keys.
Questions? hello@buildix.trade