@mcpjam/inspector 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.env.production
CHANGED
|
@@ -3,4 +3,5 @@ CONVEX_URL=https://outstanding-fennec-304.convex.cloud
|
|
|
3
3
|
VITE_WORKOS_CLIENT_ID=client_01K4C1TVPBE7JTBFQJF9SDW9P9
|
|
4
4
|
VITE_WORKOS_REDIRECT_URI=mcpjam://oauth/callback
|
|
5
5
|
CONVEX_HTTP_URL=https://outstanding-fennec-304.convex.site
|
|
6
|
-
ENVIRONMENT=production
|
|
6
|
+
ENVIRONMENT=production
|
|
7
|
+
PORT=6274
|
package/bin/start.js
CHANGED
|
@@ -495,7 +495,7 @@ async function main() {
|
|
|
495
495
|
Object.assign(process.env, envVars);
|
|
496
496
|
|
|
497
497
|
// Port configuration (fixed default to 3000)
|
|
498
|
-
const requestedPort = parseInt(process.env.PORT ?? "
|
|
498
|
+
const requestedPort = parseInt(process.env.PORT ?? "6274", 10);
|
|
499
499
|
let PORT;
|
|
500
500
|
|
|
501
501
|
try {
|
|
@@ -516,7 +516,7 @@ async function main() {
|
|
|
516
516
|
}
|
|
517
517
|
} else {
|
|
518
518
|
// Fixed port policy: use default port 3000 and fail fast if unavailable
|
|
519
|
-
logInfo("No specific port requested, using fixed default port
|
|
519
|
+
logInfo("No specific port requested, using fixed default port 6274");
|
|
520
520
|
if (await isPortAvailable(requestedPort)) {
|
|
521
521
|
PORT = requestedPort.toString();
|
|
522
522
|
logSuccess(`Default port ${requestedPort} is available`);
|