Skip to content

Commit 702d373

Browse files
chore(main): release chrome-devtools-mcp 1.2.0 (#2153)
🤖 I have created a release *beep* *boop* --- ## [1.2.0](chrome-devtools-mcp-v1.1.1...chrome-devtools-mcp-v1.2.0) (2026-06-08) ### 🎉 Features * add experimental TOON support for structured content output ([#2042](#2042)) ([aa33bff](aa33bff)) * Adds close_heapsnapshot MCP tool ([#2174](#2174)) ([8713b93](8713b93)) * Handle multiple providers of third-party developer tools ([#2168](#2168)) ([30d59a7](30d59a7)) * implement extension service worker logs ([#1915](#1915)) ([29e3898](29e3898)) * memory debugging tools ([#2169](#2169)) ([0217397](0217397)) * support allowedUrlPattern & blockedUrlPattern Options ([#2037](#2037)) ([02b4492](02b4492)) ### 🛠️ Fixes * Cursor plugin homepage setting field ([#2173](#2173)) ([8971890](8971890)) ### 📄 Documentation * **skill:** guide agent to prompt for --categoryExtensions ([#2189](#2189)) ([8b458f7](8b458f7)) ### ⚡ Performance * lighthouse file saves to run concurrently ([#2178](#2178)) ([f90f863](f90f863)) ### 🏗️ Refactor * change type of logger ([#2165](#2165)) ([bf0574d](bf0574d)) * use validate files on the tool level ([#2152](#2152)) ([2e039c0](2e039c0)), closes [#2150](#2150) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
1 parent 8b458f7 commit 702d373

11 files changed

Lines changed: 49 additions & 16 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chrome-devtools-plugins",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"description": "Bundled plugins for actuating and debugging the Chrome browser.",
55
"repository": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
66
"owner": {

.claude-plugin/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "chrome-devtools-mcp",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"description": "Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer",
55
"mcpServers": {
66
"chrome-devtools": {
77
"command": "npx",
88
"args": [
9-
"chrome-devtools-mcp@1.1.1"
9+
"chrome-devtools-mcp@1.2.0"
1010
]
1111
}
1212
}

.cursor-plugin/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "devtools-for-agents",
33
"description": "Help your agent build, debug, and verify your code correctly. With Chrome DevTools for agents, your AI agent can interact with the Chrome browser to test code, emulate users, and catch bugs using Chrome DevTools’ capabilities before shipping.",
4-
"version": "1.1.1",
4+
"version": "1.2.0",
55
"author": {
66
"name": "Google Chrome"
77
},
@@ -12,7 +12,7 @@
1212
"chrome-devtools": {
1313
"command": "npx",
1414
"args": [
15-
"chrome-devtools-mcp@1.1.1"
15+
"chrome-devtools-mcp@1.2.0"
1616
]
1717
}
1818
}

.github/plugin/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "chrome-devtools-mcp",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"description": "Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer",
55
"mcpServers": {
66
"chrome-devtools": {
77
"command": "npx",
88
"args": [
9-
"chrome-devtools-mcp@1.1.1"
9+
"chrome-devtools-mcp@1.2.0"
1010
]
1111
}
1212
}

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## [1.2.0](https://github.com/ChromeDevTools/chrome-devtools-mcp/compare/chrome-devtools-mcp-v1.1.1...chrome-devtools-mcp-v1.2.0) (2026-06-08)
4+
5+
6+
### 🎉 Features
7+
8+
* add experimental TOON support for structured content output ([#2042](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2042)) ([aa33bff](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/aa33bff19fcbf87949eec152c4b49d74e0a9330d))
9+
* Adds close_heapsnapshot MCP tool ([#2174](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2174)) ([8713b93](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/8713b93b41ce301acf0ebc555c9a1b25d29bc526))
10+
* Handle multiple providers of third-party developer tools ([#2168](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2168)) ([30d59a7](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/30d59a78727c31ec9d70d2bd6d9310e78f1888b3))
11+
* implement extension service worker logs ([#1915](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/1915)) ([29e3898](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/29e389848fd0cae1116620d44fbce508b4404137))
12+
* memory debugging tools ([#2169](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2169)) ([0217397](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/02173972574241049885171c5a6fc0ba998a20cc))
13+
* support allowedUrlPattern & blockedUrlPattern Options ([#2037](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2037)) ([02b4492](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/02b4492ca605755f67f016ee1de98aa1f506168c))
14+
15+
16+
### 🛠️ Fixes
17+
18+
* Cursor plugin homepage setting field ([#2173](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2173)) ([8971890](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/89718901174be7c0c58a1a2b29281ab2f053cd53))
19+
20+
21+
### 📄 Documentation
22+
23+
* **skill:** guide agent to prompt for --categoryExtensions ([#2189](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2189)) ([8b458f7](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/8b458f7ad194b52305b831d5bfd6c0b6f5a53376))
24+
25+
26+
### ⚡ Performance
27+
28+
* lighthouse file saves to run concurrently ([#2178](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2178)) ([f90f863](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/f90f863d4b9d643ab880c9dc8cdd78b6c88ae38d))
29+
30+
31+
### 🏗️ Refactor
32+
33+
* change type of logger ([#2165](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2165)) ([bf0574d](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/bf0574da8ce0986beb5dd2f026a2332a7e63b791))
34+
* use validate files on the tool level ([#2152](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2152)) ([2e039c0](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/2e039c09e1a273581d9b51081a0feb8a57791947)), closes [#2150](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2150)
35+
336
## [1.1.1](https://github.com/ChromeDevTools/chrome-devtools-mcp/compare/chrome-devtools-mcp-v1.1.0...chrome-devtools-mcp-v1.1.1) (2026-05-27)
437

538

gemini-extension.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "chrome-devtools-mcp",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"mcpServers": {
55
"chrome-devtools": {
66
"command": "npx",
77
"args": [
8-
"chrome-devtools-mcp@1.1.1"
8+
"chrome-devtools-mcp@1.2.0"
99
]
1010
}
1111
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chrome-devtools-mcp",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"description": "MCP server for Chrome DevTools",
55
"type": "module",
66
"bin": {

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"url": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
88
"source": "github"
99
},
10-
"version": "1.1.1",
10+
"version": "1.2.0",
1111
"packages": [
1212
{
1313
"registryType": "npm",
1414
"registryBaseUrl": "https://registry.npmjs.org",
1515
"identifier": "chrome-devtools-mcp",
16-
"version": "1.1.1",
16+
"version": "1.2.0",
1717
"transport": {
1818
"type": "stdio"
1919
},

0 commit comments

Comments
 (0)