Aster Info MCP Server

An MCP server that provides structured access to [Aster DEX](https://www.asterdex.com/en) market data—covering candlesticks, order books, trades, and

Local serverstdioPython

What is the Aster Info MCP MCP server?

If you already use Aster Info MCP, the aster info mcp mcp server is the piece that lets your assistant work with it directly. An MCP server that provides structured access to Aster DEX market data—covering candlesticks, order books, trades, and funding rates.

What the server does

  • 13 Tools — Access a variety of Aster Finance Futures API endpoints, including:
  • Candlestick data (get_kline, get_index_price_kline, get_mark_price_kline)
  • Price and ticker data (get_latest_price, get_price_change_statistics_24h, get_order_book_ticker)
  • Order book and trade data (get_order_book, get_recent_trades, get_historical_trades, get_aggregated_trades)
  • Funding and index data (get_premium_index, get_funding_rate_history)
  • Markdown Output — All tools return data as formatted Markdown tables for easy readability and integration

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • get_kline — Fetch candlestick data for a symbol
  • get_index_price_kline — Fetch index price candlestick data for a pair
  • get_mark_price_kline — Fetch mark price candlestick data for a symbol
  • get_premium_index — Fetch premium index data (mark price, funding rate)
  • get_funding_rate_history — Fetch historical funding rate data for a symbol
  • get_price_change_statistics_24h — Fetch 24-hour price change statistics
  • get_latest_price — Fetch the latest price for a symbol or all symbols
  • get_order_book_ticker — Fetch order book ticker data (best bid/ask prices and quantities)
  • get_order_book — Fetch order book data (bids and asks) for a symbol
  • get_recent_trades — Fetch recent trades for a symbol
  • get_historical_trades — Fetch historical trades for a symbol
  • get_aggregated_trades — Fetch aggregated trades for a symbol

Credentials and setup notes

  • Python 3.10 or higher - uv (recommended package manager)

Installation

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Aster Info MCP's toolset — get_kline, get_index_price_kline, get_mark_price_kline and 11 more — is a fair guide to whether it matches your workflow. It is maintained by kukapay; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Aster Info MCP.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_klineFetch candlestick data for a symbol.
get_index_price_klineFetch index price candlestick data for a pair.
get_mark_price_klineFetch mark price candlestick data for a symbol.
get_premium_indexFetch premium index data (mark price, funding rate).
get_funding_rate_historyFetch historical funding rate data for a symbol.
get_price_change_statistics_24hFetch 24-hour price change statistics.
get_latest_priceFetch the latest price for a symbol or all symbols.
get_order_book_tickerFetch order book ticker data (best bid/ask prices and quantities).
get_order_bookFetch order book data (bids and asks) for a symbol.
get_recent_tradesFetch recent trades for a symbol.
get_historical_tradesFetch historical trades for a symbol.
get_aggregated_tradesFetch aggregated trades for a symbol.
PrerequisitesThe Prerequisites tool exposed by this server.
Steps1. **Clone the Repository**: bash git clone https://github.com/kukapay/aster-info-mcp.git cd aster-info-mcp

Configuration

  • Python 3.10 or higher - uv (recommended package manager)

Example prompts to try

  • Use Aster Info MCP to get kline.
  • Use Aster Info MCP to get index price kline.
  • Use Aster Info MCP to get mark price kline.

Frequently asked questions

It connects Aster Info MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (get_kline, get_index_price_kline, get_mark_price_kline, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Aster Info MCP directly.