From 75d16f3250fd53f5c5f1abf091c0fc992294278e Mon Sep 17 00:00:00 2001 From: Masha_Rudenko Date: Tue, 9 Jun 2026 16:18:36 +0300 Subject: [PATCH 1/2] [update] replace Gemini CLI with Antigravity CLI sections - removed Gemini CLI section - added Antigravity (Google) 2.0 section with command palette steps - added Antigravity CLI section (former Gemini CLI) with mcp_config.json config and agy command --- docs/guides/mcp-server.md | 53 +++++++++++++++++++-------------------- 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/docs/guides/mcp-server.md b/docs/guides/mcp-server.md index 9273c99c..070c48b4 100644 --- a/docs/guides/mcp-server.md +++ b/docs/guides/mcp-server.md @@ -108,33 +108,7 @@ Follow the steps below: } ~~~ -### Gemini CLI - -:::info -The [official documentation](https://geminicli.com/docs/tools/mcp-server/) provides a complete guide to configuring and using MCP servers with the Gemini CLI. -::: - -To connect via the CLI, use: - -~~~jsx -gemini mcp add --transport http dhtmlx-mcp https://docs.dhtmlx.com/mcp -~~~ - -Alternatively, you can find your config file at `~/.gemini/settings.json` and add: - -~~~jsx -{ - "mcpServers": { - "dhtmlx-mcp": { - "url": "https://docs.dhtmlx.com/mcp" - } - } -} -~~~ - -Restart Gemini CLI after saving the file. - -### Antigravity (Google) +### Antigravity (Google) 2.0 :::info Learn more about connecting MCP servers in the [official documentation](https://antigravity.google/docs/mcp). @@ -155,6 +129,31 @@ dhtmlx-mcp https://docs.dhtmlx.com/mcp ~~~ +### Antigravity CLI (former Gemini CLI) + +:::info +Check the [related guide](https://antigravity.google/docs/gcli-migration#mcp-config-formatting-changes) to learn about migration from Gemini CLI to Antigravity CLI. +::: + +Create `mcp_config.json` in one of these locations: + +- Global: `~/.gemini/config/mcp_config.json` +- Workspace: `.agents/mcp_config.json` + +Add the following: + +~~~jsx +{ + "mcpServers": { + "dhtmlx-mcp": { + "serverUrl": "https://docs.dhtmlx.com/mcp" + } + } +} +~~~ + +Then run `agy` in the terminal. + ### ChatGPT :::info From f4ba4c7fa5af03dcfd92cde416a74f1e8424dfcf Mon Sep 17 00:00:00 2001 From: Masha_Rudenko Date: Tue, 9 Jun 2026 16:59:02 +0300 Subject: [PATCH 2/2] [fix] restructure Antigravity sections under common parent - renamed top-level section to "Google Antigravity" - moved Antigravity 2.0 and Antigravity CLI to sub-sections (####) --- docs/guides/mcp-server.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/guides/mcp-server.md b/docs/guides/mcp-server.md index 070c48b4..2c62703a 100644 --- a/docs/guides/mcp-server.md +++ b/docs/guides/mcp-server.md @@ -108,7 +108,9 @@ Follow the steps below: } ~~~ -### Antigravity (Google) 2.0 +### Google Antigravity + +#### Antigravity 2.0 :::info Learn more about connecting MCP servers in the [official documentation](https://antigravity.google/docs/mcp). @@ -129,7 +131,7 @@ dhtmlx-mcp https://docs.dhtmlx.com/mcp ~~~ -### Antigravity CLI (former Gemini CLI) +#### Antigravity CLI :::info Check the [related guide](https://antigravity.google/docs/gcli-migration#mcp-config-formatting-changes) to learn about migration from Gemini CLI to Antigravity CLI.