ue-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
ue-mcp by db-lyon | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 96 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | C++ | TypeScript |
| Last commit | this month | this month |
ue-mcp · Summary
Complete Unreal Engine development toolkit with 450+ MCP tools for AI-powered game development workflows.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
ue-mcp · Use cases
- Automating repetitive Unreal Engine development tasks through natural language commands
- Generating and modifying game assets, blueprints, and materials using AI assistance
- Creating complex game development workflows with the YAML flow engine for multi-step processes
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
ue-mcp · Install
Quick Start
npx ue-mcp initThe interactive setup will:
- Find your
.uproject(auto-detects in current directory) - Let you choose which tool categories to enable
- Deploy the C++ bridge plugin to your project
- Enable required UE plugins (Niagara, PCG, GAS, etc.)
- Detect and configure your MCP client (Claude Code, Claude Desktop, Cursor)
Restart the editor once after setup to load the bridge plugin. To update later: npx ue-mcp update
Manual Configuration
Add to your MCP client config:
{
"mcpServers": {
"ue-mcp": {
"command": "npx",
"args": ["ue-mcp", "C:/path/to/MyGame.uproject"]
}
}
}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.