use Bitget’s API to get cryptocurrency info
https://github.com/pwh-pwh/coin-mcp-serverStop context-switching to check token prices or dig through exchange APIs. This MCP server brings Bitget's market data directly into your AI conversations and development workflow.
You're building with AI tools, analyzing markets, or just need current crypto prices without opening another tab. Most crypto APIs require authentication setup, rate limit management, and response parsing. This server handles all that and exposes clean tools your AI assistant can use immediately.
getTokenPrice: Pass any token symbol, get the current USDT price instantly
// Input: { "token": "BTC" }
// Output: "67420.50"
getCoinInfo: Full token details including supported chains, transfer status, and network information
getAnnouncements: Latest exchange announcements and market updates
Zero Setup Friction: No API keys, no authentication - just run the server and start querying prices. Perfect for quick analysis or monitoring without the Bitget API overhead.
AI-Native Integration: Your AI assistant can now check token prices, analyze market data, and provide real-time crypto context without you manually fetching data.
Instant Deployment: Built on Deno, runs anywhere with a single command. Deploy to Deno Deploy for zero-infrastructure hosting.
Trading Analysis: "What's the current price of BGB and how does it compare to yesterday?" Your AI can fetch real-time data and provide context.
Portfolio Monitoring: Build workflows where your AI assistant tracks specific tokens and alerts you to significant moves.
Research Automation: When analyzing DeFi protocols or tokens, get current market data without breaking your research flow.
Market Reporting: Generate automated reports with current prices pulled directly into your AI conversations.
Installation is dead simple with Deno:
# Run directly from URL - no local installation needed
deno run --allow-net --allow-env --allow-read https://deno.land/x/coin_mcp_server/main.ts
Or clone and run locally:
git clone https://github.com/pwh-pwh/coin-mcp-server.git
cd coin-mcp-server
deno run --allow-net --allow-env --allow-read main.ts
Add to your MCP configuration:
{
"mcpServers": {
"coin-mcp": {
"command": "deno",
"args": [
"run", "--allow-net", "--allow-read", "--allow-env",
"https://deno.land/x/coin_mcp_server/main.ts"
]
}
}
}
The server includes proper error handling, Zod validation for parameters, and connects to Bitget's stable public API. No rate limiting concerns for basic price queries, and you can customize the API endpoint via environment variables if needed.
Perfect for developers who want crypto data integration without the API complexity. Your AI assistant gets crypto market awareness, and you get seamless real-time data in your workflow.