MCP Catalogs
Home

evm-mcp-server vs everything

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

evm-mcp-server
by mcpdotdirect
everything
by modelcontextprotocol
Stars★ 376★ 85,748
30d uses
Score4977
Official
Categories
FinanceDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.