Unity-AI-ProBuilder vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Unity-AI-ProBuilder by IvanMurzak | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 41 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsMedia | File SystemDeveloper ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | this month | this month |
Unity-AI-ProBuilder · Summary
Unity MCP server that enables AI assistants to create and manipulate 3D meshes through natural language commands.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Unity-AI-ProBuilder · Use cases
- AI-assisted level prototyping in game development
- Procedural 3D asset generation through natural language commands
- Automated mesh optimization and transformation for Unity projects
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
Unity-AI-ProBuilder · Install
Installation Options
- **Installer Package**: Download the [AI-ProBuilder-Installer.unitypackage](https://github.com/IvanMurzak/Unity-AI-ProBuilder/releases/latest/download/AI-ProBuilder-Installer.unitypackage) and import it into your Unity project.
- **OpenUPM-CLI**: Install via OpenUPM CLI with:
openupm add com.ivanmurzak.unity.mcp.probuilderMCP Client Configuration
Add to your MCP client configuration (e.g., Claude Desktop):
{
"mcpServers": {
"unity-probuilder": {
"command": "dotnet",
"args": ["run", "--project", "/path/to/Unity-AI-ProBuilder"],
"env": {}
}
}
}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.