MCP Catalogs
Home

infura-mcp vs everything

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

infura-mcp
by deflang
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3177
Official
Categories
Developer ToolsblockchainAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

infura-mcp · Summary

An MCP server for querying Ethereum blockchain data through Infura APIs using natural language.

everything · Summary

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

infura-mcp · Use cases

  • Blockchain developers needing quick access to Ethereum data without writing custom API calls
  • DeFi applications requiring real-time blockchain information
  • Smart contract developers testing and debugging on-chain transactions

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

infura-mcp · Install

Installation

  1. Install the package from PyPI:
pip install infura-mcp
  1. Configure with Claude Desktop by adding this to your config.json:
{
  "mcpServers": {
    "infura": {
      "command": "npx",
      "args": [
        "-y",
        "infura-mcp"
      ],
      "env": {
        "INFURA_API_KEY": "your-api-key-here",
        "WRITE_TOOLS_ENABLED": false
      }
    }
  }
}
  1. Or run with Docker:
docker run -d --name infura-mcp-server -p 3000:3000 -e INFURA_API_KEY="your-infura-api-key" sumiteshn/infura-mcp:latest

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.