You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
56-tool MCP server for Aster DEX perpetual futures trading
A comprehensive Model Context Protocol server that gives Claude (and any MCP-compatible AI) full access to Aster DEX perpetual futures — from real-time market data and institutional-grade analysis to live order execution and automated strategies.
Why This Exists
Most DEX integrations are thin API wrappers. This server includes the analytical layer that makes the data actionable:
Capability
This Server
Basic Wrappers
VPVR (Volume Profile)
POC, VAH, VAL, VWAP, Delta
—
Cross-Exchange Analysis
Aster vs Hyperliquid vs Binance
—
Pump / Breakout Detection
MFI, StochRSI, OBV, structural scoring
—
Market Regime Detection
BTC EMA/RSI regime with confidence band
—
Binance Flow Signals
OI history, top-trader positioning, taker flow
—
Accumulation Detection
Pre-move institutional signals
—
Strategy Automation
Funding farm, grid, pump strategies
—
Spot + Perps
Both markets, transfers between
—
QFL Base Signals
CryptoBaseScanner integration
—
Scale Grid Engine
Multi-level grid with risk management
—
Tools Reference (56 total)
Market Data
Tool
Description
get_market_data
Price, ticker, orderbook, funding rates, exchange info
get_klines
Historical candlestick data
get_recent_trades
Recent public trades
scan_markets
Scan all markets sorted by volume, funding, change, OI, or spread
get_market_intelligence
Comprehensive report: top gainers, losers, volume leaders, funding opportunities
Perpetual Trading
Tool
Description
execute_order
Market/limit orders with TP/SL and trailing stops
manage_orders
Cancel orders, batch place, set auto-cancel timer
calculate_position_size
Risk-based position sizing from account balance
panic_button
Emergency close all positions and cancel all orders
Spot Trading
Tool
Description
get_spot_market_data
Spot prices, tickers, orderbook, trading pairs
get_spot_klines
Spot candlestick data
get_spot_trades
Recent spot trades
get_spot_account
Balances, open orders, order history, trade history
execute_spot_order
Market buy/sell or limit orders
cancel_spot_order
Cancel single or all spot orders
spot_transfer
Transfer assets between spot and perpetuals wallet
What's the current BTC funding rate on Aster vs Hyperliquid?
Run VPVR analysis on ETHUSDT and tell me the key support/resistance levels.
Scan for pump signals — show me the top 5 with highest conviction.
What's the current market regime? Should I be longing or shorting right now?
Open a 100 USDT long on SOL with 10x leverage and a 2.5% stop loss.
Where is institutional accumulation happening right now?
Start a funding farm strategy on the top 3 positive-funding pairs.
Compare Binance and Aster volume on ETHUSDT — which exchange is leading?
Standalone Scripts
The scripts/ folder contains CLI tools that run directly — no MCP server needed, no Claude required:
# Build first
pnpm run build
# Visual VPVR analysis with color output
node scripts/vpvr-analysis.mjs LINKUSDT
# Cross-exchange VPVR comparison (Aster vs Hyperliquid)
node scripts/vpvr-cross.mjs BTCUSDT
# In-depth VPVR analysis with extended metrics
node scripts/vpvr-analyzer.mjs ETHUSDT
# RSI-based ranging market detection across all pairs
node scripts/scan-ranging.mjs
Market data and analysis tools work without credentials. Trading and account tools require API keys.
Attribution
Exchange API client originally adapted from lugondev's aster-dex-api and significantly extended.
Disclaimer
This software is for informational and educational purposes. Perpetual futures trading involves substantial risk of loss. Never risk capital you cannot afford to lose.