Skip to content

Commit a286ce1

Browse files
authored
Merge branch 'main' into crux-for-trace
2 parents 70ac720 + 247a419 commit a286ce1

23 files changed

Lines changed: 474 additions & 143 deletions

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.15.1"
2+
".": "0.16.0"
33
}

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## [0.16.0](https://github.com/ChromeDevTools/chrome-devtools-mcp/compare/chrome-devtools-mcp-v0.15.1...chrome-devtools-mcp-v0.16.0) (2026-02-04)
4+
5+
6+
### 🎉 Features
7+
8+
* include source-mapped stack trace for uncaught errors ([#876](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/876)) ([ecef712](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/ecef712e70b47ae81eb3364d0aed801ec1c91a70))
9+
10+
11+
### 🛠️ Fixes
12+
13+
* accidental extra typing in the fill tool ([#886](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/886)) ([3d6e59d](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/3d6e59dda42be3c6fd97446344a28cbbaa5809b3))
14+
* update evaluateScript description formatting ([#880](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/880)) ([24db9dd](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/24db9dd78cd4f054d291322685b4f47601da3f5a))
15+
* use 1-based line/column and fix wasm offsets in stack frames ([#884](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/884)) ([7e1ec81](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/7e1ec81fb63ec8b7c6d77dbdc88beef4240243ba))
16+
17+
18+
### 📄 Documentation
19+
20+
* mention source-mapped stack traces in 'Key features' ([#883](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/883)) ([579d18a](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/579d18a3f4d1d8d05bf267a39de7f2f53e719b17))
21+
* remove outdated --channel=beta note ([#882](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/882)) ([acdb5c9](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/acdb5c9bb3f249c5a9ce1d4a3e84c580af999141))
22+
323
## [0.15.1](https://github.com/ChromeDevTools/chrome-devtools-mcp/compare/chrome-devtools-mcp-v0.15.0...chrome-devtools-mcp-v0.15.1) (2026-01-30)
424

525

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Chrome DevTools for reliable automation, in-depth debugging, and performance ana
1515
DevTools](https://github.com/ChromeDevTools/devtools-frontend) to record
1616
traces and extract actionable performance insights.
1717
- **Advanced browser debugging**: Analyze network requests, take screenshots and
18-
check the browser console.
18+
check browser console messages (with source-mapped stack traces).
1919
- **Reliable automation**. Uses
2020
[puppeteer](https://github.com/puppeteer/puppeteer) to automate actions in
2121
Chrome and automatically wait for action results.
@@ -574,15 +574,12 @@ The following code snippet is an example configuration for gemini-cli:
574574
"mcpServers": {
575575
"chrome-devtools": {
576576
"command": "npx",
577-
"args": ["chrome-devtools-mcp@latest", "--autoConnect", "--channel=beta"]
577+
"args": ["chrome-devtools-mcp@latest", "--autoConnect"]
578578
}
579579
}
580580
}
581581
```
582582

583-
Note: you have to specify `--channel=beta` until Chrome M144 has reached the
584-
stable channel.
585-
586583
**Step 3:** Test your setup
587584

588585
Make sure your browser is running. Open gemini-cli and run the following prompt:

docs/tool-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,8 @@
292292

293293
### `evaluate_script`
294294

295-
**Description:** Evaluate a JavaScript function inside the currently selected page. Returns the response as JSON
296-
so returned values have to JSON-serializable.
295+
**Description:** Evaluate a JavaScript function inside the currently selected page. Returns the response as JSON,
296+
so returned values have to be JSON-serializable.
297297

298298
**Parameters:**
299299

0 commit comments

Comments
 (0)