MCP Catalogs
Home

Unreal_mcp vs filesystem

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

Unreal_mcp
by ChiR24
filesystem
by modelcontextprotocol
Stars★ 622★ 85,748
30d uses
Score5377
Official
Categories
Developer ToolsAI / LLM ToolsMedia
File SystemDeveloper ToolsProductivity
LanguageC++TypeScript
Last committhis monththis month

Unreal_mcp · Summary

MCP server enabling AI assistants to control Unreal Engine through native C++ Automation Bridge plugin.

filesystem · Summary

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

Unreal_mcp · Use cases

  • Automate game development workflows by scripting asset creation and scene configuration
  • Create AI-powered level design assistants that can generate and modify game environments
  • Build testing automation frameworks for validating game functionality across different scenarios

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 · Install

Installation

Prerequisites

  • Unreal Engine 5.0-5.8
  • Node.js 18+ (for TypeScript bridge option)

Native MCP Transport (Recommended)

  1. Install the MCP Automation Bridge plugin in your Unreal project
  2. Enable "Native MCP" in Project Settings > Plugins > MCP Automation Bridge
  3. Configure your MCP client to connect to http://localhost:3000/mcp

Claude Desktop Configuration

{
  "mcpServers": {
    "unreal-engine": {
      "type": "url",
      "url": "http://localhost:3000/mcp"
    }
  }
}

TypeScript Bridge (Alternative)

  1. Install the server: npx unreal-engine-mcp-server
  2. Configure MCP client to run the CLI with Node.js

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.

Comparison generated from public README + GitHub signals. Last updated automatically.