unity-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
unity-mcp by CoplayDev | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9,661 | ★ 85,748 |
| 30d uses | — | — |
| Score | 61 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | this month | this month |
unity-mcp · Summary
Unity MCP connects AI assistants to Unity Editor via Model Context Protocol, enabling direct management of assets, scenes, scripts and automated workflows.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
unity-mcp · Use cases
- AI-driven game development in Unity using natural language commands
- Automating repetitive Unity workflows through AI assistants
- Real-time debugging and optimization of Unity projects using AI tools
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 · Install
Installation
Prerequisites
- Unity 2021.3 LTS+
- Python 3.10+ and uv
- An MCP Client (Claude Desktop, Cursor, VS Code Copilot, etc.)
1. Install the Unity Package
In Unity: Window > Package Manager > + > Add package from git URL...
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#main2. Start the Server & Connect
- In Unity: Window > MCP for Unity
- Click Start Server (launches HTTP server on localhost:8080)
- Select your MCP Client and click Configure
- Look for 🟢 "Connected ✓"
Claude Desktop Configuration
{
"mcpServers": {
"unityMCP": {
"url": "http://localhost:8080/mcp"
}
}
}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.