Unreal-MCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Unreal-MCP by aadeshrao123 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | C++ | TypeScript |
| Last commit | this month | this month |
Unreal-MCP · Summary
MCP server providing 280+ commands to control Unreal Engine 5 from AI coding assistants.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Unreal-MCP · Use cases
- Creating and managing game assets from AI coding environments
- Automating Unreal Engine workflow through AI assistants
- Integrating Unreal development with AI-powered code completion
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
Option A: CLI (Recommended for Claude Code)
# Install CLI tool
npm install -g unrealcli
# Setup in UE5 project
cd YourProject/
ue-cli init
ue-cli doctorOption B: MCP Server (For Cursor, Windsurf, etc.)
# Clone plugin to project
git clone https://github.com/aadeshrao123/Unreal-MCP.git Plugins/UnrealMCP
# Install Python server
pip install unrealmcp
# Add to Claude Desktop config (example)
{
"mcpServers": {
"unreal": {
"command": "unrealmcp"
}
}
}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.