everything vs educhain-ai-agent-kit
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | educhain-ai-agent-kit by SailFish-Finance | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30天用量 | — | — |
| 综合分 | 77 | 36 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 金融数据开发者工具blockchain |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 10 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
educhain-ai-agent-kit · 概述
MCP服务器提供EDUCHAIN区块链操作,包括代币查询、钱包管理、交换和套利检测功能。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
educhain-ai-agent-kit · 使用场景
- 交易助手,用于监控代币价格并在SailFish DEX上执行交换
- 钱包管理工具,用于检查余额和发送代币
- 套利检测系统,用于识别交易所之间的盈利机会
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-everythingeduchain-ai-agent-kit · 安装
- 确保您已安装Node.js
- 克隆此存储库
- 安装依赖项:
npm install - 构建项目:
npm run build - 将MCP服务器添加到您的Claude Desktop配置文件中:
{
"mcpServers": {
"sailfish": {
"command": "node",
"args": ["/path/to/SubgraphMCP/build/index.js"],
"env": {
"RPC_URL": "https://your-edu-rpc-url.com"
}
}
}
}