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 | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Rust |
| Last commit | this month | this 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-everythingregenerator2000 · Install
Install Regenerator 2000:
cargo install regenerator2000To run the MCP server:
regenerator2000 --mcp-serverClaude Desktop configuration:
{
"mcpServers": {
"regenerator": {
"command": "regenerator2000",
"args": ["--mcp-server-stdio"]
}
}
}