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
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`:
69
+
To use the Chrome DevTools MCP server follow the instructions from <ahref="https://antigravity.google/docs/mcp">Antigravity's docs<a/> to install a custom MCP server. Add the following config to the MCP servers config:
70
70
71
71
```bash
72
72
{
73
73
"mcpServers": {
74
74
"chrome-devtools": {
75
-
"type": "stdio",
76
75
"command": "npx",
77
76
"args": [
78
77
"chrome-devtools-mcp@latest",
78
+
"--browser-url=http://127.0.0.1:9222",
79
79
"-y"
80
80
]
81
81
}
82
82
}
83
83
}
84
84
```
85
85
86
+
This will make the Chrome DevTools MCP server automatically connect to the browser that Antigravity is using. If you are not using port 9222, make sure to adjust accordingly.
0 commit comments