make server port configurable via URL query param

This commit is contained in:
Ashwin Bhat
2024-11-26 13:12:45 -05:00
parent 2b79b6ffd4
commit a3d542c0a3
2 changed files with 9 additions and 3 deletions

View File

@@ -61,8 +61,9 @@ 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}`;
console.log(
`\n🔍 MCP Inspector is up and running at http://localhost:${CLIENT_PORT} 🚀`,
`\n🔍 MCP Inspector is up and running at http://localhost:${CLIENT_PORT}${portParam} 🚀`,
);
try {