diff --git a/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs b/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs index 4ca4de3..0d8b162 100644 --- a/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs +++ b/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs @@ -33,7 +33,12 @@ namespace UnityMcpBridge.Editor.Helpers } else { - string pyprojectPath = Path.Combine(saveLocation, ServerFolder, "src"); + string pyprojectPath = Path.Combine( + saveLocation, + ServerFolder, + "src", + "pyproject.toml" + ); string installedVersion = ParseVersionFromPyproject(pyprojectPath); string latestVersion = GetLatestVersion();