MCP Catalogs
Home

ue5-mcp vs filesystem

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

ue5-mcp
by mirno-ehf
filesystem
by modelcontextprotocol
Stars★ 37★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsOther
File SystemDeveloper ToolsProductivity
LanguageC++TypeScript
Last commit1 mo agothis month

ue5-mcp · Summary

UE5 MCP server plugin enabling AI agents to edit Unreal Engine Blueprints through natural language commands.

filesystem · Summary

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

ue5-mcp · Use cases

  • Add game components to actors through natural language commands
  • Search and replace specific function calls across multiple Blueprints
  • Analyze existing Blueprint systems to understand their functionality
  • Create new Blueprints or modify existing ones based on AI suggestions

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

Installation

  1. Clone this repository: git clone https://github.com/mirno-ehf/ue5-mcp.git
  2. Follow the plugin installation instructions for Unreal Engine 5
  3. Enable the plugin in your UE5 project
  4. Tell Claude Code: Set up https://github.com/mirno-ehf/ue5-mcp in my project

Claude Desktop Configuration

Add this to your Claude Desktop config.json:

{
  "mcpServers": {
    "ue5-mcp": {
      "command": "path/to/ue5-mcp",
      "args": []
    }
  }
}

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.