You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resolved conflicts between two independent refactorings:
- Our branch: extracted VERSION/args to config.js, added switch_browser tool
- Upstream: added features.js for feature flags, bumped VERSION to 0.10.2
Changes:
- Updated VERSION to 0.10.2 in config.ts
- Added features.js import and conditional issue loading
- Retained all switch_browser tool functionality
- No duplicate code, clean integration
All 203 tests pass.
* add Factory CLI configuration to MCP clients ([#523](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/523)) ([016e2fd](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/016e2fd6ee57447103f7385285dd503b5576a860))
9
+
10
+
11
+
### ♻️ Chores
12
+
13
+
* clear issue aggregator on page navigation ([#565](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/565)) ([c3784d1](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/c3784d1990a926f651951e4eef05520c5c448964))
14
+
* disable issues in list_console_messages for now ([#575](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/575)) ([08e9a9f](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/08e9a9f42e6ff1a92c60b3e958b0817c7b785afc))
To use the Chrome DevTools MCP server, disable the built-in browser in the settings and add the following config to ` ~/.gemini/antigravity/mcp_config.json`:
70
+
71
+
```bash
72
+
{
73
+
"mcpServers": {
74
+
"chrome-devtools": {
75
+
"type": "stdio",
76
+
"command": "npx",
77
+
"args": [
78
+
"chrome-devtools-mcp@latest",
79
+
"-y"
80
+
]
81
+
}
82
+
}
83
+
}
84
+
```
85
+
86
+
</details>
87
+
66
88
<details>
67
89
<summary>Claude Code</summary>
68
90
Use the Claude Code CLI to add the Chrome DevTools MCP server (<a href="https://docs.anthropic.com/en/docs/claude-code/mcp">guide</a>):
0 commit comments