MCP Catalogs
Home

filesystem vs ue5-mcp-bridge

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

filesystem
by modelcontextprotocol
ue5-mcp-bridge
by Natfii
Stars★ 85,748★ 45
30d uses
Score7747
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptJavaScript
Last committhis monththis month

filesystem · Summary

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

ue5-mcp-bridge · Summary

MCP server bridging AI assistants to Unreal Engine 5 editor, enabling direct manipulation of game development assets and workflows.

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

ue5-mcp-bridge · Use cases

  • Automating repetitive UE5 setup tasks like creating Blueprints and configuring input bindings
  • Directly manipulating game elements through natural language commands ('Spawn a point light at position 0,0,500')
  • Rapid prototyping by describing desired functionality instead of navigating complex menus
  • Querying UE5 API documentation context while working in the editor

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.

ue5-mcp-bridge · Install

Installation

  1. Clone the repository:
git clone https://github.com/Natfii/unrealclaude-mcp-bridge.git
cd unrealclaude-mcp-bridgenpm install
  1. Configure your MCP client:

**Claude Desktop** (claude_desktop_config.json):

{
  "mcpServers": {
    "unreal": {
      "command": "node",
      "args": ["/path/to/unrealclaude-mcp-bridge/index.js"],
      "env": {
        "UNREAL_MCP_URL": "http://localhost:3000"
      }
    }
  }
}

**Claude Code** (~/.claude/settings.json):

{
  "mcpServers": {
    "unreal": {
      "command": "node",
      "args": ["/path/to/unrealclaude-mcp-bridge/index.js"],
      "env": {
        "UNREAL_MCP_URL": "http://localhost:3000"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.