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 | — | — |
| Score | 31 | 85 |
| Official | — | — |
| Categories | Developer ToolsblockchainAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 9 mo ago | 2 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
- Install the package from PyPI:
pip install infura-mcp- 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
}
}
}
}- 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:latestultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server