VibeUE vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
VibeUE by kevinpbuckley | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 184 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsMedia | File SystemDeveloper ToolsProductivity |
| Language | C++ | TypeScript |
| Last commit | this month | this month |
VibeUE · Summary
VibeUE is an AI-powered Unreal Engine development tool with MCP server integration providing Python API access and specialized tools for game development workflows.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
VibeUE · Use cases
- AI-assisted creation and modification of Unreal Engine Blueprints and assets through natural language
- Automated terrain generation using real-world geographic data via MCP tools
- Debugging Unreal Engine projects by analyzing logs with AI and regex filtering
- Research and documentation gathering for game development with integrated web search capabilities
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
VibeUE · Install
Installation
- Obtain a free VibeUE API key at [vibeue.com/login](https://www.vibeue.com/login)
- Configure your IDE with the MCP server using the following configuration:
{
"mcpServers": {
"vibeue": {
"command": "vibeue",
"args": ["mcp"]
}
}
}For Unreal Engine integration:
- Install the VibeUE plugin in Unreal Editor
- Paste your API key into the VibeUE settings gear icon inside the editor
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.