MCP Server — Aster DEX
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., "@MCP Server — Aster DEXWhat's left for my Aster wallet to qualify for GOLD?"
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: IndigoProtocol/cardano-mcp
✨ 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/blessedberserker/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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAquality-maintenanceMCP Server for AsterPay x402 Data API — market data, AI tools, crypto analytics, and utilities accessible to AI agents via Model Context Protocol. 13 pay-per-call endpoints on Base network, $0.001 USDC each. EUR settlement for AI agent commerce.Last updated1737
- Alicense-qualityCmaintenanceMCP server for Cardano blockchain data — exposes on-chain queries, address lookups, transaction history, token metadata, stake pool info, and network parameters to LLM agents.Last updated832MIT
- Alicense-qualityDmaintenanceMCP (Model Context Protocol) server for the MAIN DEX on Base. Provides AI agents (Claude, Cursor, etc.) with tools to interact with the protocol: swap tokens, manage liquidity, enter/exit ALM strategies(10% APY), and more.Last updatedMIT
- AlicenseAqualityDmaintenanceMCP server for Hyperliquid that provides read-only on-chain wallet analytics. Enables natural-language queries about positions, fills, funding, and realized PnL for any public address.Last updated827MIT
Related MCP Connectors
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/blessedberserker/MCP-Server-Aster-DEX'
If you have feedback or need assistance with the MCP directory API, please join our Discord server