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 | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this 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-everythingUCAI · Install
Installation
pip install abi-to-mcpQuick Start
Generate an MCP server for a smart contract:
abi-to-mcp generate 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D -o ~/uniswap-server
cd ~/uniswap-server && pip install -r requirements.txtConnect 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"
}
}
}
}