Skip to content

Commit 070e88c

Browse files
authored
docs: update browser URL from localhost to 127.0.0.1 (#342)
Chrome only listens on IPv4 and localhost might resolve to an IPv6 in some environments. Closes #341
1 parent 32620ce commit 070e88c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ Here is a step-by-step guide on how to connect to a running Chrome Stable instan
340340

341341
**Step 1: Configure the MCP client**
342342

343-
Add the `--browser-url` option to your MCP client configuration. The value of this option should be the URL of the running Chrome instance. `http://localhost:9222` is a common default.
343+
Add the `--browser-url` option to your MCP client configuration. The value of this option should be the URL of the running Chrome instance. `http://127.0.0.1:9222` is a common default.
344344

345345
```json
346346
{
@@ -349,7 +349,7 @@ Add the `--browser-url` option to your MCP client configuration. The value of th
349349
"command": "npx",
350350
"args": [
351351
"chrome-devtools-mcp@latest",
352-
"--browser-url=http://localhost:9222"
352+
"--browser-url=http://127.0.0.1:9222"
353353
]
354354
}
355355
}

0 commit comments

Comments
 (0)