17 lines
683 B
C#
17 lines
683 B
C#
namespace UnityMCP.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
|
|
}
|
|
} |