Versions in this module Expand all Collapse all v0 v0.4.10 Jul 30, 2026 Changes in this version + type Manager struct + func NewManager(cwd string, configs []ServerConfig) *Manager + func (manager *Manager) Close() error + func (manager *Manager) Extension() extensions.Factory + func (manager *Manager) Reconnect(ctx context.Context, name string) error + func (manager *Manager) Start(ctx context.Context) error + func (manager *Manager) Status() []ServerStatus + type ServerConfig struct + Args []string + CWD string + Command string + Env map[string]string + Headers map[string]string + MaxRetries *int + Name string + TimeoutMS int + URL string + func ParseSettings(settings map[string]any) ([]ServerConfig, error) + func ParseSettingsWithWarnings(settings map[string]any) ([]ServerConfig, []string, error) + type ServerState string + const ServerConnected + const ServerConnecting + const ServerError + const ServerStopped + type ServerStatus struct + Error string + Name string + State ServerState + Tools []string + Transport string