From a63de622f86a57498bd52de66e03d5a44cc0e2fb Mon Sep 17 00:00:00 2001 From: Nicolas Barraud Date: Sun, 30 Mar 2025 13:13:36 -0400 Subject: [PATCH] Update URL to use 127.0.0.1 instead of localhost --- bin/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/src/index.ts b/bin/src/index.ts index 466ca40..1463107 100644 --- a/bin/src/index.ts +++ b/bin/src/index.ts @@ -108,7 +108,7 @@ async function runWebClient(args: Args): Promise { await Promise.any([server, client, delay(2 * 1000)]); const portParam = SERVER_PORT === "3000" ? "" : `?proxyPort=${SERVER_PORT}`; console.log( - `\nšŸ” MCP Inspector is up and running at http://localhost:${CLIENT_PORT}${portParam} šŸš€`, + `\nšŸ” MCP Inspector is up and running at http://127.0.0.1:${CLIENT_PORT}${portParam} šŸš€`, ); try {