Pick non-conflicting default client port

This commit is contained in:
Justin Spahr-Summers
2024-11-11 11:11:27 +00:00
parent bce3a7b8d6
commit 3a9b08bd37

View File

@@ -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}`);
});