CoinGecko MCP Server
코인게코 서버
CoinGecko Pro API와 상호 작용하기 위한 MCP(Model Context Protocol) 서버와 OpenAI 함수 호출 서비스입니다.
특징
지원되는 암호화폐의 페이지별 목록
이름이나 기호로 동전 ID 조회
과거 가격, 시가총액 및 거래량 데이터
OHLC(시가, 고가, 저가, 종가) 캔들스틱 데이터
새로 고침 기능이 있는 로컬 코인 캐시
Related MCP server: Crypto Tracker MCP Server
설치
지엑스피1
환경 설정
프로젝트 루트에 .env 파일을 만듭니다.
COINGECKO_API_KEY=your_api_key_hereClaude Desktop과 함께 사용
Claude Desktop은 MCP 기능을 완벽하게 지원합니다. 이 서버를 사용하려면 다음 단계를 따르세요.
Claude Desktop 구성에 다음을 추가합니다.
macOS의 경우:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows의 경우:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"coingecko": {
"command": "node",
"args": ["/path/to/coingecko-server/build/index.js"],
"env": {
"COINGECKO_API_KEY": "your-api-key-here"
}
}
}
}Claude Desktop을 다시 시작하세요
서버는 다음과 같은 도구를 제공합니다.
get-coins: 지원되는 코인의 페이지별 목록을 가져옵니다.find-coin-ids: 코인 이름/심볼에 대한 CoinGecko ID를 조회합니다.get-historical-data: 과거 가격, 시가총액, 거래량 데이터를 가져옵니다.get-ohlc-data: OHLC 캔들스틱 데이터 가져오기refresh-cache: 로컬 코인 목록 캐시를 새로 고칩니다.
OpenAI 함수 호출 사용
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
);
}데이터 유형
OHLC데이터
interface OHLCData {
timestamp: number;
open: number;
high: number;
low: number;
close: number;
}역사 데이터
interface HistoricalData {
prices: [number, number][];
market_caps: [number, number][];
total_volumes: [number, number][];
}코인인포
interface CoinInfo {
id: string;
symbol: string;
name: string;
platforms?: Record<string, string>;
}요금 제한
현재 요금 제한 및 사용 지침은 CoinGecko Pro API 문서를 참조하세요.
특허
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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.12Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to query cryptocurrency data including prices, market cap, rankings, categories, and global metrics from CoinMarketCap via MCP tools.9MIT
- FlicenseNot gradedqualityBmaintenanceProvides 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.
Related MCP Connectors
CoinGecko MCP — wraps CoinGecko free API (no auth required)
Live and historical cryptocurrency prices via CoinGecko free API.
Crypto MCP with 21 tools for market data, DeFi, analytics, and sentiment. Post-paid USDC billing.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/crazyrabbitLTC/mcp-coingecko-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server