MCP Catalogs
Home

everything vs Dive

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

everything
by modelcontextprotocol
Dive
by OpenAgentPlatform
Stars★ 85,748★ 1,792
30d uses
Score7756
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month2 mo ago

everything · Summary

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

Dive · Summary

Dive is a cross-platform desktop application serving as an MCP host for integrating various LLMs with AI agent capabilities.

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

Dive · Use cases

  • Creating a unified interface for AI assistants to access multiple MCP servers across different LLM providers
  • Building custom AI agents with specialized tools through the granular MCP server management system
  • Streamlining AI development with zero-configuration MCP servers via OAPHub.ai integration

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

Dive · Install

Installation Methods

Pre-built Application

  1. Download the latest release from [GitHub Releases](https://github.com/OpenAgentPlatform/Dive/releases/latest)
  2. Choose between Tauri (recommended) or Electron versions based on your platform
  3. Follow the platform-specific installation instructions

Via OAPHub.ai (Easiest)

  1. Sign up at [OAPHub.ai](https://oaphub.ai/)
  2. Connect Dive using one-click deep links or configuration files
  3. Enjoy managed MCP servers with zero setup

Building from Source

git clone https://github.com/OpenAgentPlatform/Dive.git
cd Dive
npm install
npm run dev  # For Electron development
cargo tauri dev  # For Tauri development
Comparison generated from public README + GitHub signals. Last updated automatically.