MCP Catalogs
Home

everything vs UCAI

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

everything
by modelcontextprotocol
UCAI
by nirholas
Stars★ 85,748★ 33
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
FinanceDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

UCAI · Summary

UCAI is a tool that converts smart contract ABIs to MCP servers, enabling AI agents to interact with blockchain protocols.

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

UCAI · Use cases

  • Building AI agents with DeFi capabilities for swapping tokens, providing liquidity, and managing yield farms
  • Creating wallet applications that can explain and execute smart contract transactions through natural language
  • Developing DAO tooling with AI-powered proposal creation, voting mechanisms, and treasury management

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

UCAI · Install

Installation

pip install abi-to-mcp

Quick Start

Generate an MCP server for a smart contract:

abi-to-mcp generate 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D -o ~/uniswap-server
cd ~/uniswap-server && pip install -r requirements.txt

Connect to Claude Desktop by adding to your config:

{
  "mcpServers": {
    "uniswap": {
      "command": "python",
      "args": ["/path/to/uniswap-server/server.py"],
      "env": {
        "RPC_URL": "https://eth.llamarpc.com"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.