mcp-crypto
Click on "Deploy 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-cryptowhat's the price of Bitcoin?"
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.
# CoinGecko MCP Server
A Model Context Protocol (MCP) server that provides real-time cryptocurrency data from the CoinGecko API.
## Features
- **get_price**: Get current price for any cryptocurrency
- **get_market_data**: Get detailed market data including market cap, volume, etc.
- **get_historical_data**: Get historical price data with customizable time periods
- **search_coins**: Search for cryptocurrencies by name or symbol
## Installation
1. Clone the repository
2. Install dependencies:
```bash
npm install
```Build
npm run buildRelated MCP server: Crypto Tracker MCP Server
Usage
Development
npm run devProduction
npm startTesting
npm testTools
get_price
Get the current price for a cryptocurrency.
Parameters:
coin_id(optional): CoinGecko coin ID (e.g., "bitcoin", "ethereum")symbol(optional): Cryptocurrency symbol (e.g., "BTC", "ETH")vs_currency(optional): Target currency (default: "usd")
Example:
{
"symbol": "TRX",
"vs_currency": "usd"
}get_market_data
Get detailed market data for a cryptocurrency.
Parameters:
coin_id(optional): CoinGecko coin ID (e.g., "bitcoin", "ethereum")symbol(optional): Cryptocurrency symbol (e.g., "BTC", "ETH")vs_currency(optional): Target currency (default: "usd")
Example:
{
"symbol": "BTC"
}get_historical_data
Get historical price data.
Parameters:
coin_id(optional): CoinGecko coin ID (e.g., "bitcoin", "ethereum")symbol(optional): Cryptocurrency symbol (e.g., "BTC", "ETH")vs_currency(optional): Target currency (default: "usd")days(optional): Number of days (1-365, default: 1)interval(optional): Data interval (daily/hourly)
Example:
{
"symbol": "ETH",
"days": 7,
"interval": "daily"
}search_coins
Search for cryptocurrencies by name or symbol.
Parameters:
query(required): Search query
Example:
{
"query": "tron"
}Integration
With Claude Desktop
Add to your MCP settings:
{
"mcpServers": {
"coingecko": {
"command": "node",
"args": ["/path/to/coingecko-mcp-server/build/index.js"]
}
}
}Rate Limits
CoinGecko's free API has rate limits:
10-30 calls per minute
Please be respectful of their service
License
MIT
## Key Changes from OKX to CoinGecko
1. **API Base URL**: Changed to `https://api.coingecko.com/api/v3`
2. **Endpoints**: Using CoinGecko's endpoints:
- `/simple/price` for basic price data
- `/coins/markets` for detailed market data
- `/coins/{id}/market_chart` for historical data
- `/search` for coin search
3. **Parameters**: Adapted to CoinGecko's parameter structure
4. **Data Format**: Updated types to match CoinGecko's response format
5. **Coin Identification**: Added support for both coin_id and symbol lookup
6. **Error Handling**: Added rate limit detection (HTTP 429)
## Setup Instructions
1. **Create the project directory:**
```bash
mkdir coingecko-mcp-server
cd coingecko-mcp-serverCreate all the files above in their respective locations
Install dependencies:
npm installBuild the project:
npm run buildTest the server:
npm test
This CoinGecko-based server should be much more reliable than the OKX version, as CoinGecko has excellent uptime and a well-designed API.
This server cannot be deployed
Maintenance
Related MCP Connectors
Live and historical cryptocurrency prices via CoinGecko free API.
Free, keyless live cryptocurrency prices, market cap, and 24h change via CoinGecko.
CoinGecko MCP — wraps CoinGecko free API (no auth required)
CoinGecko-backed live prices, market caps, DeFi metrics — no per-user API key needed.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides cryptocurrency market data using the CoinGecko API21MIT
- AlicenseNot gradedqualityDmaintenanceConnects AI agents to real-time cryptocurrency market data from CoinGecko API, enabling price lookups, coin details, market rankings, search, and trending crypto queries through natural language.7 npmApache 2.0
- FlicenseNot gradedqualityDmaintenanceProvides live and historical cryptocurrency prices, trending coins, and global market data via CoinGecko API, enabling AI agents to fetch real-time and historical crypto information.-
- AlicenseBqualityDmaintenanceProvides cryptocurrency pricing information using the CoinGecko API, enabling users to fetch current prices of any cryptocurrency in their chosen currency.19 npm1ISC