AsterDex MCP Server
Provides access to Bitcoin/USDT perpetual futures market data on AsterDex, including order books, price klines, funding rates, and real-time trading statistics.
Provides access to Dogecoin/USDT perpetual futures market data on AsterDex, including order books, price klines, funding rates, and real-time trading statistics.
Provides access to Ethereum/USDT perpetual futures market data on AsterDex, including order books, price klines, funding rates, and real-time trading statistics.
Provides access to Solana/USDT perpetual futures market data on AsterDex, including order books, price klines, funding rates, and real-time trading statistics.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AsterDex MCP Servershow me the BTCUSDT order book with 20 levels"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AsterDex MCP Server
MCP (Model Context Protocol) server for AsterDex perpetual futures market data. Provides real-time and historical market data tools for Claude Code.
Features
9 Market Data Tools:
get_orderbook - Order book depth with bids and asks
get_klines - OHLCV candlestick data for technical analysis
get_funding_rate_history - Historical funding rate data
get_ticker_24h - 24-hour price statistics
get_mark_price - Mark price and funding rate info
get_ticker_price - Latest price lookup
get_book_ticker - Best bid/ask prices
get_index_price_klines - Index price history
get_mark_price_klines - Mark price history
Installation
Prerequisites
Python 3.10 or higher
Claude Code CLI
Install the MCP Server
cd asterdex-mcp
pip install -e .Configure Claude Code
Add the server to your Claude Code MCP settings:
claude mcp add asterdex-mcpOr manually add to your MCP configuration file (~/.claude/mcp.json):
{
"mcpServers": {
"asterdex": {
"command": "python",
"args": ["-m", "asterdex_mcp.server"]
}
}
}Usage
Once installed, you can use the tools directly in Claude Code conversations:
Example Queries
Get BTC/USDT order book:
Get the orderbook for BTCUSDT with 20 levelsGet ETH price data:
Show me 4-hour klines for ETHUSDT from the last 7 daysAnalyze funding rates:
Get funding rate history for BTCUSDT over the last 30 daysCheck current prices:
What's the current mark price and funding rate for SOLUSDT?Compare index vs mark price:
Show me the difference between index price and mark price klines for BTCUSDT over the last dayAvailable Tools
get_orderbook
Get order book depth for a trading pair.
Parameters:
symbol(required): Trading pair (e.g., "BTCUSDT")limit(optional): Depth limit - 5, 10, 20, 50, 100, 500, or 1000. Default: 100
Example:
{
"symbol": "BTCUSDT",
"limit": 50
}get_klines
Get OHLCV candlestick data.
Parameters:
symbol(required): Trading pair (e.g., "ETHUSDT")interval(required): Time interval - "1m", "5m", "15m", "30m", "1h", "4h", "1d", etc.start_time(optional): Start time in millisecondsend_time(optional): End time in millisecondslimit(optional): Number of candles (max 1500). Default: 500
Example:
{
"symbol": "ETHUSDT",
"interval": "1h",
"limit": 100
}get_funding_rate_history
Get historical funding rate data.
Parameters:
symbol(optional): Trading pair (returns all if not provided)start_time(optional): Start time in millisecondsend_time(optional): End time in millisecondslimit(optional): Number of records (max 1000). Default: 100
Example:
{
"symbol": "BTCUSDT",
"limit": 50
}get_ticker_24h
Get 24-hour price change statistics.
Parameters:
symbol(optional): Trading pair (returns all if not provided)
Example:
{
"symbol": "SOLUSDT"
}get_mark_price
Get mark price and funding rate information.
Parameters:
symbol(optional): Trading pair (returns all if not provided)
Example:
{
"symbol": "BTCUSDT"
}get_ticker_price
Get latest price.
Parameters:
symbol(optional): Trading pair (returns all if not provided)
Example:
{
"symbol": "ETHUSDT"
}get_book_ticker
Get best bid/ask from order book.
Parameters:
symbol(optional): Trading pair (returns all if not provided)
Example:
{
"symbol": "BTCUSDT"
}get_index_price_klines
Get index price candlestick history.
Parameters:
pair(required): Trading pair (e.g., "BTCUSDT")interval(required): Time intervalstart_time(optional): Start time in millisecondsend_time(optional): End time in millisecondslimit(optional): Number of candles (max 1500). Default: 500
Example:
{
"pair": "BTCUSDT",
"interval": "1h",
"limit": 200
}get_mark_price_klines
Get mark price candlestick history.
Parameters:
symbol(required): Trading pair (e.g., "BTCUSDT")interval(required): Time intervalstart_time(optional): Start time in millisecondsend_time(optional): End time in millisecondslimit(optional): Number of candles (max 1500). Default: 500
Example:
{
"symbol": "BTCUSDT",
"interval": "4h",
"limit": 100
}Configuration
Environment Variables
ASTERDEX_BASE_URL: Override the API base URL (default:https://fapi.asterdex.com)
Example:
export ASTERDEX_BASE_URL=https://testnet-fapi.asterdex.comTime Format
All timestamps are in milliseconds since Unix epoch.
Convert from seconds:
time_ms = time.time() * 1000Common time calculations:
import time
# Current time
now_ms = int(time.time() * 1000)
# 24 hours ago
day_ago_ms = now_ms - (24 * 60 * 60 * 1000)
# 7 days ago
week_ago_ms = now_ms - (7 * 24 * 60 * 60 * 1000)Interval Options
Valid kline intervals:
Minutes:
1m,3m,5m,15m,30mHours:
1h,2h,4h,6h,8h,12hDays/Weeks/Months:
1d,3d,1w,1M
Common Trading Pairs
BTCUSDT- Bitcoin/USDTETHUSDT- Ethereum/USDTSOLUSDT- Solana/USDTBNBUSDT- BNB/USDTDOGEUSDT- Dogecoin/USDT
Use the get_ticker_price tool without a symbol to see all available trading pairs.
Troubleshooting
Server not connecting
Check that the MCP server is properly installed:
claude mcp listYou should see asterdex in the list.
Import errors
Make sure dependencies are installed:
pip install -e .API errors
The AsterDex API may have rate limits. If you encounter errors, wait a moment and try again.
Development
Project Structure
asterdex-mcp/
├── src/asterdex_mcp/
│ ├── __init__.py
│ ├── server.py # MCP server and tools
│ ├── client.py # AsterDex API client
│ └── tools/
│ └── __init__.py
├── pyproject.toml
└── README.mdTesting
Run the server directly:
python -m asterdex_mcp.serverAPI Documentation
For detailed API documentation, see:
License
MIT
Support
For issues or questions:
GitHub: asterdex/api-docs
AsterDex Docs: docs.asterdex.com
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/solenyaresearch0000/asterdex-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server