Usage Examples
Once the MCP Server is connected, ask your AI agent in natural language and it will automatically call the appropriate tools.
Arbitrage Analysis
Find Premium Opportunities
"Find the exchange pair with the highest BTC premium"
The premium_overview skill is called, combining premium data + wallet status + fees + funding rates in a single request.
Check Transfer Feasibility
"Can I transfer ETH from Binance to Upbit? What's the cheapest network?"
The wallet_transfer_check skill verifies deposit/withdrawal availability and withdrawal fees per network.
Funding Rates
Compare Across Exchanges
"Compare ETH funding rates across all exchanges"
The funding_rate_overview skill returns current rates + price + volume + history per exchange.
Historical Rates
"Show me the last 100 BTC-USDT funding rate entries on Binance"
The funding_rate_history tool is called directly.
Open Interest
Market-Wide OI Summary
"Show me the top tokens by Open Interest right now"
The oi_overview skill returns market-wide aggregates (total OI, top tokens, top exchanges).
Per-Asset OI Analysis
"Compare BTC OI across exchanges and show recent change %"
The oi_overview skill called with base: BTC returns per-exchange OI + 1h/4h/24h change % + funding rate.
OI Historical Trend
"Show me ETH OI history for the last 7 days, broken down by exchange"
The open_interest_history_aggregated tool returns time-series data.
Liquidation
Market-Wide Liquidation Activity
"Which tokens had the most liquidations in the last 24 hours?"
The liquidation_overview skill returns heatmap + recent liquidation feed to identify hotspots.
Per-Asset Liquidation Detail
"Show me BTC 24h liquidation stats with recent events and funding context"
The liquidation_overview skill called with base: BTC returns long/short liquidations + OI context + funding.
Liquidation Map (Leverage Map)
"Show me the Binance BTC-USDT liquidation price distribution"
The liquidation_map tool returns leverage-tier (10x/25x/50x/100x) liquidation price levels.
Whale Liquidation Monitoring
"Show me only large liquidations over 100K USD"
The liquidation_feed tool with minVolumeUsd: 100000 filters for whale-sized liquidations.
Token Research
Comprehensive Token Analysis
"Give me a full analysis of DOGE — price, premium, funding, OI, liquidation, and risk flags"
The token_detail skill calls 10+ APIs in parallel. Sections: price, premium, funding, social, notice, wallet, margin, oi, liquidation, risk.
Specific Sections Only
"Show me only the OI and liquidation info for ETH"
The token_detail skill called with sections: oi,liquidation.
Token Risk Check
"Is this token about to be delisted or flagged with cautions?"
Use cex_symbol_cautions + cex_symbol_delistings, or the risk section of token_detail.
Listing Lifecycle Monitoring
New Listings + Delistings Monitor
"Show me recent listings on Korean exchanges and upcoming delistings"
The listing_monitor skill combines new listing history + announcements + token updates + upcoming delistings + active caution flags in one call.
Thematic Token Search
"Show me all currently-traded meme tokens across exchanges"
The cex_symbol_tags tool with tag: meme returns meme-tagged tokens from every exchange.
Exchange Comparison
"Compare Binance and Upbit by fees, volume, and funding rates"
The exchange_overview skill is called.
Direct Data Queries
Candle Data
"Get the last 50 1-hour candles for BTC-USDT on Binance"
tool: cex_candle
params: { exchange: "binance", symbol: "BTC-USDT", interval: "1h", limit: 50 }
Real-time Ticker
"What's the current BTC-KRW price on Upbit?"
tool: ticker
params: { exchange: "upbit", symbol: "BTC-KRW" }