Skip to main content

DataMaxi+ MCP Server

The DataMaxi+ MCP (Model Context Protocol) Server lets AI agents (Claude, Cursor, Gemini, etc.) access crypto market data directly.

What is MCP?​

MCP (Model Context Protocol) is a standard protocol for AI agents to access external data and tools. With the DataMaxi+ MCP Server connected, you can simply ask your AI "Find BTC arbitrage opportunities" and it will analyze real-time data for you.

Features​

Data Tools (55)​

All DataMaxi+ REST API endpoints are available as individual tools.

CategoryToolsDescription
CEX Candlecex_candle, cex_candle_exchanges, cex_candle_intervals, cex_candle_symbolsHistorical OHLCV candlestick data
Tickerticker, ticker_exchanges, ticker_symbolsReal-time price and volume
Funding Ratefunding_rate_latest, funding_rate_history, funding_rate_exchanges, funding_rate_symbolsPerpetual futures funding rates
Premiumpremium, premium_exchangesCross-exchange price differences (arbitrage)
Wallet Statuswallet_status, wallet_status_assets, wallet_status_exchangesDeposit/withdrawal availability
Trading Feescex_fees, cex_fees_exchanges, cex_fees_symbolsMaker/taker fee rates
Open Interest (OI) ⭐open_interest, open_interest_list, open_interest_overview, open_interest_summary, open_interest_history_aggregatedFutures OI snapshots, history, market summary
Liquidation ⭐liquidation, liquidation_feed, liquidation_heatmap, liquidation_map, liquidation_symbol_historyLiquidation events, heatmap, leverage map
CEX Symbol Events/Tags ⭐cex_symbol_cautions, cex_symbol_delistings, cex_symbol_metadata, cex_symbol_tags, cex_symbol_oi, cex_symbol_oi_stats, cex_symbol_liquidation, cex_symbol_volumeCaution/delisting/tags/OI integration
Forexforex, forex_symbolsForeign exchange rates (USD-KRW, etc.)
Index Priceindex_priceAggregated benchmark prices
Marginmargin_borrowMargin borrowing rates
Listingslistings_historical, cex_token_updates, cex_announcementsToken listing events and exchange news
Socialnaver_trend, naver_trend_symbols, telegram_channels, telegram_messagesSocial sentiment data

⭐ = Recently added (v0.3.0)

Skills (8)​

Composite tools that combine multiple API calls into a single request, based on real data patterns from the DataMaxi+ web app.

SkillDescriptionAPIs Combined
premium_overviewPremium + wallet status + fees + funding rate overviewpremium + wallet-status + fees + funding-rate + forex
funding_rate_overviewFunding rate comparison across exchanges with price/volumefunding-rate + ticker + history
wallet_transfer_checkVerify transfer feasibility and find cheapest networkwallet-status + fees + ticker
token_detailComprehensive token info (price, premium, funding, social, notices, wallet, margin, OI, liquidation, risk)10+ endpoints in parallel
exchange_overviewCompare exchanges by volume, fees, and funding ratesticker + fees + funding-rate + forex
listing_monitorToken lifecycle monitor (new listings + upcoming delistings + caution flags)listings + announcements + token-updates + delistings + cautions
oi_overview ⭐OI overview (market-wide summary or per-asset deep dive)open-interest/summary + cex/symbol/oi-stats + funding-rate + ticker
liquidation_overview ⭐Liquidation overview (heatmap + feed + per-asset liq/OI/funding)liquidation/heatmap + liquidation/feed + cex/symbol/liquidation + oi-stats

⭐ = Recently added (v0.3.0)

Setup​

The DataMaxi+ MCP Server is hosted remotely. No installation or build required — just an API key.

Prerequisites​


Claude Desktop​

Edit claude_desktop_config.json:

File location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"datamaxi": {
"type": "streamable-http",
"url": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}

Restart Claude Desktop after saving the config.

Claude Code​

One-line setup from the terminal:

claude mcp add datamaxi --transport http https://mcp.datamaxiplus.com/mcp \
--header "X-DTMX-APIKEY: YOUR_API_KEY"

Cursor​

Edit ~/.cursor/mcp.json or your project's .cursor/mcp.json:

{
"mcpServers": {
"datamaxi": {
"type": "streamable-http",
"url": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}

Windsurf​

Edit ~/.codeium/windsurf/mcp_config.json:

{
"mcpServers": {
"datamaxi": {
"serverUrl": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}

VS Code (GitHub Copilot)​

Add to .vscode/mcp.json or user settings (settings.json):

{
"mcp": {
"servers": {
"datamaxi": {
"type": "http",
"url": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}
}

Gemini (Google AI Studio)​

Set up via the Gemini CLI:

gemini mcp add --transport http --name datamaxi \
--url https://mcp.datamaxiplus.com/mcp \
--header "X-DTMX-APIKEY: YOUR_API_KEY"

Or edit ~/.gemini/settings.json:

{
"mcpServers": {
"datamaxi": {
"url": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}

ChatGPT Desktop​

Edit ~/.openai/mcp.json:

{
"mcpServers": {
"datamaxi": {
"type": "streamable-http",
"url": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}

Other MCP Clients​

Any client that supports MCP Streamable HTTP can connect:

FieldValue
Endpointhttps://mcp.datamaxiplus.com/mcp
TransportStreamable HTTP
Auth HeaderX-DTMX-APIKEY: YOUR_API_KEY

Replace YOUR_API_KEY with your actual API key. You can find it on your account page.

Verify Connection​

After setup, ask your AI agent:

"List available tools from DataMaxi+ MCP"

You should see 42 tools (36 data + 6 skills) if the connection is working.

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 min_volume_usd: 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.

"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" }

"Show me the Naver search trend for Bitcoin"

tool: naver_trend
params: { symbol: "BTC" }