LogoMCP Store
icon of CoinGeckoMCP

CoinGeckoMCP

CoinGecko API Server MCP: Node.js Express server providing a comprehensive interface to the CoinGecko cryptocurrency data API for AI systems.

Introduction

๐Ÿš€ CoinGecko API Server MCP

The CoinGecko API Server MCP is a Node.js solution providing access to cryptocurrency market data via a RESTful API and MCP interface, bridging AI systems with real-time crypto data.

โœจ Key Features
  • Dual API Support: Integrates with CoinGecko Free and Pro APIs.
  • AI Integration: Implements the MCP protocol for AI assistants.
  • Intelligent Fallback: Switches between APIs to prevent rate limiting.
  • Optimized Performance: Efficient request handling and response caching.
  • Comprehensive Data: Access to essential cryptocurrency metrics.
  • Simple Interface: RESTful endpoints and JSON-RPC methods.
  • Robust Error Handling: Clear error messages.
  • Easy Deployment: Minimal configuration with guided setup.
  • Extensive Documentation: Clear usage instructions and examples.
๐Ÿš€ Quick Start
npx coingecko-api-server

This will:

  1. Download and install the server
  2. Run an interactive setup wizard
  3. Ask for your CoinGecko API key (optional)
  4. Start the server automatically
๐Ÿ“ฆ Installation
npx coingecko-api-server
Option 2: Manual Installation
git clone https://github.com/yourusername/coingecko-api-server.git
cd coingecko-api-server
npm install
npm run setup
npm start
โš™๏ธ Configuration

The server is configured using environment variables in the .env file:

VariableDescriptionDefault
PORTServer port3000
COINGECKO_API_KEYCoinGecko Pro API key (optional)-
CACHE_DURATIONCache duration in seconds60
LOG_LEVELLogging level (error, warn, info, debug)info
๐Ÿ“š API Reference
RESTful Endpoints

Basic Endpoints

  • GET /api/ping - Check API server status

Price Data

  • GET /api/simple/price - Get price data for specified coins
    • Query params: ids, vs_currencies, include_market_cap, include_24hr_vol, include_24hr_change, include_last_updated_at, precision

Coin Data

  • GET /api/coins/markets - Get market data for coins
    • Query params: vs_currency, ids, category, order, per_page, page, sparkline, price_change_percentage

Market Data

  • GET /api/global - Get global cryptocurrency data
  • GET /api/search/trending - Get trending coins
Examples

Get Bitcoin Price in USD:

curl "http://localhost:3000/api/simple/price?ids=bitcoin&vs_currencies=usd"

Response:

{
  "bitcoin": {
    "usd": 45678.12
  }
}

Get Top 5 Cryptocurrencies by Market Cap:

curl "http://localhost:3000/api/coins/markets?vs_currency=usd&order=market_cap_desc&per_page=5&page=1"
๐Ÿค– AI Integration (MCP)

This server implements the Marketplace Component Program (MCP) protocol, enabling AI systems like Claude to access cryptocurrency data.

MCP Integration Points
  1. JSON-RPC Endpoint: /rpc - Handles method calls from AI clients
  2. Schema Definition: /mcp/schema - Defines available tools and parameters
Available MCP Methods
  • ping - Check API status
  • getPrice - Get price data for specified cryptocurrencies
  • getSupportedVsCurrencies - Get list of supported currencies
  • getCoinMarkets - Get market data for coins
  • getGlobal - Get global cryptocurrency data
  • getTrending - Get trending coins

For detailed integration instructions, see MCP_INTEGRATION.md.

๐Ÿ’Ž Pro API Benefits

This server supports both the CoinGecko Pro API and the free API:

FeatureFree APIPro API
Rate Limit~30 calls/minute~500 calls/minute
API ThrottlingYesNo
SupportCommunityPriority
Data Freshness10-30 minutes1-2 minutes
PriceFreeSubscription

For more details about the Pro API setup, see USING_COINGECKO_PRO.md.

๐Ÿ”ง Troubleshooting
IssueSolution
Rate limiting errorsConsider upgrading to Pro API or adjust your request frequency
Connection refusedEnsure the server is running on the specified port
Authentication errorsCheck your API key in the .env file
Missing dataVerify the parameters in your request
๐Ÿงช Development
# Run in development mode with hot reload
npm run dev
 
# Run tests
npm test
 
# Build for production
npm run build
๐Ÿ”„ How It Works

The server acts as a middleware between your applications and the CoinGecko API:

  1. Request Routing: Handles incoming requests from RESTful and JSON-RPC clients
  2. API Selection: Chooses between Free and Pro APIs based on configuration
  3. Rate Limit Management: Implements intelligent request throttling
  4. Response Processing: Formats and returns data in a consistent structure
  5. Error Handling: Provides detailed error information for troubleshooting
๐Ÿ“ฑ Use Cases
  • AI-Powered Financial Advisors: Enable AI systems to access real-time crypto data
  • Investment Dashboards: Build cryptocurrency dashboards with reliable data access
  • Portfolio Trackers: Create applications to monitor crypto holdings
  • Market Analysis Tools: Develop tools for technical and fundamental analysis
  • Trading Bots: Power automated trading systems with market data
๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments
  • CoinGecko for the comprehensive cryptocurrency data API
  • Anthropic for Claude AI and the MCP program
  • The open-source community for their invaluable contributions

โฌ† Back to top

Made with โค๏ธ by [Your Organization]

Information

Newsletter

Join the Community

Subscribe to our newsletter for the latest news and updates