UnityMCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
UnityMCP by isuzu-shiranui | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 131 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | 1 mo ago | this month |
UnityMCP · Summary
Unity Editor integration with MCP enabling AI assistants to directly interact with Unity projects via HTTP and MCP tools.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
UnityMCP · Use cases
- AI-assisted game development through direct Unity scene manipulation
- Automated Unity testing via code execution commands
- Remote collaboration with Unity projects through AI interfaces
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
UnityMCP · Install
Unity Editor Setup
- Open Package Manager in Unity (Window > Package Manager)
- Click '+' > 'Add package from git URL...'
- Enter:
https://github.com/isuzu-shiranui/UnityMCP.git?path=jp.shiranui-isuzu.unity-mcp
Claude Desktop Integration
- In Unity, go to Edit > Preferences > Unity MCP
- Click 'Open Installer Window' and follow the installer instructions
- Copy the JSON configuration from 'Configuration Preview'
- Add to Claude Desktop config:
{
"mcpServers": {
"unity-mcp": {
"command": "node",
"args": ["/absolute/path/to/unity-mcp-ts/build/index.js"]
}
}
}- Restart Claude Desktop
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.