filesystem vs monolith
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | monolith by tumourlove | |
|---|---|---|
| Stars | ★ 85,748 | ★ 110 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsMedia |
| Language | TypeScript | C++ |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
monolith · Summary
Unreal Engine MCP plugin with 1,226 actions across 16 modules, enabling AI assistants to manipulate Blueprints, Materials, Animation, and more.
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
monolith · Use cases
- Automated Blueprint creation and modification based on natural language descriptions
- Batch material editing across multiple assets with texture import and configuration
- Animation sequence generation with bone tracks, curves and notifies via AI prompts
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.
monolith · Install
Installation
- Download the Monolith plugin from the Unreal Engine Marketplace
- Extract the plugin to your UE project's Plugins directory
- Restart Unreal Engine
- Enable the plugin in Edit -> Plugins -> Monolith
Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"monolith": {
"command": "path/to/monolith.exe",
"args": []
}
}
}