From 105d12d623ef1848402bd95835d49b0537202e20 Mon Sep 17 00:00:00 2001 From: Sebastian Benz Date: Wed, 19 Nov 2025 17:46:58 +0100 Subject: [PATCH] docs: add Antigravity config --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index 3de17ff7..07f598be 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,28 @@ 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`: + +```bash +{ + "mcpServers": { + "chrome-devtools": { + "type": "stdio", + "command": "npx", + "args": [ + "chrome-devtools-mcp@latest", + "-y" + ] + } + } +} +``` + +
+
Claude Code Use the Claude Code CLI to add the Chrome DevTools MCP server (guide):