MCP Catalogs
Home

cross-code-organizer vs everything

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

cross-code-organizer
by mcpware
everything
by modelcontextprotocol
Stars★ 318★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsAI / LLM ToolsSecurity
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

cross-code-organizer · Summary

Cross-platform configuration dashboard for AI coding tools including Claude Code and Codex CLI with MCP server management.

everything · Summary

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

cross-code-organizer · Use cases

  • Managing multiple MCP servers across different AI coding projects
  • Identifying and removing duplicate memories and configurations
  • Scanning for potentially compromised MCP servers with hidden instructions

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

cross-code-organizer · Install

Installation

  1. Run directly with npx: npx @mcpware/cross-code-organizer
  1. For Claude Desktop integration:
{
  "mcpServers": {
    "cross-code-organizer": {
      "command": "npx",
      "args": ["@mcpware/cross-code-organizer"]
    }
  }
}

First run auto-installs a /cco skill for Claude Code. Codex users can run the same npx command directly, then switch harnesses from the sidebar.

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.