mcp-unity vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-unity by CoderGamester | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,699 | ★ 85,748 |
| 30d uses | — | — |
| Score | 56 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Toolsgame-development | File SystemDeveloper ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | this month | this month |
mcp-unity · Summary
MCP server for Unity Editor enabling AI assistants to manipulate scenes, GameObjects, and other Unity assets.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-unity · Use cases
- Unity developers using AI assistants to automate scene creation and object manipulation
- Game studios implementing AI workflows for iterative game development
- Educational environments teaching Unity development with AI assistance
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
mcp-unity · Install
Installation
- Install Node.js 18 or later from [nodejs.org](https://nodejs.org/en/download/)
- Install the Unity MCP server via npm:
``bash npm install -g @codergamester/mcp-unity ``
- Configure your IDE (Cursor, Windsurf, etc.) to use the MCP server
Claude Desktop Configuration
Add to Claude's config.json:
{
"mcpServers": {
"unity": {
"command": "npx",
"args": ["@codergamester/mcp-unity"],
"env": {
"UNITY_PROJECT_PATH": "/path/to/your/unity/project"
}
}
}
}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.