filesystem vs unity-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | unity-mcp by wondeks | |
|---|---|---|
| Stars | ★ 85,748 | ★ 21 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | C# |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
unity-mcp · Summary
Unity MCP server enabling AI clients to perform Unity Editor actions through the Model Context Protocol.
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 · Use cases
- Automating repetitive Unity editor tasks through AI assistants
- Enabling AI-powered scene creation and modification in Unity
- Integrating AI code review and refactoring directly into Unity development workflow
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.
unity-mcp · Install
Installation
- Download the latest release package from [GitHub](https://github.com/wondeks/unity-mcp/raw/refs/heads/master/Editor/Commands/mcp_unity_2.4.zip)
- Extract the package to your Unity project's Editor folder
- Restart Unity Editor
Claude Desktop Configuration
Add the following to your Claude Desktop config.json:
{
"mcpServers": {
"unity-mcp": {
"command": "path/to/Unity.exe",
"args": ["-mcp", "-mcpPort", "8080"]
}
}
}