MCP Catalogs
Home

hive-sdk vs everything

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

hive-sdk
by hive-intel
everything
by modelcontextprotocol
Stars★ 17★ 85,748
30d uses
Score4477
Official
Categories
FinanceAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

hive-sdk · Summary

Institutional-grade crypto market infrastructure MCP server with 376+ tools from 9 providers.

everything · Summary

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

hive-sdk · Use cases

  • AI agents accessing real-time cryptocurrency market data and DeFi metrics
  • Portfolio analysis across multiple blockchains and DeFi protocols
  • Security checks before executing transactions, including honeypot detection

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

hive-sdk · Install

Installation

Using npx (no install required):

HIVE_API_KEY=hive_live_... npx -y -p hive-intelligence hive market price --ids bitcoin --vs usd

Global install:

npm install -g hive-intelligence

Claude Desktop Configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "hive": {
      "command": "npx",
      "args": ["-y", "hive-intelligence"],
      "env": { "HIVE_API_KEY": "hive_live_..." }
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.