From 47d2b905daf8f16e5b5622afab7e29cb0095430f Mon Sep 17 00:00:00 2001 From: Michael Hablich Date: Tue, 25 Nov 2025 11:35:12 +0100 Subject: [PATCH 1/2] docs: Fix Antigravity docs --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 07f598be..8f5ab964 100644 --- a/README.md +++ b/README.md @@ -66,22 +66,23 @@ amp mcp add chrome-devtools -- npx chrome-devtools-mcp@latest
Antigravity -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`: +To use the Chrome DevTools MCP server follow the instructions from Antigravity's docs to install a custom MCP server. Add the following config to the MCP servers config: ```bash { "mcpServers": { "chrome-devtools": { - "type": "stdio", "command": "npx", "args": [ "chrome-devtools-mcp@latest", + "--browser-url=http://127.0.0.1:9222", "-y" ] } } } ``` +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.
From a0c125f38eeb05a5a99bd8930cbdb12256ce378d Mon Sep 17 00:00:00 2001 From: Michael Hablich Date: Tue, 25 Nov 2025 11:41:49 +0100 Subject: [PATCH 2/2] Fix formatting --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8f5ab964..308d2072 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ To use the Chrome DevTools MCP server follow the instructions from