* Extract URL from server config (remote servers only) * Returns null for stdio/sdk servers
(config: McpServerConfig)
| 158 | * Returns null for stdio/sdk servers |
| 159 | */ |
| 160 | function getServerUrl(config: McpServerConfig): string | null { |
| 161 | return 'url' in config ? config.url : null |
| 162 | } |
| 163 | |
| 164 | /** |
| 165 | * CCR proxy URL path markers. In remote sessions, claude.ai connectors arrive |
no outgoing calls
no test coverage detected