MCP-Server-Aster-DEX
Click on "Deploy 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., "@MCP-Server-Aster-DEXWhat's my Aster DEX volume, points, and airdrop tier?"
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.
MCP-Server-Aster-DEX
MCP server for Aster DEX โ a Model Context Protocol server that gives Claude, Cursor and Cline structured access to Aster DEX market data, volume, points and airdrop eligibility via natural language. Read-only tools โ no trading, no keys. Unofficial community project, not affiliated with Aster.
๐ MCP Server โ Aster DEX
MCP server for Aster DEX โ volume, points, rank & airdrop eligibility as tools for LLM agents.
Ask Claude / Cline / Cursor: "What's left for my Aster wallet to qualify for GOLD?" โ and get a real answer.
๐ Overview
MCP Server โ Aster DEX is a Model Context Protocol server for the Aster DEX API that exposes trading volume, points, leaderboard rank and airdrop eligibility as MCP tools for any MCP-compatible LLM agent. It gives Claude, Cursor, and Cline access to Aster DEX market data through natural language โ a BNB Chain perp DEX integration for LLM agents, built on the official Model Context Protocol Python SDK.
Instead of refreshing a web dashboard, your AI assistant calls the tools directly and reasons about your Aster farming progress in plain language โ query volume, points, and airdrop stats from your AI assistant, with structured JSON responses for agent workflows:
"You're at $161,400 campaign volume โ SILVER tier, 7% into the next tier. Keep your streak alive (12 days now) and provide liquidity for 30 days to also satisfy the liquidity criterion for GOLD."
โ ๏ธ Read-only tools โ no trading, no private keys required. The server exposes data tools only; it cannot place orders.
Related MCP server: JTX Markets MCP Server
โจ Tools exposed
Tool | Returns |
| Today / 7-day / 30-day / campaign volume + streak. |
| Estimated points with streak bonus breakdown. |
| Leaderboard position with daily delta. |
| Available Aster trading pairs. |
| Airdrop tier snapshot โ satisfied vs. missing criteria. |
| Farming task checklist with completion state. |
Each tool returns typed JSON the agent can reason over.
๐ Quick start
git clone https://github.com/trinity1994/mcp-server-aster-dex.git
cd mcp-server-aster-dex
pip install -r requirements.txt
python main.py --demo # stdio transport, bundled demo walletOr use the one-click launchers (they unpack a bundled standalone interpreter on first run):
run.bat :: Windowschmod +x run.sh && ./run.sh # Linux / macOS๐ Connect your client
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"aster": {
"command": "python",
"args": ["C:\\path\\to\\mcp-server-aster-dex\\main.py", "--demo"]
}
}
}Cline / Cursor / Continue
Point the client at the server over stdio with the same command. One-line install per client โ see your client's MCP settings page.
๐งช Try the tools headlessly
python main.py --tool get_eligibility --demo
python main.py --tool get_points --wallet 0x42โฆaa91 --demo๐๏ธ Project layout
mcp-server-aster-dex/
โโโ main.py # Entry point (unpacks bundled runtime on first launch)
โโโ mcp_aster/ # Host package
โ โโโ __main__.py # `python -m mcp_aster` entry (argparse + server bootstrap)
โ โโโ server.py # FastMCP tool definitions
โ โโโ config.py # Config loader (TOML)
โ โโโ core/ # models, analytics, mock data
โโโ kernel/ # Runtime support library
โโโ requirements.txt
โโโ run.bat / run.sh # One-click launchers
โโโ release/ # Pre-compiled binaries (planned)โ๏ธ Configuration
# ~/.aster-mcp/config.toml
[network]
rpc_bnb = "https://bsc-dataseed.binance.org"
rpc_base = "https://mainnet.base.org"
[campaign]
points_per_dollar = 2.0
streak_bonus_per_day = 0.05
max_streak_bonus = 0.50
tiers = [
{ name = "BRONZE", volume = 50000 },
{ name = "SILVER", volume = 150000 },
{ name = "GOLD", volume = 300000 },
{ name = "PLATINUM", volume = 600000 },
]๐ Security
Read-only. Data tools only โ no order placement, no signing, no private keys.
No telemetry. Queries go to the configured public RPCs.
โ FAQ
The Model Context Protocol โ an open standard for connecting LLMs to external tools and data sources. See modelcontextprotocol.io.
No. Read-only data tools. An LLM can summarise your farming progress, but it cannot place orders through this server.
No. Independent, unofficial community project. Aster is a third-party protocol; MCP is an open standard.
โ ๏ธ Disclaimer
This is an unofficial community project, not affiliated with, endorsed by, or sponsored by Aster Finance or Anthropic. Provided for research purposes โ not financial advice.
๐ License
MIT โ see LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
Cross-asset market data and LLM inference for AI agents. Pay-per-call in USDC via x402.
Query your org's data in natural language โ read-only MCP access to SQL, NoSQL, files & warehouses.
OpenAI-compatible LLM MCP (7 tools); chat via balance key or x402 USDC on Base
Market and on-chain crypto data for AI agents. Pay per call in USDC on Base (x402).
Related MCP Servers
- AlicenseAqualityDmaintenanceProvides read-only access to Solana on-chain data, enabling natural language queries for wallet balances, token holdings, prices, transactions, and more via MCP-compatible clients.8MIT
- AlicenseNot gradedqualityCmaintenanceEnables read-only querying of JTX Markets account and market data, including balance, positions, orders, trades, funding history, and market summaries, through natural language in MCP-compatible clients.MIT
- AlicenseNot gradedqualityBmaintenanceMCP server providing read-only access to Aster DEX volume, points, leaderboard rank, and airdrop eligibility as natural-language tools for LLM agents like Claude, Cursor, and Cline.34MIT
- AlicenseNot gradedqualityBmaintenanceExposes Lighter DEX data (volume, points, rank, liquidity, airdrop eligibility) as MCP tools, letting LLM agents query wallet farming stats in natural language. Read-only, no keys required, works with Claude, Cursor, and Cline.41MIT