Skip to content

Commit da9dd09

Browse files
committed
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.
1 parent 539f32b commit da9dd09

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Thanks for your interest in contributing! This guide explains how to get involve
77
1. Fork the repository and clone it locally
88
2. Install dependencies with `npm install`
99
3. Run `npm run dev` to start both client and server in development mode
10-
4. Use the web UI at http://127.0.0.1:5173 to interact with the inspector
10+
4. Use the web UI at http://127.0.0.1:6274 to interact with the inspector
1111

1212
## Development Process & Pull Requests
1313

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ npx @modelcontextprotocol/inspector -e KEY=value -e KEY2=$VALUE2 node build/inde
3030
npx @modelcontextprotocol/inspector -e KEY=$VALUE -- node build/index.js -e server-flag
3131
```
3232

33-
The inspector runs both a client UI (default port 5173) and an MCP proxy server (default port 3000). Open the client UI in your browser to use the inspector. You can customize the ports if needed:
33+
The inspector runs both an MCP Inspector (MCPI) client UI (default port 6274) and an MCP Proxy (MPCP) server (default port 6727). Open the MCPI client UI in your browser to use the inspector. (These ports are derived from the T9 dialpad mapping of MCPI and MPCP respectively, as a mnemonic). You can customize the ports if needed:
3434

3535
```bash
3636
CLIENT_PORT=8080 SERVER_PORT=9000 npx @modelcontextprotocol/inspector node build/index.js

bin/cli.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ async function main() {
6161
"cli.js",
6262
);
6363

64-
const CLIENT_PORT = process.env.CLIENT_PORT ?? "5173";
65-
const SERVER_PORT = process.env.SERVER_PORT ?? "3000";
64+
const CLIENT_PORT = process.env.CLIENT_PORT ?? "6274";
65+
const SERVER_PORT = process.env.SERVER_PORT ?? "6727";
6666

6767
console.log("Starting MCP inspector...");
6868

@@ -100,7 +100,7 @@ async function main() {
100100

101101
// Make sure our server/client didn't immediately fail
102102
await Promise.any([server, client, delay(2 * 1000)]);
103-
const portParam = SERVER_PORT === "3000" ? "" : `?proxyPort=${SERVER_PORT}`;
103+
const portParam = SERVER_PORT === "6727" ? "" : `?proxyPort=${SERVER_PORT}`;
104104
console.log(
105105
`\n🔍 MCP Inspector is up and running at http://127.0.0.1:${CLIENT_PORT}${portParam} 🚀`,
106106
);

client/bin/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ const server = http.createServer((request, response) => {
1515
});
1616
});
1717

18-
const port = process.env.PORT || 5173;
18+
const port = process.env.PORT || 6274;
1919
server.listen(port, () => {});

client/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import { DEFAULT_INSPECTOR_CONFIG } from "./lib/constants";
4949
import { InspectorConfig } from "./lib/configurationTypes";
5050

5151
const params = new URLSearchParams(window.location.search);
52-
const PROXY_PORT = params.get("proxyPort") ?? "3000";
52+
const PROXY_PORT = params.get("proxyPort") ?? "6727";
5353
const PROXY_SERVER_URL = `http://${window.location.hostname}:${PROXY_PORT}`;
5454
const CONFIG_LOCAL_STORAGE_KEY = "inspectorConfig_v1";
5555

server/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ app.get("/config", (req, res) => {
182182
}
183183
});
184184

185-
const PORT = process.env.PORT || 3000;
185+
const PORT = process.env.PORT || 6727;
186186

187187
try {
188188
const server = app.listen(PORT);

0 commit comments

Comments
 (0)