Back to MCP directory
publicPublicdnsLocal runtime

cryptopanic-mcp-server

提供加密货币新闻的MCP服务器

article

README

🚀 cryptopanic-mcp-server

本项目通过 CryptoPanic 为 AI 代理提供最新的加密货币新闻,助力您及时掌握加密货币领域的动态。

🚀 快速开始

本服务器借助 CryptoPanic 平台,能为 AI 代理提供最新的加密货币新闻。

✨ 主要特性

该服务器仅实现了一个工具,可用于获取加密货币新闻:

get_crypto_news(kind: str = "news", num_pages: int = 1) -> str
  • kind:内容类型,可选择新闻、分析、视频。
  • num_pages:需要获取的页面数量,默认值为 1,最大值为 10。

示例输出如下:

- 比特币突破 $60k 抵抗位受 ETF 乐观情绪影响
- 以太坊二层解决方案获得 traction
- 欧盟提出新加密货币监管提案
- ...

📦 安装指南

配置步骤

  • 首先,您需要获取 CryptoPanic API 密钥,可前往 这里 获取。
  • 然后,将服务器条目添加到配置文件中:
"mcpServers": { 
  "cryptopanic-mcp-server": { 
    "command": "uv", 
    "args": [ 
      "--directory", "/your/path/to/cryptopanic-mcp-server", 
      "run", 
      "main.py" 
    ], 
    "env": { 
      "CRYPTOPANIC_API_KEY": "" 
    } 
  } 
}

📄 许可证

本项目采用 MIT License,具体内容请查看 LICENSE 文件。

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