Merge branch 'main' into bump-to-version-0.8.1

This commit is contained in:
Cliff Hall
2025-04-03 14:48:47 -04:00
committed by GitHub

View File

@@ -6,7 +6,7 @@ export const getMCPProxyAddress = (config: InspectorConfig): string => {
if (proxyFullAddress) { if (proxyFullAddress) {
return proxyFullAddress; return proxyFullAddress;
} }
return `http://${window.location.hostname}:${DEFAULT_MCP_PROXY_LISTEN_PORT}`; return `${window.location.protocol}//${window.location.hostname}:${DEFAULT_MCP_PROXY_LISTEN_PORT}`;
}; };
export const getMCPServerRequestTimeout = (config: InspectorConfig): number => { export const getMCPServerRequestTimeout = (config: InspectorConfig): number => {