blockbeats-mcp 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# blockbeats-mcp
|
|
2
|
+
|
|
3
|
+
BlockBeats Pro API MCP Server,为 Claude 提供加密货币快讯、文章、搜索和链上市场数据查询能力。
|
|
4
|
+
|
|
5
|
+
## 使用方法
|
|
6
|
+
|
|
7
|
+
### 前置条件
|
|
8
|
+
|
|
9
|
+
- Node.js 18+
|
|
10
|
+
- BlockBeats API Key([申请地址](https://www.theblockbeats.info/))
|
|
11
|
+
- Claude Desktop
|
|
12
|
+
|
|
13
|
+
### 配置 Claude Desktop
|
|
14
|
+
|
|
15
|
+
编辑配置文件:
|
|
16
|
+
- **Windows**:`%APPDATA%\Claude\claude_desktop_config.json`
|
|
17
|
+
- **Mac**:`~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"mcpServers": {
|
|
22
|
+
"blockbeats": {
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": ["-y", "blockbeats-mcp"],
|
|
25
|
+
"env": {
|
|
26
|
+
"BLOCKBEATS_API_KEY": "你的API密钥"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
重启 Claude Desktop 后即可使用。
|
|
34
|
+
|
|
35
|
+
## 支持的工具
|
|
36
|
+
|
|
37
|
+
| 工具 | 说明 |
|
|
38
|
+
|------|------|
|
|
39
|
+
| `get_newsflash` | 快讯列表(全部/重要/原创/首发/链上/融资/预测/AI)|
|
|
40
|
+
| `get_articles` | 文章列表(全部/重要/原创)|
|
|
41
|
+
| `search_news` | 关键词搜索 |
|
|
42
|
+
| `get_btc_etf_flow` | BTC ETF 净流入 |
|
|
43
|
+
| `get_daily_onchain_tx` | 每日链上交易量 |
|
|
44
|
+
| `get_ibit_fbtc_flow` | IBIT/FBTC 净流入 |
|
|
45
|
+
| `get_stablecoin_marketcap` | 稳定币市值 |
|
|
46
|
+
| `get_compliant_exchange_total` | 合规交易所总资产 |
|
|
47
|
+
| `get_us_treasury_yield` | 美债收益率 |
|
|
48
|
+
| `get_dxy_index` | 美元指数(DXY)|
|
|
49
|
+
| `get_m2_supply` | 全球 M2 供应量 |
|
|
50
|
+
| `get_bitfinex_long_positions` | Bitfinex 多头持仓 |
|
|
51
|
+
| `get_contract_oi_data` | 合约平台 OI 数据 |
|
|
52
|
+
| `get_sentiment_indicator` | 抄底逃顶情绪指标 |
|
|
53
|
+
| `get_top10_netflow` | 链上净流入前十代币 |
|
|
54
|
+
| `get_exchange_rankings` | 合约交易所排名 |
|
|
55
|
+
|
|
56
|
+
## 使用示例
|
|
57
|
+
|
|
58
|
+
配置完成后,直接在 Claude 中对话:
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
今天 BTC ETF 流入多少?
|
|
62
|
+
最新的重要快讯有哪些?
|
|
63
|
+
搜索 Solana 相关新闻
|
|
64
|
+
现在宏观环境适合入场吗?
|
|
65
|
+
链上资金在流向哪里?
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## License
|
|
69
|
+
|
|
70
|
+
MIT
|