File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 55 "os/exec"
66)
77
8- // Validator handles all validation logic for MCP Kubernetes
8+ // Validator handles all validation logic for AKS MCP
99type Validator struct {
1010 // Configuration to validate
1111 config * ConfigData
Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ import (
2525 "github.com/mark3labs/mcp-go/server"
2626)
2727
28- // Service represents the MCP Kubernetes service
28+ // Service represents the AKS MCP service
2929type Service struct {
3030 cfg * config.ConfigData
3131 mcpServer * server.MCPServer
3232 azClient * azureclient.AzureClient
3333}
3434
35- // NewService creates a new MCP Kubernetes service
35+ // NewService creates a new AKS MCP service
3636func NewService (cfg * config.ConfigData ) * Service {
3737 return & Service {
3838 cfg : cfg ,
@@ -89,12 +89,12 @@ func (s *Service) registerAllComponents() {
8989
9090// Run starts the service with the specified transport
9191func (s * Service ) Run () error {
92- log .Println ("MCP Kubernetes version:" , version .GetVersion ())
92+ log .Println ("AKS MCP version:" , version .GetVersion ())
9393
9494 // Start the server
9595 switch s .cfg .Transport {
9696 case "stdio" :
97- log .Println ("MCP Kubernetes version:" , version .GetVersion ())
97+ log .Println ("AKS MCP version:" , version .GetVersion ())
9898 log .Println ("Listening for requests on STDIO..." )
9999 return server .ServeStdio (s .mcpServer )
100100 case "sse" :
You can’t perform that action at this time.
0 commit comments