Skip to content

Commit bdb62c0

Browse files
committed
Change package display name, menu item and menu titles
These are front facing so has to change for Unity asset store review
1 parent 41de83e commit bdb62c0

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

UnityMcpBridge/Editor/Helpers/PackageInstaller.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ private static void InstallServerOnFirstLoad()
2525
{
2626
try
2727
{
28-
Debug.Log("<b><color=#2EA3FF>UNITY-MCP</color></b>: Installing Python server...");
28+
Debug.Log("<b><color=#2EA3FF>MCP-FOR-UNITY</color></b>: Installing Python server...");
2929
ServerInstaller.EnsureServerInstalled();
3030

3131
// Mark as installed
3232
EditorPrefs.SetBool(InstallationFlagKey, true);
3333

34-
Debug.Log("<b><color=#2EA3FF>UNITY-MCP</color></b>: Python server installation completed successfully.");
34+
Debug.Log("<b><color=#2EA3FF>MCP-FOR-UNITY</color></b>: Python server installation completed successfully.");
3535
}
3636
catch (System.Exception ex)
3737
{
38-
Debug.LogError($"<b><color=#2EA3FF>UNITY-MCP</color></b>: Failed to install Python server: {ex.Message}");
39-
Debug.LogWarning("<b><color=#2EA3FF>UNITY-MCP</color></b>: You may need to manually install the Python server. Check the Unity MCP Editor Window for instructions.");
38+
Debug.LogError($"<b><color=#2EA3FF>MCP-FOR-UNITY</color></b>: Failed to install Python server: {ex.Message}");
39+
Debug.LogWarning("<b><color=#2EA3FF>MCP-FOR-UNITY</color></b>: You may need to manually install the Python server. Check the MCP for Unity Editor Window for instructions.");
4040
}
4141
}
4242
}

UnityMcpBridge/Editor/Windows/UnityMcpEditorWindow.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class UnityMcpEditorWindow : EditorWindow
4444
// UI state
4545
private int selectedClientIndex = 0;
4646

47-
[MenuItem("Window/Unity MCP")]
47+
[MenuItem("Window/MCP for Unity")]
4848
public static void ShowWindow()
4949
{
5050
GetWindow<UnityMcpEditorWindow>("MCP Editor");
@@ -230,7 +230,7 @@ private void DrawHeader()
230230

231231
GUI.Label(
232232
new Rect(titleRect.x + 15, titleRect.y + 8, titleRect.width - 30, titleRect.height),
233-
"Unity MCP Editor",
233+
"MCP for Unity Editor",
234234
titleStyle
235235
);
236236

@@ -307,12 +307,12 @@ private void DrawServerStatusSection()
307307
bool ok = global::MCPForUnity.Editor.Helpers.ServerInstaller.RepairPythonEnvironment();
308308
if (ok)
309309
{
310-
EditorUtility.DisplayDialog("Unity MCP", "Python environment repaired.", "OK");
310+
EditorUtility.DisplayDialog("MCP for Unity", "Python environment repaired.", "OK");
311311
UpdatePythonServerInstallationStatus();
312312
}
313313
else
314314
{
315-
EditorUtility.DisplayDialog("Unity MCP", "Repair failed. Please check Console for details.", "OK");
315+
EditorUtility.DisplayDialog("MCP for Unity", "Repair failed. Please check Console for details.", "OK");
316316
}
317317
}
318318
}
@@ -532,7 +532,7 @@ private void AutoFirstRunSetup()
532532
}
533533
catch (Exception e)
534534
{
535-
UnityEngine.Debug.LogWarning($"Unity MCP auto-setup skipped: {e.Message}");
535+
UnityEngine.Debug.LogWarning($"MCP for Unity auto-setup skipped: {e.Message}");
536536
}
537537
}
538538

UnityMcpBridge/Editor/Windows/VSCodeManualSetupWindow.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ protected override void OnGUI()
5757
headerRect.width - 16,
5858
headerRect.height
5959
),
60-
"Setting up GitHub Copilot in VSCode with Unity MCP",
60+
"Setting up GitHub Copilot in VSCode with MCP for Unity",
6161
EditorStyles.boldLabel
6262
);
6363
EditorGUILayout.Space(10);
@@ -265,7 +265,7 @@ protected override void OnGUI()
265265
instructionStyle
266266
);
267267
EditorGUILayout.LabelField(
268-
"• Remember to have the Unity MCP Bridge running in Unity Editor",
268+
"• Remember to have the MCP for Unity Bridge running in Unity Editor",
269269
instructionStyle
270270
);
271271

UnityMcpBridge/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.coplaydev.unity-mcp",
33
"version": "2.1.2",
4-
"displayName": "Unity MCP",
4+
"displayName": "MCP for Unity",
55
"description": "A bridge that connects an LLM to Unity via the MCP (Model Context Protocol). This allows MCP Clients like Claude Desktop or Cursor to directly control your Unity Editor.\n\nJoin Our Discord: https://discord.gg/y4p8KfzrN4",
66
"unity": "2021.3",
77
"documentationUrl": "https://github.com/CoplayDev/unity-mcp",

0 commit comments

Comments
 (0)