MCP Catalogs
Home

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

  1. Download the latest release package from [GitHub](https://github.com/wondeks/unity-mcp/raw/refs/heads/master/Editor/Commands/mcp_unity_2.4.zip)
  2. Extract the package to your Unity project's Editor folder
  3. 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.