refactor: Update default ports for MCPI client and MPCP server

Changes the default ports used by the MCP Inspector client UI and the MCP Proxy server to avoid conflicts with common development ports and provide a memorable mnemonic based on T9 mapping.
This commit is contained in:
Abdelkader Boudih
2025-03-31 00:31:28 +00:00
parent 539f32bf3b
commit da9dd09765
6 changed files with 8 additions and 8 deletions

View File

@@ -182,7 +182,7 @@ app.get("/config", (req, res) => {
}
});
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 6727;
try {
const server = app.listen(PORT);