返回市场
MCP-CoinGecko服务器

MCP-CoinGecko服务器

作者:crazyrabbitLTC9 星标更新:2025-06-11

项目介绍

【技术文档摘要】: 更新:CoinGecko 现在有了一个官方的 MCP 服务器: https://docs.coingecko.com/reference/mcp-server

我建议您使用这个服务器,因为可能不会再更新或维护这个版本。

CoinGecko 服务器

这是一个用于与 CoinGecko Pro API 进行交互的 Model Context Protocol (MCP) 服务器和 OpenAI 函数调用服务。

特性

  • 分页列出支持的加密货币
  • 通过名称或符号查找币种ID
  • 历史价格、市值和交易量数据
  • OHLC(开盘价、最高价、最低价、收盘价)蜡烛图数据
  • 具有刷新功能的本地币种缓存

安装

npm install coingecko-server

环境设置

在项目根目录创建一个 .env 文件:

COINGECKO_API_KEY=your_api_key_here

使用 Claude Desktop

Claude Desktop 提供了对 MCP 特性的全面支持。要使用此服务器:

  1. 安装 Claude Desktop

  2. 在您的 Claude Desktop 配置中添加以下内容:

    • 在 macOS 上:~/Library/Application Support/Claude/claude_desktop_config.json
    • 在 Windows 上:%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"
      }
    }
  }
}
  1. 重启 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);

// 获取函数定义
const functions = CoinGeckoService.getOpenAIFunctionDefinitions();

// 示例:获取历史数据
const response = await openai.chat.completions.create({
  model: "gpt-4-turbo-preview",
  messages: [{ role: "user", content: "获取过去一周比特币的价格历史" }],
  functions: [functions[2]], // get_historical_data 函数
  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
  );
}

数据类型

OHLCData

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

HistoricalData

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

CoinInfo

interface CoinInfo {
  id: string;
  symbol: string;
  name: string;
  platforms?: Record<string, string>;
}

速率限制

请参阅 CoinGecko Pro API 文档 以了解当前的速率限制和使用指南。

许可证

MIT