filesystem vs UnrealGenAISupport
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | UnrealGenAISupport by prajwalshettydev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 587 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | C++ |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
UnrealGenAISupport · Summary
Unreal Engine plugin supporting 200+ AI models with MCP server functionality for scene control and blueprint generation.
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
UnrealGenAISupport · Use cases
- NPC AI development in Unreal Engine projects using agentic LLM instances
- Automatic generation and modification of blueprints and game objects through Claude Desktop
- 3D asset generation from text prompts with AI model integration like Meshy, Tripo, and Hunyuan3D
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.
UnrealGenAISupport · Install
Installation
Via Git:
- Clone the repository:
git clone https://github.com/prajwalshettydev/UnrealGenAISupport.git - Add the plugin to your Unreal Engine project
- Restart the editor
Via Unreal Marketplace (Fab):
- Download from [Fab Marketplace](https://muddyterrain.com/t/genai-fab)
- Install in your project
MCP Setup for Claude Desktop:
- Add to Claude Desktop config (
claude_desktop_config.json):
{
"mcpServers": {
"unreal": {
"command": "path/to/your/UnrelaEngine/Binaries/YourPlatform/YourProject.exe",
"args": ["-mcp"]
}
}
}