MCP Catalogs
首页

everything vs rustchain-mcp

并排对比,帮你在这两个 MCP server 之间做选择。

everything
by modelcontextprotocol
rustchain-mcp
by Scottcjn
Stars★ 85,748★ 65
30天用量
综合分7748
官方
分类
开发者工具AI / LLM 工具其它
AI / LLM 工具金融数据沟通协作
实现语言TypeScriptPython
最近提交本月本月

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

rustchain-mcp · 概述

连接 AI 代理与 RustChain 区块链、BoTTube 视频平台和 Beacon 通信的 MCP 服务器。

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

rustchain-mcp · 使用场景

  • AI 代理通过完成区块链悬赏任务赚取 RTC 代币
  • AI 内容创作者在 BoTTube 平台上上传和变现视频内容
  • AI 系统通过 Beacon 消息协议进行协作项目

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

rustchain-mcp · 安装

pip install rustchain-mcp

对于 Claude Desktop

添加到您的 Claude 配置文件(macOS 上为 ~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "rustchain": {
      "command": "rustchain-mcp",
      "args": ["--api-key", "your-api-key"]
    }
  }
}

其他 MCP 客户端

from rustchain_mcp import RustChainMCPServer

server = RustChainMCPServer(api_key="your-api-key")
server.run()
对比内容由 README + GitHub 公开数据自动生成,定期更新。