Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Mcp Coingecko Server

    An Anthropic MCP server (with OpenAI Function calling compatibility) for the Coingecko Pro API

    9 stars
    JavaScript
    Updated Jul 2, 2025

    Table of Contents

    • Features
    • Installation
    • Environment Setup
    • Usage with Claude Desktop
    • Usage with OpenAI Function Calling
    • Data Types
    • OHLCData
    • HistoricalData
    • CoinInfo
    • Rate Limits
    • License

    Table of Contents

    • Features
    • Installation
    • Environment Setup
    • Usage with Claude Desktop
    • Usage with OpenAI Function Calling
    • Data Types
    • OHLCData
    • HistoricalData
    • CoinInfo
    • Rate Limits
    • License

    Documentation

    Update: CoinGecko now has an official MCP server:

    https://docs.coingecko.com/reference/mcp-server

    I recomend you use that one, as I probably won't update or keep this one current.

    CoinGecko Server

    A Model Context Protocol (MCP) server and OpenAI function calling service for interacting with the CoinGecko Pro API.

    Features

    • Paginated list of supported cryptocurrencies
    • Coin ID lookup by name or symbol
    • Historical price, market cap, and volume data
    • OHLC (Open, High, Low, Close) candlestick data
    • Local coin cache with refresh capability

    Installation

    bash
    npm install coingecko-server

    Environment Setup

    Create a .env file in your project root:

    env
    COINGECKO_API_KEY=your_api_key_here

    Usage with Claude Desktop

    Claude Desktop provides full support for MCP features. To use this server:

    1. Install Claude Desktop

    2. Add to your Claude Desktop configuration:

    • On macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • On Windows: %APPDATA%\Claude\claude_desktop_config.json
    json
    {
      "mcpServers": {
        "coingecko": {
          "command": "node",
          "args": ["/path/to/coingecko-server/build/index.js"],
          "env": {
            "COINGECKO_API_KEY": "your-api-key-here"
          }
        }
      }
    }

    3. Restart Claude Desktop

    The server provides the following tools:

    • get-coins: Get a paginated list of supported coins
    • find-coin-ids: Look up CoinGecko IDs for coin names/symbols
    • get-historical-data: Get historical price, market cap, and volume data
    • get-ohlc-data: Get OHLC candlestick data
    • refresh-cache: Refresh the local coin list cache

    Usage with OpenAI Function Calling

    typescript
    import { CoinGeckoService } from 'coingecko-server';
    import OpenAI from 'openai';
    
    const openai = new OpenAI();
    const coinGeckoService = new CoinGeckoService(process.env.COINGECKO_API_KEY);
    
    // Get function definitions
    const functions = CoinGeckoService.getOpenAIFunctionDefinitions();
    
    // Example: Get historical data
    const response = await openai.chat.completions.create({
      model: "gpt-4-turbo-preview",
      messages: [{ role: "user", content: "Get Bitcoin's price history for the last week" }],
      functions: [functions[2]], // get_historical_data function
      function_call: "auto",
    });
    
    if (response.choices[0].message.function_call) {
      const args = JSON.parse(response.choices[0].message.function_call.arguments);
      const history = await coinGeckoService.getHistoricalData(
        args.id,
        args.vs_currency,
        args.from,
        args.to,
        args.interval
      );
    }

    Data Types

    OHLCData

    typescript
    interface OHLCData {
      timestamp: number;
      open: number;
      high: number;
      low: number;
      close: number;
    }

    HistoricalData

    typescript
    interface HistoricalData {
      prices: [number, number][];
      market_caps: [number, number][];
      total_volumes: [number, number][];
    }

    CoinInfo

    typescript
    interface CoinInfo {
      id: string;
      symbol: string;
      name: string;
      platforms?: Record;
    }

    Rate Limits

    Please refer to the CoinGecko Pro API documentation for current rate limits and usage guidelines.

    License

    MIT

    Similar MCP

    Based on tags & features

    • WA

      Waha Mcp

      JavaScript00
    • WI

      Wizzy Mcp Tmdb

      JavaScript00
    • RI

      Rijksmuseum Mcp

      JavaScript·
      59
    • MC

      Mcp Server Playwright

      JavaScript·
      262

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • WA

      Waha Mcp

      JavaScript00
    • WI

      Wizzy Mcp Tmdb

      JavaScript00
    • RI

      Rijksmuseum Mcp

      JavaScript·
      59
    • MC

      Mcp Server Playwright

      JavaScript·
      262

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k