19 lines
658 B
C#
19 lines
658 B
C#
|
|
namespace UnityMcpBridge.Editor.Models
|
||
|
|
{
|
||
|
|
// Enum representing the various status states for MCP clients
|
||
|
|
public enum McpStatus
|
||
|
|
{
|
||
|
|
NotConfigured, // Not set up yet
|
||
|
|
Configured, // Successfully configured
|
||
|
|
Running, // Service is running
|
||
|
|
Connected, // Successfully connected
|
||
|
|
IncorrectPath, // Configuration has incorrect paths
|
||
|
|
CommunicationError, // Connected but communication issues
|
||
|
|
NoResponse, // Connected but not responding
|
||
|
|
MissingConfig, // Config file exists but missing required elements
|
||
|
|
UnsupportedOS, // OS is not supported
|
||
|
|
Error, // General error state
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|