hive-sdk vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
hive-sdk by hive-intel | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | 金融数据AI / LLM 工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
hive-sdk · 概述
机构级加密市场基础设施MCP服务器,提供来自9个提供商的376+工具。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
hive-sdk · 使用场景
- AI代理访问实时加密货币市场数据和DeFi指标
- 跨多个区块链和DeFi协议的投资组合分析
- 交易前安全检查,包括蜜罐检测
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
hive-sdk · 安装
安装
使用npx(无需安装):
HIVE_API_KEY=hive_live_... npx -y -p hive-intelligence hive market price --ids bitcoin --vs usd全局安装:
npm install -g hive-intelligenceClaude Desktop配置
添加到~/Library/Application Support/Claude/claude_desktop_config.json(macOS)或%APPDATA%\Claude\claude_desktop_config.json(Windows):
{
"mcpServers": {
"hive": {
"command": "npx",
"args": ["-y", "hive-intelligence"],
"env": { "HIVE_API_KEY": "hive_live_..." }
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything