Skip to content

Commit 0dcd10c

Browse files
Update readme
1 parent 51c7eda commit 0dcd10c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

client/src/lib/hooks/useConnection.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)