Skip to content

Commit 5bcc1fd

Browse files
committed
Fix condition for auto browser opening
1 parent 52564dd commit 5bcc1fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ async function main() {
100100

101101
if (serverOk) {
102102
try {
103-
if (!process.env.MCP_AUTO_OPEN_DISABLED) {
103+
if (process.env.MCP_AUTO_OPEN_DISABLED !== "true") {
104104
open(`http://127.0.0.1:${CLIENT_PORT}`);
105105
}
106106
await spawnPromise("node", [inspectorClientPath], {

0 commit comments

Comments
 (0)