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 | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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-everythingmcp-crypto-price · Install
- Install Node.js 22.14+
- Get a free CoinCap API key at [pro.coincap.io/dashboard](https://pro.coincap.io/dashboard)
- Add to Claude Desktop config:
{
"mcpServers": {
"mcp-crypto-price": {
"command": "npx",
"args": ["-y", "mcp-crypto-price"],
"env": {
"COINCAP_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}