unity-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
unity-mcp-server by AnkleBreaker-Studio | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 182 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
unity-mcp-server · Summary
Comprehensive MCP server with 288 tools for AI-assisted Unity development through Editor and Hub.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
unity-mcp-server · Use cases
- Create scenes, manipulate GameObjects, and manage components through AI commands
- Automate Unity builds, performance profiling, and testing processes
- Develop games entirely through AI assistance from scene setup to shader creation
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-mcp-server · Install
Installation
1. Install the Unity Plugin
In Unity: **Window > Package Manager > + > Add package from git URL:**
https://github.com/AnkleBreaker-Studio/unity-mcp-plugin.git2. Install this MCP Server
git clone https://github.com/AnkleBreaker-Studio/unity-mcp-server.git
cd unity-mcp-server
npm install3. Add to Claude Desktop
Open Claude Desktop > Settings > Developer > Edit Config, and add:
{
"mcpServers": {
"unity": {
"command": "node",
"args": ["C:/path/to/unity-mcp-server/src/index.js"],
"env": {
"UNITY_HUB_PATH": "C:\\Program Files\\Unity Hub\\Unity Hub.exe",
"UNITY_BRIDGE_PORT": "7890"
}
}
}
}Restart Claude Desktop. Done!
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.