Skip to content

Commit 3a9b08b

Browse files
committed
Pick non-conflicting default client port
1 parent bce3a7b commit 3a9b08b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/bin/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const server = http.createServer((request, response) => {
1212
return handler(request, response, { public: distPath });
1313
});
1414

15-
const port = process.env.PORT || 3000;
15+
const port = process.env.PORT || 5173;
1616
server.listen(port, () => {
1717
console.log(`MCP inspector client running at http://localhost:${port}`);
1818
});

0 commit comments

Comments
 (0)