MCP Catalogs
Home

mcp-inspector-desktop vs everything

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

mcp-inspector-desktop
by cicbyte
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3677
Official
Categories
Developer ToolsProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageRustTypeScript
Last committhis monththis month

mcp-inspector-desktop · Summary

A native desktop wrapper for MCP Inspector built with Tauri v2 that provides a seamless debugging experience without browser tabs.

everything · Summary

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

mcp-inspector-desktop · Use cases

  • Debugging MCP servers without leaving the IDE or development environment
  • Monitoring MCP server processes and logs in real-time
  • Streamlining the MCP server development workflow with a native desktop interface

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-inspector-desktop · Install

Installation

From Release

Download the appropriate package for your platform from the [Releases](https://github.com/cicbyte/mcp-inspector-desktop/releases) page:

| Platform | Format | |----------|--------| | Windows | .exe / .msi | | macOS | .dmg (Universal Binary) | | Linux | .AppImage / .deb / .rpm |

Prerequisites

  • **Node.js** v18+
  • **Rust** 1.70+
  • **System dependencies**:

- Windows: [WebView2](https://developer.microsoft.com/en-us/microsoft-edge/webview2/) - Linux: libwebkit2gtk-4.1-dev - macOS: No additional dependencies

MCP Inspector CLI

Install the MCP Inspector CLI globally:

npm install -g @modelcontextprotocol/inspector

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.