From 4553641a390a365eca6df70836edcbdf18ee34d8 Mon Sep 17 00:00:00 2001 From: David Sarno Date: Wed, 3 Sep 2025 18:13:19 -0700 Subject: [PATCH] fix: Update README installation paths to match ServerInstaller.cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Windows: Fix path from AppData\Local\Programs\UnityMCP to AppData\Local\UnityMCP - macOS: Update from /usr/local/bin/UnityMCP to Library/AppSupport/UnityMCP (uses symlink) - Linux: Change from /home/USERNAME/bin/UnityMCP to .local/share/UnityMCP - Update Claude Code command examples with correct paths 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 41bec68..627a370 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ On Windows, set `command` to the absolute shim, e.g. `C:\\Users\\YOU\\AppData\\L "args": [ "run", "--directory", - "C:\\Users\\YOUR_USERNAME\\AppData\\Local\\Programs\\UnityMCP\\UnityMcpServer\\src", + "C:\\Users\\YOUR_USERNAME\\AppData\\Local\\UnityMCP\\UnityMcpServer\\src", "server.py" ] } @@ -202,7 +202,7 @@ On Windows, set `command` to the absolute shim, e.g. `C:\\Users\\YOU\\AppData\\L "args": [ "run", "--directory", - "/usr/local/bin/UnityMCP/UnityMcpServer/src", + "/Users/YOUR_USERNAME/Library/AppSupport/UnityMCP/UnityMcpServer/src", "server.py" ] } @@ -211,7 +211,7 @@ On Windows, set `command` to the absolute shim, e.g. `C:\\Users\\YOU\\AppData\\L } ``` -(Replace YOUR_USERNAME if using ~/bin) +(Replace YOUR_USERNAME. Note: AppSupport is a symlink to "Application Support" to avoid quoting issues) **Linux:** @@ -223,7 +223,7 @@ On Windows, set `command` to the absolute shim, e.g. `C:\\Users\\YOU\\AppData\\L "args": [ "run", "--directory", - "/home/YOUR_USERNAME/bin/UnityMCP/UnityMcpServer/src", + "/home/YOUR_USERNAME/.local/share/UnityMCP/UnityMcpServer/src", "server.py" ] } @@ -241,13 +241,13 @@ If you\'re using Claude Code, you can register the MCP server using these comman **macOS:** ```bash -claude mcp add UnityMCP -- uv --directory /[PATH_TO]/UnityMCP/UnityMcpServer/src run server.py +claude mcp add UnityMCP -- uv --directory /Users/USERNAME/Library/AppSupport/UnityMCP/UnityMcpServer/src run server.py ``` **Windows:** ```bash -claude mcp add UnityMCP -- "C:/Users/USERNAME/AppData/Roaming/Python/Python313/Scripts/uv.exe" --directory "C:/Users/USERNAME/AppData/Local/Programs/UnityMCP/UnityMcpServer/src" run server.py +claude mcp add UnityMCP -- "C:/Users/USERNAME/AppData/Roaming/Python/Python313/Scripts/uv.exe" --directory "C:/Users/USERNAME/AppData/Local/UnityMCP/UnityMcpServer/src" run server.py ```