@@ -20,15 +20,15 @@ class UiPathServerType(Enum):
2020
2121 Attributes:
2222 UiPath (0): Standard UiPath server for Processes, Agents, and Activities
23- External (1): External server types like npx, uvx
24- Local (2): Local MCP server (PackageType.MCPServer)
25- Hosted (3): Tunnel to externally hosted server
23+ Command (1): Command server types like npx, uvx
24+ Coded (2): Coded MCP server (PackageType.MCPServer)
25+ SelfHosted (3): Tunnel to externally hosted server
2626 """
2727
2828 UiPath = 0 # type: int # Processes, Agents, Activities
29- External = 1 # type: int # npx, uvx
30- Local = 2 # type: int # PackageType.MCPServer
31- Hosted = 3 # type: int # tunnel to externally hosted server
29+ Command = 1 # type: int # npx, uvx
30+ Coded = 2 # type: int # PackageType.MCPServer
31+ SelfHosted = 3 # type: int # tunnel to externally hosted server
3232
3333 @classmethod
3434 def from_string (cls , name : str ) -> "UiPathServerType" :
@@ -43,8 +43,8 @@ def get_description(cls, server_type: "UiPathServerType") -> str:
4343 """Get description for a server type."""
4444 descriptions = {
4545 cls .UiPath : "Standard UiPath server for Processes, Agents, and Activities" ,
46- cls .External : "External server types like npx, uvx" ,
47- cls .Local : "Local MCP server (PackageType.MCPServer)" ,
48- cls .Hosted : "Tunnel to externally hosted server" ,
46+ cls .Command : "Command server types like npx, uvx" ,
47+ cls .Coded : "Coded MCP server (PackageType.MCPServer)" ,
48+ cls .SelfHosted : "Tunnel to externally hosted server" ,
4949 }
5050 return descriptions .get (server_type , "Unknown server type" )
0 commit comments