0xarchive-mcp

0xarchive-mcp

MCP server for querying historical and real-time crypto market data across Hyperliquid, Hyperliquid HIP-3, and Lighter.xyz - orderbooks, trades, candles, funding, open interest, liquidations, and data quality metrics.

Category
访问服务器

README

0xArchive MCP Server

<a href="https://glama.ai/mcp/servers/@0xArchiveIO/0xarchive-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@0xArchiveIO/0xarchive-mcp/badge" /> </a>

Query crypto market data across Hyperliquid, HIP-3, and Lighter.xyz using natural language in Claude.

57 tools covering orderbooks, trades, candles, funding rates, open interest, liquidations, data quality metrics, and wallet-based authentication — from April 2023 to real-time.

Quick Start (30 seconds)

git clone https://github.com/0xArchiveIO/0xarchive-mcp.git
cd 0xarchive-mcp && npm install && npm run build
claude mcp add 0xarchive -s user -t stdio -e OXARCHIVE_API_KEY=0xa_your_api_key -- node $(pwd)/build/index.js

Then ask Claude: "What's BTC's current funding rate?"

Usage Examples

Ask Claude... Tool that fires
"Give me a BTC market summary" get_summary
"Show ETH 4h candles for the past week" get_candles
"What's the current funding rate for SOL?" get_funding_current
"Compare BTC funding on Hyperliquid vs Lighter" get_funding_current + get_lighter_funding_current
"Show me SOL liquidations in the last 24 hours" get_liquidations
"Get BTC orderbook with 20 levels" get_orderbook
"Any data incidents this month?" get_data_incidents
"What's the km:US500 price on HIP-3?" get_hip3_summary
"Show me the SLA report for January 2026" get_data_sla

Setup (detailed)

1. Install & Build

git clone https://github.com/0xArchiveIO/0xarchive-mcp.git
cd 0xarchive-mcp
npm install
npm run build

2. Get an API Key

Sign up at 0xarchive.io and generate an API key in Dashboard. Or use the web3_challenge and web3_signup tools to get a free API key with just an Ethereum wallet — no browser needed.

3. Add to Claude Code

claude mcp add 0xarchive -s user -t stdio -e OXARCHIVE_API_KEY=0xa_your_api_key -- node /absolute/path/to/0xarchive-mcp/build/index.js

4. Add to Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "0xarchive": {
      "command": "node",
      "args": ["/absolute/path/to/0xarchive-mcp/build/index.js"],
      "env": {
        "OXARCHIVE_API_KEY": "0xa_your_api_key"
      }
    }
  }
}

Available Tools (57)

Hyperliquid

Tool Description
get_instruments List all Hyperliquid perp/spot instruments
get_instrument Get a single Hyperliquid instrument by coin
get_orderbook Current L2 orderbook snapshot
get_orderbook_history Historical orderbook snapshots
get_trades Trade/fill history
get_candles OHLCV candle data
get_funding_current Current funding rate
get_funding_history Funding rate history
get_open_interest Current open interest
get_open_interest_history Open interest history
get_liquidations Liquidation history
get_liquidations_by_user Liquidations for a specific user address
get_liquidation_volume Aggregated liquidation volume (USD buckets)
get_freshness Per-coin data freshness and lag
get_summary Combined market summary (price, funding, OI, volume, liquidations)
get_price_history Mark/oracle/mid price history

HIP-3 (Builder Perps)

Tool Description
get_hip3_instruments List HIP-3 instruments
get_hip3_instrument Get a single HIP-3 instrument by coin
get_hip3_orderbook Current HIP-3 orderbook
get_hip3_orderbook_history Historical HIP-3 orderbook snapshots
get_hip3_trades HIP-3 trade history
get_hip3_trades_recent Most recent HIP-3 trades
get_hip3_candles HIP-3 candle data
get_hip3_funding_current Current HIP-3 funding rate
get_hip3_funding HIP-3 funding history
get_hip3_open_interest Current HIP-3 open interest
get_hip3_open_interest_history HIP-3 open interest history
get_hip3_freshness Per-coin HIP-3 data freshness and lag
get_hip3_summary Combined HIP-3 market summary
get_hip3_price_history HIP-3 mark/oracle/mid price history

Lighter.xyz

Tool Description
get_lighter_instruments List Lighter instruments
get_lighter_instrument Get a single Lighter instrument by coin
get_lighter_orderbook Current Lighter orderbook
get_lighter_orderbook_history Historical Lighter orderbook snapshots
get_lighter_trades Lighter trade history
get_lighter_trades_recent Most recent Lighter trades
get_lighter_candles Lighter candle data
get_lighter_funding_current Current Lighter funding rate
get_lighter_funding Lighter funding history
get_lighter_open_interest Current Lighter open interest
get_lighter_open_interest_history Lighter open interest history
get_lighter_freshness Per-coin Lighter data freshness and lag
get_lighter_summary Combined Lighter market summary
get_lighter_price_history Lighter mark/oracle/mid price history

Data Quality

Tool Description
get_data_quality_status System health across all exchanges
get_data_coverage Data coverage (earliest/latest, records, completeness)
get_exchange_coverage Coverage for a specific exchange
get_symbol_coverage Per-symbol coverage with gap detection
get_data_incidents Outage and degradation history
get_incident Single incident details by ID
get_data_latency WebSocket/REST latency and data freshness
get_data_sla Monthly SLA compliance report

Web3 Authentication

Tool Description
web3_challenge Get a SIWE challenge message for a wallet address
web3_signup Create a free-tier account and API key with a signed SIWE message
web3_list_keys List all API keys for a wallet
web3_revoke_key Revoke a specific API key
web3_subscribe Subscribe to a paid tier (build/pro) via x402 USDC payment on Base

Free-tier flow: web3_challenge (get SIWE message) → sign with personal_sign (EIP-191) → web3_signup (submit signature) → receive API key.

Paid-tier flow (x402): web3_subscribe with tier → returns 402 with pricing → sign USDC transfer (EIP-3009 on Base) → web3_subscribe again with payment_signature → receive API key + subscription.

Pricing Tiers

Some endpoints require a paid plan. The server returns clear error messages with upgrade guidance when tier limits are hit.

Tier Price Access
Free $0/mo BTC-only historical data
Build $49/mo All coins, REST API, 25 WS subs
Pro $199/mo Full orderbook depth, 100 WS subs
Enterprise Custom Tick data, 200 WS subs

Upgrade at 0xarchive.io/pricing.

Tool Annotations

All 57 tools carry MCP annotations so clients can reason about safety and retry behavior.

Market data tools (52):

Annotation Value Meaning
readOnlyHint true Tools never modify data
destructiveHint false No destructive side effects
idempotentHint true Safe to retry on failure
openWorldHint true Queries an external API

Web3 tools (5): readOnlyHint: false, idempotentHint: false — these create accounts, keys, and subscriptions.

All tools also declare an outputSchema so clients can validate structured responses.

Smart Defaults

  • Time range: Defaults to last 24 hours if not specified
  • Limit: Defaults to 100 records
  • Interval: Defaults to 1h for candles
  • Pagination: Returns cursor for next page when more data available
  • Timestamps: Accepts both Unix milliseconds and ISO 8601 strings

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选