MCPcopy Create free account
hub / github.com/Chat2AnyLLM/code-agent-manager / ClientNames

Function ClientNames

internal/mcp/client.go:66–73  ·  view source on GitHub ↗

ClientNames returns the supported client names in alphabetical order.

()

Source from the content-addressed store, hash-verified

64
65// ClientNames returns the supported client names in alphabetical order.
66func ClientNames() []string {
67 names := make([]string, 0, len(SupportedClients))
68 for _, c := range SupportedClients {
69 names = append(names, c.Name)
70 }
71 sort.Strings(names)
72 return names
73}
74
75// ResolvePath returns the absolute config file path for the given client +
76// scope, honoring ~ and the current working directory.

Callers 2

sortedClientNamesFunction · 0.92
requireClientFunction · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected