MCP Catalogs
Home

everything vs regenerator2000

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

everything
by modelcontextprotocol
regenerator2000
by ricardoquesada
Stars★ 85,748★ 158
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptRust
Last committhis monththis month

everything · Summary

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

regenerator2000 · Summary

Interactive 6502 disassembler with MCP server for AI-assisted reverse engineering.

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

regenerator2000 · Use cases

  • AI-assisted reverse engineering of Commodore 8-bit software
  • Automated code analysis and symbol naming in binary files
  • Integration with AI tools for 6502 program classification and documentation

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

regenerator2000 · Install

Install Regenerator 2000:

cargo install regenerator2000

To run the MCP server:

regenerator2000 --mcp-server

Claude Desktop configuration:

{
  "mcpServers": {
    "regenerator": {
      "command": "regenerator2000",
      "args": ["--mcp-server-stdio"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.