MCP Catalogs
Home

filesystem vs unreal-mcp

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

filesystem
by modelcontextprotocol
unreal-mcp
by runreal
Stars★ 85,748★ 101
30d uses
Score7744
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsMedia
LanguageTypeScriptPython
Last committhis month12 mo ago

filesystem · Summary

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

unreal-mcp · Summary

An MCP server for Unreal Engine that uses Python remote execution without requiring a new plugin.

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

unreal-mcp · Use cases

  • Automating Unreal Engine asset management and validation through AI assistants
  • Generating game content and levels using natural language commands
  • Streamlining Unreal Engine development workflows with AI-powered tools

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.

unreal-mcp · Install

  1. Enable Python Editor Script Plugin and Remote Execution in Unreal Engine
  2. Add to your Claude Desktop config:
{
  "mcpServers": {
    "unreal": {
      "command": "npx",
      "args": [
        "-y",
        "@runreal/unreal-mcp"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.