Add Google Antigravity MCP client page - #612
Open
robertjamesprior wants to merge 2 commits into
Open
robertjamesprior wants to merge 2 commits into
robertjamesprior wants to merge 2 commits into
Conversation
Antigravity has no setup page, so users have to work out the config shape themselves. It uses serverUrl rather than url, and its OAuth flow can leave initialize unauthenticated, so document the API-key header as the fallback. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Automations to automatically generate PRs for you. |
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
robertjamesprior
marked this pull request as ready for review
September 20, 2026 15:28
There was a problem hiding this comment.
Risk assessment: Very Low
Re-evaluated this PR from the diff at 23f3c1ecccc4737baf084be6ff275139bf375032 (same commit as the existing approval). Risk is unchanged.
This is documentation-only. The diff adds a Mintlify client page (reference/mcp-server/clients/antigravity.mdx), one docs.json nav entry, and two lines on the CLI MCP reference listing the antigravity install target. No application code, auth, billing, permissions, or infrastructure is modified.
Scope
- 3 files, +62 / −0
- New page follows the existing MCP client-doc pattern (CLI install, manual config, API-key workaround)
- No
CODEOWNERSfile in the repo
Why Very Low
- Small, isolated docs surface with no production logic or shared-system blast radius
- Config examples use placeholders (
YOUR_KERNEL_API_KEY), not credentials - No prompt/instruction-file changes that would alter model behavior
Existing approval stands. Not re-approving (same commit, risk did not increase).
Sent by Cursor Automation: Assign PR reviewers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Summary
Adds
reference/mcp-server/clients/antigravity.mdxand itsdocs.jsonnav entry, and lists the newantigravitytarget on the CLI reference page. Antigravity had no setup page, so anyone connecting it to the Kernel MCP server had to work the config shape out themselves.Three things the page pins down:
serverUrl, noturl. Antigravity ignoresurlandhttpUrlfor remote servers. Config lives inmcp_config.json—~/.gemini/config/mcp_config.jsonglobally,.agents/mcp_config.jsonper workspace.initializewithout the bearer token, returning401 Unauthorized(antigravity-cli#25, open since May). Theheadersform sidesteps it.Structured to match
fx.mdx, which is the existing precedent for a client whose OAuth path needs a documented workaround — CLI install first, manual config second, API-key workaround last.Merge order
This documents
kernel mcp install --target antigravity, which is added in kernel/cli#265. Land that first, otherwise this page advertises a target the shipped CLI rejects.Validation
mint broken-links: passes.docs.jsonparses, and the new nav entry resolves to a file that exists.POST https://mcp.onkernel.com/mcpwithAuthorization: Bearer <key>returns200and a validinitializeresult.HOME.🤖 Generated with Claude Code
Note
Low Risk
Documentation-only changes with no runtime or auth logic modifications in this repo.
Overview
Adds documentation for connecting Google Antigravity to the Kernel MCP server, including a new Connect Your Client nav entry and CLI coverage for
kernel mcp install --target antigravity.The Antigravity page documents Antigravity-specific setup: remote MCP config uses
serverUrl(noturl/httpUrl) inmcp_config.json, the OAuth path with paste-back of the authorization code, and an API-key header workaround for a known issue where OAuth can succeed butinitializestill returns 401 without a bearer token.The CLI MCP reference lists
antigravityas a supported target and notes that install writes HTTP config keyed onserverUrl.Reviewed by Cursor Bugbot for commit 23f3c1e. Bugbot is set up for automated code reviews on this repo. Configure here.