filesystem vs educhain-ai-agent-kit
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | educhain-ai-agent-kit by SailFish-Finance | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30天用量 | — | — |
| 综合分 | 77 | 36 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 金融数据开发者工具blockchain |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 10 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
educhain-ai-agent-kit · 概述
MCP服务器提供EDUCHAIN区块链操作,包括代币查询、钱包管理、交换和套利检测功能。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
educhain-ai-agent-kit · 使用场景
- 交易助手,用于监控代币价格并在SailFish DEX上执行交换
- 钱包管理工具,用于检查余额和发送代币
- 套利检测系统,用于识别交易所之间的盈利机会
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
educhain-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"
}
}
}
}