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
53
53
| Name | Purpose | Default Value |
54
54
| -------------------------- | ----------------------------------------------------------------------------------------- | ------------- |
55
55
| 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 ` |
56
57
57
58
### From this repository
58
59
Original file line number Diff line number Diff line change @@ -233,14 +233,13 @@ export function useConnection({
233
233
} ,
234
234
) ;
235
235
236
- const mcpProxyServerUrl = new URL ( `${ proxyServerUrl } /sse` ) ;
237
236
try {
238
237
await checkProxyHealth ( ) ;
239
238
} catch {
240
239
setConnectionStatus ( "error-connecting-to-proxy" ) ;
241
240
return ;
242
241
}
243
-
242
+ const mcpProxyServerUrl = new URL ( ` ${ proxyServerUrl } /sse` ) ;
244
243
mcpProxyServerUrl . searchParams . append ( "transportType" , transportType ) ;
245
244
if ( transportType === "stdio" ) {
246
245
mcpProxyServerUrl . searchParams . append ( "command" , command ) ;
You can’t perform that action at this time.
0 commit comments