MCP Catalogs
Home

filesystem vs unity-mcp-pro-plugin

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
unity-mcp-pro-plugin
by youichi-uda
Stars★ 85,748★ 58
30d uses
Score7748
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptC#
Last committhis month1 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

unity-mcp-pro-plugin · Summary

Unity MCP Pro plugin provides 280+ AI tools for Unity development via WebSocket MCP connection.

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-pro-plugin · Use cases

  • AI-assisted GameObject manipulation in Unity scenes with full undo history
  • Script generation and optimization through direct MCP tool calls
  • Material and shader editing via AI assistants with real-time preview

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-pro-plugin · Install

Installation

Unity Package Manager

  1. Open Unity → Window → Package Manager
  2. Click + → Add package from git URL...
  3. Enter: https://github.com/youichi-uda/unity-mcp-pro-plugin.git

Alternative Methods

Clone to your project or download and copy to Packages/com.unity-mcp-pro/

Setup

  1. Install this plugin
  2. Get the MCP server from [unity-mcp.abyo.net](https://unity-mcp.abyo.net/)
  3. Build the server: cd server && npm install && npm run build
  4. Configure your AI client:
{
  "mcpServers": {
    "unity-mcp-pro": {
      "command": "node",
      "args": ["/path/to/server/build/index.js"]
    }
  }
}
  1. Open Unity - plugin auto-connects, check Window → Unity MCP Pro
Comparison generated from public README + GitHub signals. Last updated automatically.