()
| 184 | } |
| 185 | |
| 186 | func sortedClientNames() []string { |
| 187 | names := mcp.ClientNames() |
| 188 | out := make([]string, len(names)) |
| 189 | copy(out, names) |
| 190 | return out |
| 191 | } |
| 192 | |
| 193 | func mcpServerDTO(server mcp.Server, client, scope, path string) MCPServerDTO { |
| 194 | return MCPServerDTO{ |
no test coverage detected