File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ The MCP Inspector supports the following configuration settings. To change them
5353| Name | Purpose | Default Value |
5454| -------------------------- | ----------------------------------------------------------------------------------------- | ------------- |
5555| MCP_SERVER_REQUEST_TIMEOUT | Maximum time in milliseconds to wait for a response from the MCP server before timing out | 10000 |
56+ | MCP_PROXY_FULL_ADDRESS | The full URL of the MCP Inspector proxy server (e.g. ` http://10.2.1.14:2277 ` ) | ` null ` |
5657
5758### From this repository
5859
Original file line number Diff line number Diff line change @@ -233,14 +233,13 @@ export function useConnection({
233233 } ,
234234 ) ;
235235
236- const mcpProxyServerUrl = new URL ( `${ proxyServerUrl } /sse` ) ;
237236 try {
238237 await checkProxyHealth ( ) ;
239238 } catch {
240239 setConnectionStatus ( "error-connecting-to-proxy" ) ;
241240 return ;
242241 }
243-
242+ const mcpProxyServerUrl = new URL ( ` ${ proxyServerUrl } /sse` ) ;
244243 mcpProxyServerUrl . searchParams . append ( "transportType" , transportType ) ;
245244 if ( transportType === "stdio" ) {
246245 mcpProxyServerUrl . searchParams . append ( "command" , command ) ;
You can’t perform that action at this time.
0 commit comments