MCP Catalogs
Home

filesystem vs regenerator2000

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

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

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

regenerator2000 · Summary

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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.