MCP Catalogs
Home

evm-mcp-server vs filesystem

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

evm-mcp-server
by mcpdotdirect
filesystem
by modelcontextprotocol
Stars★ 376★ 85,748
30d uses
Score4977
Official
Categories
FinanceDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit6 mo agothis month

evm-mcp-server · Summary

Comprehensive MCP server providing blockchain interaction tools across 60+ EVM networks with 22 tools and AI-guided prompts.

filesystem · Summary

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

evm-mcp-server · Use cases

  • AI agents analyzing wallet activity and token holdings across multiple blockchains
  • Smart contract interaction without needing to manually provide ABI information
  • Automated blockchain transactions through AI planning and execution
  • Human-readable address resolution using ENS names instead of complex wallet addresses

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

evm-mcp-server · Install

Installation

# Clone the repository
git clone https://github.com/mcpdotdirect/mcp-evm-server.git
cd mcp-evm-server

# Install dependencies with Bun
bun install

# Or with npm
npm install

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "evm-mcp-server": {
      "command": "npx",
      "args": ["-y", "@mcpdotdirect/evm-mcp-server"]
    },
    "evm-mcp-http": {
      "command": "npx",
      "args": ["-y", "@mcpdotdirect/evm-mcp-server", "--http"]
    }
  }
}

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.

Comparison generated from public README + GitHub signals. Last updated automatically.