binance-intelligence-mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited binance-intelligence-mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Python MCP server that provides 8 computed intelligence tools for Binance futures markets. Each tool combines 2-6 Binance API endpoints into derived analytics with composite scoring algorithms ··· not just raw data forwarding.
Existing Binance MCP servers forward raw API responses. This package computes derived intelligence:
pip install binance-intelligence-mcpbinance-intelligence-mcp{
"mcpServers": {
"binance-intelligence": {
"command": "binance-intelligence-mcp"
}
}
}detect_accumulationCombines klines, open interest history, premium index, and taker buy/sell ratio to detect smart accumulation.
Parameters:
| Name | Type | Default | Description |
|---|---|---|---|
symbols | list[str] | top 12 | Trading pairs to analyze |
Output: Per-symbol scores (volume_surge, oi_buildup, stealth_mode, buyer_aggression) and composite 0-100.
scan_whale_tradesScans aggregate trades for large orders, classifies by tier, computes net pressure.
Parameters:
| Name | Type | Default | Description |
|---|---|---|---|
symbols | list[str] | top 6 | Trading pairs to scan |
min_usd | float | 50000 | Minimum trade size in USD |
Output: Classified trades (Dolphin/Whale/Mega), net buy/sell pressure, biggest trade.
simulate_market_impactWalks the order book to simulate large order execution impact.
Parameters:
| Name | Type | Default | Description |
|---|---|---|---|
symbol | str | BTCUSDT | Trading pair |
side | str | BUY | BUY or SELL |
amount_usd | float | 100000 | Order size in USD |
Output: Levels consumed, avg/worst fill, slippage %, impact rating.
smart_money_radar6-factor composite analysis of smart money positioning.
Parameters:
| Name | Type | Default | Description |
|---|---|---|---|
symbols | list[str] | top 12 | Trading pairs to analyze |
Output: Per-factor scores (-1 to +1), composite 0-100, bias label (BULLISH/BEARISH/NEUTRAL).
scan_candlestick_patternsDetects classic candlestick patterns with confidence scoring.
Parameters:
| Name | Type | Default | Description |
|---|---|---|---|
symbols | list[str] | top 12 | Trading pairs |
interval | str | 4h | Candlestick interval (1h/4h) |
Output: Detected patterns (Hammer, Engulfing, Doji, Morning Star, etc.) with confidence 0-100.
compute_correlation_matrixComputes Pearson correlation coefficients between trading pair prices.
Parameters:
| Name | Type | Default | Description |
|---|---|---|---|
symbols | list[str] | top 8 | 2-20 trading pairs |
interval | str | 4h | Candlestick interval |
limit | int | 90 | Lookback periods |
Output: Full correlation matrix, strongly correlated pairs (|r| >= 0.7).
classify_market_regimeClassifies market regime using ADX, ATR, and volume analysis.
Parameters:
| Name | Type | Default | Description |
|---|---|---|---|
symbols | list[str] | top 12 | Trading pairs |
Output: Regime label (TRENDING/RANGING/VOLATILE_BREAKOUT/LOW_ACTIVITY), direction, ADX/ATR values.
backtest_dcaBacktests DCA strategy vs lump-sum investing over historical data.
Parameters:
| Name | Type | Default | Description |
|---|---|---|---|
symbol | str | BTCUSDT | Trading pair |
amount_per_interval | float | 100 | USD per purchase |
interval_days | int | 7 | Days between purchases |
total_days | int | 365 | Historical lookback |
Output: DCA vs lump-sum ROI comparison with winner declaration.
All endpoints are public (no API key required):
/fapi/v1/klines ··· Candlestick/kline data/fapi/v1/aggTrades ··· Aggregate trades/fapi/v1/depth ··· Order book/fapi/v1/premiumIndex ··· Funding rate/futures/data/openInterestHist ··· Open interest history/futures/data/topLongShortPositionRatio ··· Top trader positions/futures/data/topLongShortAccountRatio ··· Top trader accounts/futures/data/globalLongShortAccountRatio ··· Global sentiment/futures/data/takerlongshortRatio ··· Taker buy/sell volumepytest tests/ -v142 mock-based tests, zero API keys needed. Tests cover all 8 tools, the API client, helper functions, edge cases, and error handling.
MCP Client ·�� stdio ·�� server.py (FastMCP, 8 tools)
·�� tools/*.py (scoring algorithms)
·�� client.py (async aiohttp)
·�� Binance Public APIEach tool module is a pure async function: (client, params) ·�� dict. The server module wraps these with @mcp.tool() decorators and manages client lifecycle.
MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.