MCP Catalogs
Home

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
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsOther
File SystemDeveloper ToolsProductivity
LanguageC#TypeScript
Last committhis monththis 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

  1. Create a new repository from this template
  2. Clone your new repository
  3. Initialize project with:

``powershell ./commands/init.ps1 -PackageId "com.company.package" -PackageName "My Package" ``

  1. Update package.json with your package details
  2. Generate Unity meta files by opening projects in Unity Editor
  3. Add your MCP tools to appropriate directories (Editor or Runtime)
  4. 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.

Comparison generated from public README + GitHub signals. Last updated automatically.