Binance MCP Server

find_arbitrage_pairs

Identify crypto arbitrage opportunities on Binance by analyzing funding rates, volume, and rate direction stability over specified history. Filter results based on minimum funding rate, average volume, and stability threshold.

Instructions

Find arbitrage pairs based on funding rate, volume, and rate direction stability.

Args: min_funding_rate: Minimum funding rate to qualify. min_avg_volume: Minimum 24hr volume in USDT. history_days: How many days of history to analyze. stability_threshold: Minimum proportion of funding rates in same direction.

Returns: List of qualifying arbitrage opportunities.

Input Schema

NameRequiredDescriptionDefault
history_daysNo
min_avg_volumeNo
min_funding_rateNo
stability_thresholdNo

Input Schema (JSON Schema)

{ "properties": { "history_days": { "default": 7, "title": "History Days", "type": "integer" }, "min_avg_volume": { "default": 1000000, "title": "Min Avg Volume", "type": "number" }, "min_funding_rate": { "default": 0.0005, "title": "Min Funding Rate", "type": "number" }, "stability_threshold": { "default": 0.8, "title": "Stability Threshold", "type": "number" } }, "title": "find_arbitrage_pairsArguments", "type": "object" }
ID: 6e21hyefin