MCP Connector

Access Real-Time Crypto Market Data

An MCP server giving AI agents CoinGecko crypto prices, onchain analytics, trends, and NFT data.

Works with coingecko

Maintainer of this project? Claim this page to edit the listing.


90
Spark score
out of 100
Updated 7 months ago
Version 1.0.0
Models
universal

Add to Favorites

Why it matters

Integrate AI agents with CoinGecko's comprehensive cryptocurrency market data. Access real-time prices, market trends, onchain analytics, and historical data for over 15,000 coins.

Outcomes

What it gets done

01

Retrieve live cryptocurrency prices and market capitalization.

02

Analyze market trends including trending coins, gainers, and losers.

03

Access historical price data and onchain analytics for various tokens.

04

Fetch rich metadata such as descriptions, logos, and contract addresses.

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/vb-coingecko | bash

Overview

CoinGecko MCP

An MCP server giving AI agents access to CoinGecko's crypto market data - prices, onchain analytics, trends, historical data, and NFT stats. Use it when an agent needs live or historical crypto, onchain, or NFT market data answered directly instead of hand-coded.

What it does

Gives AI agents access to CoinGecko's cryptocurrency market data: real-time prices, market cap, and volume for 15,000+ coins; onchain DEX price and liquidity data for 8M+ tokens; market trends (trending coins, gainers, losers, new listings); rich metadata (descriptions, logos, social links, contract addresses); historical price and OHLCV data; and NFT floor prices and collection statistics, spanning 1,000+ exchanges.

When to use - and when NOT to

Use this when an agent needs live or historical crypto market data - current prices, trending coins, market-cap rankings, onchain token liquidity, or NFT floor prices - answered directly from CoinGecko rather than scraped or hand-coded. The public keyless server is best for testing and basic queries under shared rate limits; for production apps needing 500+ calls/min, use the Pro (bring-your-own-key) server instead.

Capabilities

  • Real-time market data: prices, market cap, and volume for 15,000+ coins.
  • Onchain analytics: DEX price and liquidity data for 8M+ tokens.
  • Market trends: trending coins, gainers, losers, new listings.
  • Rich metadata: descriptions, logos, social links, contract addresses.
  • Historical data: price and OHLCV history.
  • NFT data: floor prices and collection statistics.

How to install

Three server options are available. Remote, free, no API key:

claude mcp add --transport http coingecko https://mcp.api.coingecko.com/mcp

Remote with an API key for higher limits:

claude mcp add --transport http coingecko https://mcp.pro-api.coingecko.com/mcp

A local server is also configurable via npx -y @coingecko/coingecko-mcp with COINGECKO_PRO_API_KEY and COINGECKO_ENVIRONMENT=pro environment variables. The public server is keyless with shared rate limits, the Pro (BYOK) server supports 500+ calls/min for production apps, and the local server's limits depend on the connected API plan.

Who it's for

Developers and AI-agent builders who need crypto market, onchain, and NFT data - such as "What is the current price of Bitcoin in USD?" or "Generate a 30-day price chart for Ethereum" - answered live inside an agent conversation instead of built from a separate API integration.

Source README

The CoinGecko MCP Server provides AI agents with access to comprehensive cryptocurrency market data, including real-time prices, market trends, onchain analytics, and historical data for 15,000+ coins across 1,000+ exchanges.

Installation

Remote Server (Free, No API Key)

claude mcp add --transport http coingecko https://mcp.api.coingecko.com/mcp

With API Key (Higher Limits)

claude mcp add --transport http coingecko https://mcp.pro-api.coingecko.com/mcp

Configuration

Public Server (Keyless)

{
  "mcpServers": {
    "coingecko_mcp": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.api.coingecko.com/mcp"]
    }
  }
}

Pro Server (API Key Required)

{
  "mcpServers": {
    "coingecko_mcp": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.pro-api.coingecko.com/mcp"]
    }
  }
}

Local Server

{
  "mcpServers": {
    "coingecko_mcp_local": {
      "command": "npx",
      "args": ["-y", "@coingecko/coingecko-mcp"],
      "env": {
        "COINGECKO_PRO_API_KEY": "YOUR_API_KEY",
        "COINGECKO_ENVIRONMENT": "pro"
      }
    }
  }
}

Features

  • Real-time Market Data - Prices, market cap, and volume for 15,000+ coins
  • Onchain Analytics - DEX price and liquidity data for 8M+ tokens
  • Market Trends - Trending coins, gainers, losers, new listings
  • Rich Metadata - Descriptions, logos, social links, contract addresses
  • Historical Data - Price and OHLCV data history
  • NFT Data - Floor prices and collection statistics

Server Options

Type Best For Rate Limits
Public (Keyless) Testing, basic queries Shared limits
Pro (BYOK) Production apps 500+ calls/min
Local Development Based on API plan

Usage Examples

What is the current price of Bitcoin in USD?
What are the top 3 trending coins on CoinGecko right now?
Show me the top 10 cryptocurrencies by market cap with 24h change
Generate a 30-day price chart for Ethereum

Resources

FAQ

Common questions

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.