From 74adb282d34904034c13ca7964ef1f5603050667 Mon Sep 17 00:00:00 2001 From: Julien Date: Fri, 26 Sep 2025 08:15:12 +0200 Subject: [PATCH 1/3] docs: improved instructions for Gemini CLI MCP server Added CLI installation instructions for Chrome DevTools MCP server using Gemini CLI. --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 09b6cd40..e5acfbc5 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,15 @@ Go to `Cursor Settings` -> `MCP` -> `New MCP Server`. Use the config provided ab
Gemini CLI Follow the MCP guide - using the standard config from above. + using the standard config from above. You can also install the Chrome DevTools MCP server using the Gemini CLI: + +```bash +# Project-wide +gemini mcp add chrome-devtools npx chrome-devtools-mcp@latest + +# Global +gemini mcp add -s user chrome-devtools npx chrome-devtools-mcp@latest +```
From 2043a5f0953e8cbe5e08c1b7e7a83d75f7347aa2 Mon Sep 17 00:00:00 2001 From: bouiboui Date: Fri, 26 Sep 2025 14:45:33 +0200 Subject: [PATCH 2/3] docs: update installation instructions for Chrome DevTools MCP server --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e5acfbc5..c5423be3 100644 --- a/README.md +++ b/README.md @@ -102,16 +102,20 @@ Go to `Cursor Settings` -> `MCP` -> `New MCP Server`. Use the config provided ab
Gemini CLI - Follow the MCP guide - using the standard config from above. You can also install the Chrome DevTools MCP server using the Gemini CLI: +Install the Chrome DevTools MCP server using the Gemini CLI. + +**Project wide:** ```bash -# Project-wide gemini mcp add chrome-devtools npx chrome-devtools-mcp@latest +``` -# Global +**Globally:** +```bash gemini mcp add -s user chrome-devtools npx chrome-devtools-mcp@latest ``` + +Alternatively, follow the MCP guide and use the standard config from above.
From 4e52735efea89c8f42f4a196ae8b7ddf24f9f800 Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Fri, 26 Sep 2025 15:20:07 +0200 Subject: [PATCH 3/3] docs: fix format --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c5423be3..9075285d 100644 --- a/README.md +++ b/README.md @@ -111,11 +111,13 @@ gemini mcp add chrome-devtools npx chrome-devtools-mcp@latest ``` **Globally:** + ```bash gemini mcp add -s user chrome-devtools npx chrome-devtools-mcp@latest ``` Alternatively, follow the MCP guide and use the standard config from above. +