MCP Catalogs
Home

filesystem vs educhain-ai-agent-kit

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
educhain-ai-agent-kit
by SailFish-Finance
Stars★ 85,748★ 6
30d uses
Score7736
Official
Categories
File SystemDeveloper ToolsProductivity
FinanceDeveloper Toolsblockchain
LanguageTypeScriptTypeScript
Last committhis month10 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

educhain-ai-agent-kit · Summary

MCP server for EDUCHAIN blockchain operations including token queries, wallet management, swaps, and arbitrage detection.

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

educhain-ai-agent-kit · Use cases

  • Trading assistant for monitoring token prices and executing swaps on SailFish DEX
  • Wallet management tool for checking balances and sending tokens
  • Arbitrage detection system to identify profit opportunities between exchanges

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using 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 Extension

Click the installation buttons in the README to install directly in VS Code.

educhain-ai-agent-kit · Install

  1. Make sure you have Node.js installed
  2. Clone this repository
  3. Install dependencies: npm install
  4. Build the project: npm run build
  5. Add the MCP server to your Claude Desktop configuration file:
{
  "mcpServers": {
    "sailfish": {
      "command": "node",
      "args": ["/path/to/SubgraphMCP/build/index.js"],
      "env": {
        "RPC_URL": "https://your-edu-rpc-url.com"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.