Pulls perpetual futures funding rates from Binance, Bybit, and OKX through a single MCP interface hosted at funding-rates.api.klymax402.com. You get live funding rates, open interest data, and market sentiment indicators across major crypto derivatives exchanges. Useful when you're building trading bots, monitoring cross-exchange arbitrage opportunities, or tracking whale positioning through funding rate divergence. The server uses SSE transport and appears to be part of the x402 ecosystem. If you're working with crypto derivatives data and want a unified view without managing three separate exchange APIs, this consolidates the signal into one stream.
Public tool metadata for what this MCP can expose to an agent.
perp_get_funding_ratesUse this when you need current perpetual futures funding rates for a single asset across exchanges. Returns rates comparison in JSON. 1. symbol: trading pair symbol 2. rates: array per exchange with1 paramsUse this when you need current perpetual futures funding rates for a single asset across exchanges. Returns rates comparison in JSON. 1. symbol: trading pair symbol 2. rates: array per exchange with
symbolstringLive perpetual funding rates across Binance, Bybit, OKX -- open interest and predicted next rate included. Pay-per-call via x402 (USDC on Base L2) -- no API key, no signup, no rate-limit wall.
Part of the klymax402 marketplace -- 100 x402 micropayment APIs for AI agents, one wallet, USDC on Base.
Add to your MCP client config (Claude Desktop, Cursor, ElizaOS, etc.):
{
"mcpServers": {
"funding-rates": {
"url": "https://funding-rates.api.klymax402.com/mcp"
}
}
}
curl "https://funding-rates.api.klymax402.com/api/rates?symbol=BTC"
# -> 402 Payment Required, with an x402 payment challenge in the response body
Any x402-aware client (@x402/fetch, x402-agent-tools, ATXP) handles the 402 -> sign -> retry cycle automatically.
| Tool | Method | Path | Price | Description |
|---|---|---|---|---|
perp_get_funding_rates | GET | /api/rates | $0.002 | Get perpetual futures funding rates across exchanges |
perp_get_funding_ratesUse this when you need current perpetual futures funding rates for a single asset across exchanges. Returns rates comparison in JSON.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | Token symbol (e.g. BTC, ETH, SOL) |
Returns
symbol -- trading pair symbolrates -- array per exchange with exchange name, current funding rate, annualized rateopenInterest -- open interest in USD per exchangepredictedNextRate -- predicted next funding rate per exchangenextFundingTime -- timestamp of next funding eventExample response:
{"symbol":"ETH","rates":[{"exchange":"Binance","rate":0.0082,"annualized":8.98},{"exchange":"Bybit","rate":0.0075,"annualized":8.21},{"exchange":"OKX","rate":0.0091,"annualized":9.97}],"openInterest":{"Binance":2150000000},"nextFundingTime":"2026-04-13T16:00:00Z"}
When to use: monitoring funding costs on your perpetual positions and timing entries. Essential for basis trading and funding cost management.
Not for: spot prices (use dex_get_swap_quote), yields (use defi_find_best_yields).
eip155:8453)100 x402 micropayment APIs for AI agents -- one wallet, USDC on Base, zero signup.
MIT