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 | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsSecurity | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this 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
- Run directly with npx:
npx @mcpware/cross-code-organizer
- 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