(key: string)
| 5 | } from "@/lib/constants"; |
| 6 | |
| 7 | const getSearchParam = (key: string): string | null => { |
| 8 | try { |
| 9 | const url = new URL(window.location.href); |
| 10 | return url.searchParams.get(key); |
| 11 | } catch { |
| 12 | return null; |
| 13 | } |
| 14 | }; |
| 15 | |
| 16 | export const getMCPProxyAddress = (config: InspectorConfig): string => { |
| 17 | let proxyFullAddress = config.MCP_PROXY_FULL_ADDRESS.value as string; |
no outgoing calls
no test coverage detected