Run prettier.

This commit is contained in:
cliffhall
2025-03-29 12:36:03 -04:00
parent eaa8055fd1
commit 054741be03
3 changed files with 6 additions and 14 deletions

View File

@@ -20,7 +20,7 @@ server.on("listening", () => {
console.log(
`🔍 MCP Inspector is up and running at http://127.0.0.1:${port} 🚀`,
);
})
});
server.on("error", (err) => {
if (err.message.includes(`EADDRINUSE`)) {
console.error(
@@ -29,5 +29,5 @@ server.on("error", (err) => {
} else {
throw err;
}
})
});
server.listen(port);