Back to MCP directory
publicPublicdnsLocal runtime

coinmarket-mcp-server

Coinmarket MCP服务器实现了Coinmarket API的部分端点,提供加密货币数据查询服务

article

README

🚀 Coinmarket MCP 服务器

Coinmarket MCP 服务器实现了 Coinmarket API 的部分端点,同时提供了两个实用工具,可用于获取货币列表和代币报价。此外,该服务器的配置过程也较为清晰,能帮助用户快速上手。

🚀 快速开始

📦 安装

Claude Desktop

  • MacOS:配置文件路径为 ~/Library/Application\ Support/Claude/claude_desktop_config.json
  • Windows:配置文件路径为 %APPDATA%/Claude/claude_desktop_config.json%
开发/未发布的服务器配置 ``` "mcpServers": { "coinmarket_service": { "command": "uv", "args": [ "--directory", "/Users/anjor/repos/anjor/coinmarket_service", "run", "coinmarket_service" ], "env": { "COINMARKET_API_KEY": "" } } } ```

✨ 主要特性

🔍 资源

该服务器实现了 Coinmarket API 的一些端点:

  • 自定义的 coinmarket:// URI 方案,用于访问单个笔记。
  • 每个笔记资源包含名称、描述和 text/plain MIME 类型。

🛠️ 工具

该服务器实现了两个工具:

  • get-currency-listings:获取最新的货币列表。
  • get-quotes:获取代币的报价。
    • 接受可选字符串参数:"slug"(例如:bitcoin)或 "symbol"(例如:BTC)。

🔧 配置

需要 Coinmarket API 密钥。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client