MCP Catalogs
Home

infura-mcp vs ultimate_mcp_server

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

infura-mcp
by deflang
ultimate_mcp_server
by Dicklesworthstone
Stars★ 1★ 149
30d uses
Score3185
Official
Categories
Developer ToolsblockchainAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit9 mo ago2 mo ago

infura-mcp · Summary

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

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

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

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

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

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.