MCP Catalogs
Home

filesystem vs UnrealMotionGraphicsMCP

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

filesystem
by modelcontextprotocol
UnrealMotionGraphicsMCP
by winyunq
Stars★ 85,748★ 150
30d uses
Score7748
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptC++
Last committhis month1 mo ago

filesystem · Summary

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

UnrealMotionGraphicsMCP · Summary

MCP server for Unreal Engine UMG UI automation with blueprint integration and JSON-based workflow.

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

UnrealMotionGraphicsMCP · Use cases

  • Automated UI generation for games and applications
  • Version control of UMG interfaces through JSON representation
  • AI-assisted UI design and iteration within Unreal Engine
  • Blueprint automation and programmatic node manipulation

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.

UnrealMotionGraphicsMCP · Install

Installation

  1. **Install the Plugin**

- Navigate to your project's Plugins folder: YourProject/Plugins/ - Clone the repository: git clone https://github.com/winyunq/UnrealMotionGraphicsMCP.git UmgMcp - Restart the Unreal Editor

  1. **Connect to Gemini CLI**

- Edit your settings.json file (usually at C:\Users\YourUsername\.gemini\) - Add to mcpServers: ``json "UmgMcp": { "command": "uv", "args": [ "run", "--directory", "D:\\Path\\To\\YourUnrealProject\\Plugins\\UmgMcp\\Resources\\Python", "UmgMcpServer.py" ] } ``

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