From 3a9b08bd37aa090266b13e55b4908ce2c5c376b2 Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Mon, 11 Nov 2024 11:11:27 +0000 Subject: [PATCH] Pick non-conflicting default client port --- client/bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/bin/cli.js b/client/bin/cli.js index 685e09d..f537e19 100755 --- a/client/bin/cli.js +++ b/client/bin/cli.js @@ -12,7 +12,7 @@ const server = http.createServer((request, response) => { return handler(request, response, { public: distPath }); }); -const port = process.env.PORT || 3000; +const port = process.env.PORT || 5173; server.listen(port, () => { console.log(`MCP inspector client running at http://localhost:${port}`); });