Unity-AI-Tools-Template vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Unity-AI-Tools-Template by IvanMurzak | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | this month | this month |
Unity-AI-Tools-Template · Summary
Template for creating Unity MCP tools with initialization scripts and setup guidance.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Unity-AI-Tools-Template · Use cases
- Creating custom AI tools for Unity Editor workflows
- Developing runtime MCP tools for Unity builds
- Setting up package distribution for Unity MCP 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-AI-Tools-Template · Install
Installation
- Create a new repository from this template
- Clone your new repository
- Initialize project with:
``powershell ./commands/init.ps1 -PackageId "com.company.package" -PackageName "My Package" ``
- Update
package.jsonwith your package details - Generate Unity meta files by opening projects in Unity Editor
- Add your MCP tools to appropriate directories (Editor or Runtime)
- Set up CI/CD with GitHub Actions for automated testing and deployment
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.