2025-03-20 19:24:31 +08:00
|
|
|
using System;
|
2025-04-08 18:14:13 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2025-04-09 19:43:01 +08:00
|
|
|
using System.Linq;
|
|
|
|
|
using System.Net;
|
|
|
|
|
using System.Net.NetworkInformation;
|
2025-03-20 19:24:31 +08:00
|
|
|
using System.Net.Sockets;
|
2025-04-08 18:14:13 +08:00
|
|
|
using System.Runtime.InteropServices;
|
2025-03-20 19:24:31 +08:00
|
|
|
using System.Text;
|
2025-04-08 18:14:13 +08:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using UnityEditor;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityMcpBridge.Editor.Data;
|
2025-04-09 03:03:16 +08:00
|
|
|
using UnityMcpBridge.Editor.Helpers;
|
2025-04-08 18:14:13 +08:00
|
|
|
using UnityMcpBridge.Editor.Models;
|
2025-03-20 19:24:31 +08:00
|
|
|
|
2025-04-08 18:14:13 +08:00
|
|
|
namespace UnityMcpBridge.Editor.Windows
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
2025-04-08 18:14:13 +08:00
|
|
|
public class UnityMcpEditorWindow : EditorWindow
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
private bool isUnityBridgeRunning = false;
|
|
|
|
|
private Vector2 scrollPosition;
|
2025-04-09 19:43:01 +08:00
|
|
|
private string pythonServerInstallationStatus = "Not Installed";
|
|
|
|
|
private Color pythonServerInstallationStatusColor = Color.red;
|
|
|
|
|
private string pythonServerConnectionStatus = "Not Connected";
|
|
|
|
|
private Color pythonServerConnectionStatusColor = Color.red;
|
|
|
|
|
private DateTime lastConnectionCheck;
|
2025-04-08 18:14:13 +08:00
|
|
|
private const int unityPort = 6400; // Hardcoded Unity port
|
|
|
|
|
private const int mcpPort = 6500; // Hardcoded MCP port
|
2025-04-09 19:43:01 +08:00
|
|
|
private readonly McpClients mcpClients = new();
|
2025-03-20 19:24:31 +08:00
|
|
|
|
|
|
|
|
[MenuItem("Window/Unity MCP")]
|
|
|
|
|
public static void ShowWindow()
|
|
|
|
|
{
|
2025-04-08 18:14:13 +08:00
|
|
|
GetWindow<UnityMcpEditorWindow>("MCP Editor");
|
2025-03-20 19:24:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnEnable()
|
|
|
|
|
{
|
2025-04-09 19:43:01 +08:00
|
|
|
UpdatePythonServerInstallationStatus();
|
|
|
|
|
UpdatePythonServerConnectionStatus();
|
|
|
|
|
|
2025-04-08 18:14:13 +08:00
|
|
|
isUnityBridgeRunning = UnityMcpBridge.IsRunning;
|
2025-03-20 19:24:31 +08:00
|
|
|
foreach (McpClient mcpClient in mcpClients.clients)
|
|
|
|
|
{
|
|
|
|
|
CheckMcpConfiguration(mcpClient);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-09 19:43:01 +08:00
|
|
|
private void Update()
|
|
|
|
|
{
|
|
|
|
|
if (lastConnectionCheck.AddSeconds(2) < DateTime.Now)
|
|
|
|
|
{
|
|
|
|
|
UpdatePythonServerConnectionStatus();
|
|
|
|
|
|
|
|
|
|
lastConnectionCheck = DateTime.Now;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-20 19:24:31 +08:00
|
|
|
private Color GetStatusColor(McpStatus status)
|
|
|
|
|
{
|
|
|
|
|
// Return appropriate color based on the status enum
|
|
|
|
|
return status switch
|
|
|
|
|
{
|
|
|
|
|
McpStatus.Configured => Color.green,
|
|
|
|
|
McpStatus.Running => Color.green,
|
|
|
|
|
McpStatus.Connected => Color.green,
|
|
|
|
|
McpStatus.IncorrectPath => Color.yellow,
|
|
|
|
|
McpStatus.CommunicationError => Color.yellow,
|
|
|
|
|
McpStatus.NoResponse => Color.yellow,
|
2025-04-08 18:14:13 +08:00
|
|
|
_ => Color.red, // Default to red for error states or not configured
|
2025-03-20 19:24:31 +08:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-09 19:43:01 +08:00
|
|
|
private void UpdatePythonServerInstallationStatus()
|
|
|
|
|
{
|
|
|
|
|
string serverPath = ServerInstaller.GetServerPath();
|
|
|
|
|
|
|
|
|
|
if (File.Exists(Path.Combine(serverPath, "server.py")))
|
|
|
|
|
{
|
|
|
|
|
string installedVersion = ServerInstaller.GetInstalledVersion();
|
|
|
|
|
string latestVersion = ServerInstaller.GetLatestVersion();
|
|
|
|
|
|
|
|
|
|
if (ServerInstaller.IsNewerVersion(latestVersion, installedVersion))
|
|
|
|
|
{
|
|
|
|
|
pythonServerInstallationStatus = "Up to Date";
|
|
|
|
|
pythonServerInstallationStatusColor = Color.green;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pythonServerInstallationStatus = "Newer Version Available";
|
|
|
|
|
pythonServerInstallationStatusColor = Color.yellow;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pythonServerInstallationStatus = "Not Installed";
|
|
|
|
|
pythonServerInstallationStatusColor = Color.red;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdatePythonServerConnectionStatus()
|
|
|
|
|
{
|
|
|
|
|
IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties();
|
|
|
|
|
TcpConnectionInformation[] tcpConnections =
|
|
|
|
|
ipGlobalProperties.GetActiveTcpConnections();
|
|
|
|
|
IPEndPoint[] tcpListeners = ipGlobalProperties.GetActiveTcpListeners();
|
|
|
|
|
|
|
|
|
|
// Check if the port is in use by any active listener
|
|
|
|
|
bool isListenerActive = tcpListeners.Any(static endpoint => endpoint.Port == mcpPort);
|
|
|
|
|
|
|
|
|
|
// Optionally, check if the port is in use by any active connection
|
|
|
|
|
bool isConnectionActive = tcpConnections.Any(static connection =>
|
|
|
|
|
connection.LocalEndPoint.Port == mcpPort
|
|
|
|
|
|| connection.RemoteEndPoint.Port == mcpPort
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Return true if either a listener or connection is using the port
|
|
|
|
|
if (isListenerActive || isConnectionActive)
|
|
|
|
|
{
|
|
|
|
|
pythonServerConnectionStatus = "Connected";
|
|
|
|
|
pythonServerConnectionStatusColor = Color.green;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pythonServerConnectionStatus = "Not Connected";
|
|
|
|
|
pythonServerConnectionStatusColor = Color.red;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-20 19:24:31 +08:00
|
|
|
private void ConfigurationSection(McpClient mcpClient)
|
|
|
|
|
{
|
|
|
|
|
// Calculate if we should use half-width layout
|
|
|
|
|
// Minimum width for half-width layout is 400 pixels
|
|
|
|
|
bool useHalfWidth = position.width >= 800;
|
|
|
|
|
float sectionWidth = useHalfWidth ? position.width / 2 - 15 : position.width - 20;
|
|
|
|
|
|
|
|
|
|
// Begin horizontal layout if using half-width
|
|
|
|
|
if (useHalfWidth && mcpClients.clients.IndexOf(mcpClient) % 2 == 0)
|
|
|
|
|
{
|
|
|
|
|
EditorGUILayout.BeginHorizontal();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Begin section with fixed width
|
|
|
|
|
EditorGUILayout.BeginVertical(EditorStyles.helpBox, GUILayout.Width(sectionWidth));
|
|
|
|
|
|
|
|
|
|
// Header with improved styling
|
|
|
|
|
EditorGUILayout.Space(5);
|
|
|
|
|
Rect headerRect = EditorGUILayout.GetControlRect(false, 24);
|
2025-04-08 18:14:13 +08:00
|
|
|
GUI.Label(
|
|
|
|
|
new Rect(
|
|
|
|
|
headerRect.x + 8,
|
|
|
|
|
headerRect.y + 4,
|
|
|
|
|
headerRect.width - 16,
|
|
|
|
|
headerRect.height
|
|
|
|
|
),
|
|
|
|
|
mcpClient.name + " Configuration",
|
|
|
|
|
EditorStyles.boldLabel
|
|
|
|
|
);
|
2025-03-20 19:24:31 +08:00
|
|
|
EditorGUILayout.Space(5);
|
|
|
|
|
|
|
|
|
|
// Status indicator with colored dot
|
|
|
|
|
Rect statusRect = EditorGUILayout.BeginHorizontal(GUILayout.Height(20));
|
|
|
|
|
Color statusColor = GetStatusColor(mcpClient.status);
|
|
|
|
|
|
|
|
|
|
// Draw status dot
|
|
|
|
|
DrawStatusDot(statusRect, statusColor);
|
|
|
|
|
|
|
|
|
|
// Status text with some padding
|
2025-04-08 18:14:13 +08:00
|
|
|
EditorGUILayout.LabelField(
|
|
|
|
|
new GUIContent(" " + mcpClient.configStatus),
|
|
|
|
|
GUILayout.Height(20),
|
|
|
|
|
GUILayout.MinWidth(100)
|
|
|
|
|
);
|
2025-03-20 19:24:31 +08:00
|
|
|
EditorGUILayout.EndHorizontal();
|
|
|
|
|
|
|
|
|
|
EditorGUILayout.Space(8);
|
|
|
|
|
|
|
|
|
|
// Configure button with improved styling
|
|
|
|
|
GUIStyle buttonStyle = new(GUI.skin.button);
|
|
|
|
|
buttonStyle.padding = new RectOffset(15, 15, 5, 5);
|
|
|
|
|
buttonStyle.margin = new RectOffset(10, 10, 5, 5);
|
|
|
|
|
|
|
|
|
|
// Create muted button style for Manual Setup
|
|
|
|
|
GUIStyle mutedButtonStyle = new(buttonStyle);
|
|
|
|
|
|
2025-04-08 18:14:13 +08:00
|
|
|
if (
|
|
|
|
|
GUILayout.Button(
|
|
|
|
|
$"Auto Configure {mcpClient.name}",
|
|
|
|
|
buttonStyle,
|
|
|
|
|
GUILayout.Height(28)
|
|
|
|
|
)
|
|
|
|
|
)
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
ConfigureMcpClient(mcpClient);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (GUILayout.Button("Manual Setup", mutedButtonStyle, GUILayout.Height(28)))
|
|
|
|
|
{
|
|
|
|
|
// Get the appropriate config path based on OS
|
|
|
|
|
string configPath = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
|
|
|
|
|
? mcpClient.windowsConfigPath
|
|
|
|
|
: mcpClient.linuxConfigPath;
|
|
|
|
|
ShowManualInstructionsWindow(configPath, mcpClient);
|
|
|
|
|
}
|
|
|
|
|
EditorGUILayout.Space(5);
|
|
|
|
|
|
|
|
|
|
EditorGUILayout.EndVertical();
|
|
|
|
|
|
|
|
|
|
// End horizontal layout if using half-width and at the end of a row
|
|
|
|
|
if (useHalfWidth && mcpClients.clients.IndexOf(mcpClient) % 2 == 1)
|
|
|
|
|
{
|
|
|
|
|
EditorGUILayout.EndHorizontal();
|
|
|
|
|
EditorGUILayout.Space(5);
|
|
|
|
|
}
|
|
|
|
|
// Add space and end the horizontal layout if last item is odd
|
2025-04-08 18:14:13 +08:00
|
|
|
else if (
|
|
|
|
|
useHalfWidth
|
|
|
|
|
&& mcpClients.clients.IndexOf(mcpClient) == mcpClients.clients.Count - 1
|
|
|
|
|
)
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
EditorGUILayout.EndHorizontal();
|
|
|
|
|
EditorGUILayout.Space(5);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void DrawStatusDot(Rect statusRect, Color statusColor)
|
|
|
|
|
{
|
|
|
|
|
Rect dotRect = new(statusRect.x + 6, statusRect.y + 4, 12, 12);
|
|
|
|
|
Vector3 center = new(dotRect.x + dotRect.width / 2, dotRect.y + dotRect.height / 2, 0);
|
|
|
|
|
float radius = dotRect.width / 2;
|
|
|
|
|
|
|
|
|
|
// Draw the main dot
|
|
|
|
|
Handles.color = statusColor;
|
|
|
|
|
Handles.DrawSolidDisc(center, Vector3.forward, radius);
|
|
|
|
|
|
|
|
|
|
// Draw the border
|
2025-04-08 18:14:13 +08:00
|
|
|
Color borderColor = new(
|
|
|
|
|
statusColor.r * 0.7f,
|
|
|
|
|
statusColor.g * 0.7f,
|
|
|
|
|
statusColor.b * 0.7f
|
|
|
|
|
);
|
2025-03-20 19:24:31 +08:00
|
|
|
Handles.color = borderColor;
|
|
|
|
|
Handles.DrawWireDisc(center, Vector3.forward, radius);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnGUI()
|
|
|
|
|
{
|
|
|
|
|
scrollPosition = EditorGUILayout.BeginScrollView(scrollPosition);
|
|
|
|
|
|
|
|
|
|
EditorGUILayout.Space(10);
|
|
|
|
|
// Title with improved styling
|
|
|
|
|
Rect titleRect = EditorGUILayout.GetControlRect(false, 30);
|
2025-04-08 18:14:13 +08:00
|
|
|
EditorGUI.DrawRect(
|
|
|
|
|
new Rect(titleRect.x, titleRect.y, titleRect.width, titleRect.height),
|
|
|
|
|
new Color(0.2f, 0.2f, 0.2f, 0.1f)
|
|
|
|
|
);
|
|
|
|
|
GUI.Label(
|
|
|
|
|
new Rect(titleRect.x + 10, titleRect.y + 6, titleRect.width - 20, titleRect.height),
|
|
|
|
|
"MCP Editor",
|
|
|
|
|
EditorStyles.boldLabel
|
|
|
|
|
);
|
2025-03-20 19:24:31 +08:00
|
|
|
EditorGUILayout.Space(10);
|
|
|
|
|
|
|
|
|
|
// Python Server Status Section
|
|
|
|
|
EditorGUILayout.BeginVertical(EditorStyles.helpBox);
|
|
|
|
|
EditorGUILayout.LabelField("Python Server Status", EditorStyles.boldLabel);
|
|
|
|
|
|
|
|
|
|
// Status indicator with colored dot
|
|
|
|
|
var statusRect = EditorGUILayout.BeginHorizontal(GUILayout.Height(20));
|
2025-04-09 19:43:01 +08:00
|
|
|
DrawStatusDot(statusRect, pythonServerInstallationStatusColor);
|
|
|
|
|
EditorGUILayout.LabelField(" " + pythonServerInstallationStatus);
|
2025-03-20 19:24:31 +08:00
|
|
|
EditorGUILayout.EndHorizontal();
|
|
|
|
|
|
|
|
|
|
EditorGUILayout.LabelField($"Unity Port: {unityPort}");
|
|
|
|
|
EditorGUILayout.LabelField($"MCP Port: {mcpPort}");
|
2025-04-08 18:14:13 +08:00
|
|
|
EditorGUILayout.HelpBox(
|
|
|
|
|
"Your MCP client (e.g. Cursor or Claude Desktop) will start the server automatically when you start it.",
|
|
|
|
|
MessageType.Info
|
|
|
|
|
);
|
2025-03-20 19:24:31 +08:00
|
|
|
EditorGUILayout.EndVertical();
|
|
|
|
|
|
|
|
|
|
EditorGUILayout.Space(10);
|
|
|
|
|
|
|
|
|
|
// Unity Bridge Section
|
|
|
|
|
EditorGUILayout.BeginVertical(EditorStyles.helpBox);
|
|
|
|
|
EditorGUILayout.LabelField("Unity MCP Bridge", EditorStyles.boldLabel);
|
|
|
|
|
EditorGUILayout.LabelField($"Status: {(isUnityBridgeRunning ? "Running" : "Stopped")}");
|
|
|
|
|
EditorGUILayout.LabelField($"Port: {unityPort}");
|
|
|
|
|
|
|
|
|
|
if (GUILayout.Button(isUnityBridgeRunning ? "Stop Bridge" : "Start Bridge"))
|
|
|
|
|
{
|
|
|
|
|
ToggleUnityBridge();
|
|
|
|
|
}
|
|
|
|
|
EditorGUILayout.EndVertical();
|
|
|
|
|
|
|
|
|
|
foreach (McpClient mcpClient in mcpClients.clients)
|
|
|
|
|
{
|
|
|
|
|
EditorGUILayout.Space(10);
|
|
|
|
|
ConfigurationSection(mcpClient);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EditorGUILayout.EndScrollView();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ToggleUnityBridge()
|
|
|
|
|
{
|
|
|
|
|
if (isUnityBridgeRunning)
|
|
|
|
|
{
|
2025-04-08 18:14:13 +08:00
|
|
|
UnityMcpBridge.Stop();
|
2025-03-20 19:24:31 +08:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2025-04-08 18:14:13 +08:00
|
|
|
UnityMcpBridge.Start();
|
2025-03-20 19:24:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isUnityBridgeRunning = !isUnityBridgeRunning;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string WriteToConfig(string pythonDir, string configPath)
|
|
|
|
|
{
|
|
|
|
|
// Create configuration object for unityMCP
|
2025-04-08 18:14:13 +08:00
|
|
|
var unityMCPConfig = new McpConfigServer
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
command = "uv",
|
2025-04-08 18:14:13 +08:00
|
|
|
args = new[] { "--directory", pythonDir, "run", "server.py" },
|
2025-03-20 19:24:31 +08:00
|
|
|
};
|
|
|
|
|
|
2025-04-08 18:14:13 +08:00
|
|
|
var jsonSettings = new JsonSerializerSettings { Formatting = Formatting.Indented };
|
2025-03-20 19:24:31 +08:00
|
|
|
|
|
|
|
|
// Read existing config if it exists
|
|
|
|
|
string existingJson = "{}";
|
|
|
|
|
if (File.Exists(configPath))
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
existingJson = File.ReadAllText(configPath);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.LogWarning($"Error reading existing config: {e.Message}.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Parse the existing JSON while preserving all properties
|
|
|
|
|
dynamic existingConfig = JsonConvert.DeserializeObject(existingJson);
|
|
|
|
|
if (existingConfig == null)
|
|
|
|
|
{
|
|
|
|
|
existingConfig = new Newtonsoft.Json.Linq.JObject();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Ensure mcpServers object exists
|
|
|
|
|
if (existingConfig.mcpServers == null)
|
|
|
|
|
{
|
|
|
|
|
existingConfig.mcpServers = new Newtonsoft.Json.Linq.JObject();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Add/update unityMCP while preserving other servers
|
2025-04-08 18:14:13 +08:00
|
|
|
existingConfig.mcpServers.unityMCP =
|
|
|
|
|
JsonConvert.DeserializeObject<Newtonsoft.Json.Linq.JToken>(
|
|
|
|
|
JsonConvert.SerializeObject(unityMCPConfig)
|
|
|
|
|
);
|
2025-03-20 19:24:31 +08:00
|
|
|
|
|
|
|
|
// Write the merged configuration back to file
|
|
|
|
|
string mergedJson = JsonConvert.SerializeObject(existingConfig, jsonSettings);
|
|
|
|
|
File.WriteAllText(configPath, mergedJson);
|
|
|
|
|
|
|
|
|
|
return "Configured successfully";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ShowManualConfigurationInstructions(string configPath, McpClient mcpClient)
|
|
|
|
|
{
|
|
|
|
|
mcpClient.SetStatus(McpStatus.Error, "Manual configuration required");
|
|
|
|
|
|
|
|
|
|
ShowManualInstructionsWindow(configPath, mcpClient);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// New method to show manual instructions without changing status
|
|
|
|
|
private void ShowManualInstructionsWindow(string configPath, McpClient mcpClient)
|
|
|
|
|
{
|
|
|
|
|
// Get the Python directory path using Package Manager API
|
|
|
|
|
string pythonDir = FindPackagePythonDirectory();
|
|
|
|
|
|
|
|
|
|
// Create the manual configuration message
|
2025-04-08 18:14:13 +08:00
|
|
|
var jsonConfig = new McpConfig
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
2025-04-08 18:14:13 +08:00
|
|
|
mcpServers = new McpConfigServers
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
2025-04-08 18:14:13 +08:00
|
|
|
unityMCP = new McpConfigServer
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
command = "uv",
|
2025-04-08 18:14:13 +08:00
|
|
|
args = new[] { "--directory", pythonDir, "run", "server.py" },
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-03-20 19:24:31 +08:00
|
|
|
};
|
|
|
|
|
|
2025-04-08 18:14:13 +08:00
|
|
|
var jsonSettings = new JsonSerializerSettings { Formatting = Formatting.Indented };
|
2025-03-20 19:24:31 +08:00
|
|
|
string manualConfigJson = JsonConvert.SerializeObject(jsonConfig, jsonSettings);
|
|
|
|
|
|
|
|
|
|
ManualConfigEditorWindow.ShowWindow(configPath, manualConfigJson, mcpClient);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string FindPackagePythonDirectory()
|
|
|
|
|
{
|
|
|
|
|
string pythonDir = "/path/to/your/unity-mcp/Python";
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// Try to find the package using Package Manager API
|
|
|
|
|
var request = UnityEditor.PackageManager.Client.List();
|
|
|
|
|
while (!request.IsCompleted) { } // Wait for the request to complete
|
|
|
|
|
|
|
|
|
|
if (request.Status == UnityEditor.PackageManager.StatusCode.Success)
|
|
|
|
|
{
|
|
|
|
|
foreach (var package in request.Result)
|
|
|
|
|
{
|
|
|
|
|
if (package.name == "com.justinpbarnett.unity-mcp")
|
|
|
|
|
{
|
|
|
|
|
string packagePath = package.resolvedPath;
|
|
|
|
|
string potentialPythonDir = Path.Combine(packagePath, "Python");
|
|
|
|
|
|
2025-04-08 18:14:13 +08:00
|
|
|
if (
|
|
|
|
|
Directory.Exists(potentialPythonDir)
|
|
|
|
|
&& File.Exists(Path.Combine(potentialPythonDir, "server.py"))
|
|
|
|
|
)
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
return potentialPythonDir;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (request.Error != null)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.LogError("Failed to list packages: " + request.Error.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If not found via Package Manager, try manual approaches
|
|
|
|
|
// First check for local installation
|
2025-04-08 18:14:13 +08:00
|
|
|
string[] possibleDirs =
|
|
|
|
|
{
|
|
|
|
|
Path.GetFullPath(Path.Combine(Application.dataPath, "unity-mcp", "Python")),
|
2025-03-20 19:24:31 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
foreach (var dir in possibleDirs)
|
|
|
|
|
{
|
|
|
|
|
if (Directory.Exists(dir) && File.Exists(Path.Combine(dir, "server.py")))
|
|
|
|
|
{
|
|
|
|
|
return dir;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If still not found, return the placeholder path
|
2025-04-08 18:14:13 +08:00
|
|
|
UnityEngine.Debug.LogWarning(
|
|
|
|
|
"Could not find Python directory, using placeholder path"
|
|
|
|
|
);
|
2025-03-20 19:24:31 +08:00
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.LogError($"Error finding package path: {e.Message}");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pythonDir;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string ConfigureMcpClient(McpClient mcpClient)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// Determine the config file path based on OS
|
|
|
|
|
string configPath;
|
|
|
|
|
|
|
|
|
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
|
|
|
|
{
|
|
|
|
|
configPath = mcpClient.windowsConfigPath;
|
|
|
|
|
}
|
2025-04-08 18:14:13 +08:00
|
|
|
else if (
|
|
|
|
|
RuntimeInformation.IsOSPlatform(OSPlatform.OSX)
|
|
|
|
|
|| RuntimeInformation.IsOSPlatform(OSPlatform.Linux)
|
|
|
|
|
)
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
configPath = mcpClient.linuxConfigPath;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return "Unsupported OS";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create directory if it doesn't exist
|
|
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(configPath));
|
|
|
|
|
|
|
|
|
|
// Find the server.py file location
|
2025-04-09 03:03:16 +08:00
|
|
|
string pythonDir = ServerInstaller.GetServerPath();
|
2025-03-20 19:24:31 +08:00
|
|
|
|
|
|
|
|
if (pythonDir == null || !File.Exists(Path.Combine(pythonDir, "server.py")))
|
|
|
|
|
{
|
|
|
|
|
ShowManualInstructionsWindow(configPath, mcpClient);
|
|
|
|
|
return "Manual Configuration Required";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string result = WriteToConfig(pythonDir, configPath);
|
|
|
|
|
|
|
|
|
|
// Update the client status after successful configuration
|
|
|
|
|
if (result == "Configured successfully")
|
|
|
|
|
{
|
|
|
|
|
mcpClient.SetStatus(McpStatus.Configured);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
// Determine the config file path based on OS for error message
|
|
|
|
|
string configPath = "";
|
|
|
|
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
|
|
|
|
{
|
|
|
|
|
configPath = mcpClient.windowsConfigPath;
|
|
|
|
|
}
|
2025-04-08 18:14:13 +08:00
|
|
|
else if (
|
|
|
|
|
RuntimeInformation.IsOSPlatform(OSPlatform.OSX)
|
|
|
|
|
|| RuntimeInformation.IsOSPlatform(OSPlatform.Linux)
|
|
|
|
|
)
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
configPath = mcpClient.linuxConfigPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ShowManualInstructionsWindow(configPath, mcpClient);
|
2025-04-08 18:14:13 +08:00
|
|
|
UnityEngine.Debug.LogError(
|
|
|
|
|
$"Failed to configure {mcpClient.name}: {e.Message}\n{e.StackTrace}"
|
|
|
|
|
);
|
2025-03-20 19:24:31 +08:00
|
|
|
return $"Failed to configure {mcpClient.name}";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-08 18:14:13 +08:00
|
|
|
private void ShowCursorManualConfigurationInstructions(
|
|
|
|
|
string configPath,
|
|
|
|
|
McpClient mcpClient
|
|
|
|
|
)
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
mcpClient.SetStatus(McpStatus.Error, "Manual configuration required");
|
|
|
|
|
|
|
|
|
|
// Get the Python directory path using Package Manager API
|
|
|
|
|
string pythonDir = FindPackagePythonDirectory();
|
|
|
|
|
|
|
|
|
|
// Create the manual configuration message
|
2025-04-08 18:14:13 +08:00
|
|
|
var jsonConfig = new McpConfig
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
2025-04-08 18:14:13 +08:00
|
|
|
mcpServers = new McpConfigServers
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
2025-04-08 18:14:13 +08:00
|
|
|
unityMCP = new McpConfigServer
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
command = "uv",
|
2025-04-08 18:14:13 +08:00
|
|
|
args = new[] { "--directory", pythonDir, "run", "server.py" },
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-03-20 19:24:31 +08:00
|
|
|
};
|
|
|
|
|
|
2025-04-08 18:14:13 +08:00
|
|
|
var jsonSettings = new JsonSerializerSettings { Formatting = Formatting.Indented };
|
2025-03-20 19:24:31 +08:00
|
|
|
string manualConfigJson = JsonConvert.SerializeObject(jsonConfig, jsonSettings);
|
|
|
|
|
|
|
|
|
|
ManualConfigEditorWindow.ShowWindow(configPath, manualConfigJson, mcpClient);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void CheckMcpConfiguration(McpClient mcpClient)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
string configPath;
|
|
|
|
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
|
|
|
|
{
|
|
|
|
|
configPath = mcpClient.windowsConfigPath;
|
|
|
|
|
}
|
2025-04-08 18:14:13 +08:00
|
|
|
else if (
|
|
|
|
|
RuntimeInformation.IsOSPlatform(OSPlatform.OSX)
|
|
|
|
|
|| RuntimeInformation.IsOSPlatform(OSPlatform.Linux)
|
|
|
|
|
)
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
configPath = mcpClient.linuxConfigPath;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
mcpClient.SetStatus(McpStatus.UnsupportedOS);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!File.Exists(configPath))
|
|
|
|
|
{
|
|
|
|
|
mcpClient.SetStatus(McpStatus.NotConfigured);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string configJson = File.ReadAllText(configPath);
|
2025-04-08 18:14:13 +08:00
|
|
|
var config = JsonConvert.DeserializeObject<McpConfig>(configJson);
|
2025-03-20 19:24:31 +08:00
|
|
|
|
|
|
|
|
if (config?.mcpServers?.unityMCP != null)
|
|
|
|
|
{
|
2025-04-09 03:03:16 +08:00
|
|
|
string pythonDir = ServerInstaller.GetServerPath();
|
2025-04-08 18:14:13 +08:00
|
|
|
if (
|
|
|
|
|
pythonDir != null
|
|
|
|
|
&& Array.Exists(
|
|
|
|
|
config.mcpServers.unityMCP.args,
|
|
|
|
|
arg => arg.Contains(pythonDir, StringComparison.Ordinal)
|
|
|
|
|
)
|
|
|
|
|
)
|
2025-03-20 19:24:31 +08:00
|
|
|
{
|
|
|
|
|
mcpClient.SetStatus(McpStatus.Configured);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
mcpClient.SetStatus(McpStatus.IncorrectPath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
mcpClient.SetStatus(McpStatus.MissingConfig);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
mcpClient.SetStatus(McpStatus.Error, e.Message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-04-08 18:14:13 +08:00
|
|
|
}
|