MCP Catalogs
Home

everything vs mcp-crypto-price

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

everything
by modelcontextprotocol
mcp-crypto-price
by truss44
Stars★ 85,748★ 39
30d uses
Score7745
Official
Categories
Developer ToolsAI / LLM ToolsOther
FinanceAI / LLM ToolsDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

mcp-crypto-price · Summary

MCP server providing real-time cryptocurrency price analysis and market data via CoinCap API.

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

mcp-crypto-price · Use cases

  • Track current cryptocurrency prices and 24h market changes
  • Analyze historical price trends and technical indicators
  • Compare exchanges and get market analysis insights

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

mcp-crypto-price · Install

  1. Install Node.js 22.14+
  2. Get a free CoinCap API key at [pro.coincap.io/dashboard](https://pro.coincap.io/dashboard)
  3. Add to Claude Desktop config:
{
  "mcpServers": {
    "mcp-crypto-price": {
      "command": "npx",
      "args": ["-y", "mcp-crypto-price"],
      "env": {
        "COINCAP_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.