dexpaprika-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
dexpaprika-mcp by coinpaprika | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 40 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
dexpaprika-mcp · Summary
A comprehensive MCP server for accessing real-time crypto and DEX data across multiple blockchains with 14 specialized tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
dexpaprika-mcp · Use cases
- Cryptocurrency market analysis and price tracking across multiple blockchains
- Comparing DEX performance, fee structures, and liquidity across different networks
- Analyzing token performance, pool liquidity, and trading patterns for DeFi applications
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
dexpaprika-mcp · Install
Installation
Smithery (Recommended)
npx -y @smithery/cli install @coinpaprika/dexpaprika-mcp --client claudeManual Installation
npm install -g dexpaprika-mcp
dexpaprika-mcpClaude Desktop Integration
Add to Claude Desktop config:
{
"mcpServers": {
"dexpaprika": {
"command": "npx",
"args": ["dexpaprika-mcp"]
}
}
}Hosted Alternative (No Installation)
{
"mcpServers": {
"dexpaprika": {
"type": "streamable-http",
"url": "https://mcp.dexpaprika.com/streamable-http"
}
}
}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