everything vs universal-crypto-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | universal-crypto-mcp by nirholas | |
|---|---|---|
| Stars | ★ 85,748 | ★ 37 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
universal-crypto-mcp · Summary
A universal MCP server for AI agents to interact with 20+ blockchain networks via natural language.
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
universal-crypto-mcp · Use cases
- AI agents can perform cross-chain token swaps through multiple DEX aggregators
- Users can track portfolio performance across 20+ blockchain networks through natural language queries
- Developers can build AI-powered DeFi applications with automated gas optimization and MEV protection
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-everythinguniversal-crypto-mcp · Install
Install the package via npm:
npm install @nirholas/universal-crypto-mcpFor Claude Desktop, add to your config.json:
{
"mcpServers": {
"universal-crypto": {
"command": "npx",
"args": ["@nirholas/universal-crypto-mcp"]
}
}
}The server can also run via stdio or HTTP transport modes.