Server is the assembled advanced MCP server.
| 28 | |
| 29 | // Server is the assembled advanced MCP server. |
| 30 | type Server struct { |
| 31 | clusters *multicluster.Manager |
| 32 | cache *cache.Store |
| 33 | helm *helm.Client |
| 34 | watchers map[string]*watch.Watcher |
| 35 | mcp *server.MCPServer |
| 36 | } |
| 37 | |
| 38 | // NewServer wires everything but does not start any background goroutines. |
| 39 | func NewServer(clusters *multicluster.Manager) *Server { |
nothing calls this directly
no outgoing calls
no test coverage detected