consolidate server URL configuration

This commit is contained in:
Ashwin Bhat
2024-11-26 13:27:13 -05:00
parent a3d542c0a3
commit f876b1ec0d
3 changed files with 19 additions and 18 deletions

View File

@@ -61,7 +61,7 @@ async function main() {
// Make sure our server/client didn't immediately fail
await Promise.any([server, client, delay(2 * 1000)]);
const portParam = SERVER_PORT === "3000" ? "" : `?port=${SERVER_PORT}`;
const portParam = SERVER_PORT === "3000" ? "" : `?proxyPort=${SERVER_PORT}`;
console.log(
`\n🔍 MCP Inspector is up and running at http://localhost:${CLIENT_PORT}${portParam} 🚀`,
);