Antigravity MCP Server
The Antigravity MCP Server acts as a multi-model conductor/executor, exposing Google's Gemini CLI (agy) as tools that enable cost-efficient AI workflows — letting a frontier model (e.g. Claude) orchestrate cheaper Gemini workers for heavy-lifting tasks, with model tier control (flash → opus).
Core Delegation
delegate_to_antigravity— Run a synchronous task onagy/Gemini with configurable model tiers, workspaces, and timeoutsstart_background_job/check_job_status— Dispatch long-running tasks as background jobs and poll their progress/output viajob_id
Deep Research (Web Search)
propose_research_questions— Cheaply draft clarifying questions and sub-questions before spending quotaresearch_fanout— Launch parallel web-search workers (one per sub-question), writing full reports to disk and returning short digestsresearch_status/collect_digests— Monitor batch progress and gather digests while keeping the conductor's context lean
Architect / Build Pipeline
propose_design_questions— Draft a requirements interview for a software projectreview_fanout— Launch parallel code-review workers per aspect (architecture, security, performance, tests, etc.)draft_design_doc— Synthesize review/research batch reports into a structured design document
Science Research (Primary Sources)
list_agy_skills/check_science_credentials— Discover and validate access to scientific database skillspropose_science_plan/science_fanout/delegate_with_skills— Run trustworthy queries against arXiv, PubMed, OpenAlex, UniProt, and more with skill-pinned workers
Code & Git
cross_model_review— Get an independent diff review from a different model family to surface blind spotsauto_git_commit— Stage files, generate a conventional commit message viaagy, commit, and optionally pushindex_code— Distill directories/files into an architectural index using Gemini's large context window, without flooding the conductor's context
Allows delegation of tasks to Google's Antigravity/Gemini CLI, enabling web research, code indexing, design document drafting, cross-model review, and automated git commits via a multi-model conductor/executor pattern.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Antigravity MCP Serverdelegate a quick code review to flash tier"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Antigravity MCP Server
Run Google's Antigravity/Gemini CLI (agy) as an MCP server — a multi-model conductor/executor for AI agents.
What & why
A Model Context Protocol server that exposes the
Antigravity CLI (agy, Google's Gemini agent) as a set of
tools usable from Claude Code, Claude Desktop, Cursor, and Windsurf.
The animating idea is cost discipline through model tiering: a frontier model (Claude) acts as the
conductor, and cheaper Gemini (agy) is the executor it offloads bulky, token-heavy work to —
web research, codebase indexing, cross-model review, commit messages. The heavy output stays on disk and
in the cheap model's context; the conductor ingests only short digests, so its own context stays lean and
its bill stays low. Tiers (flash → pro → cross-family sonnet/opus/gpt-oss) let you dial
cost against quality per task.
Related MCP server: agy-mcp
Architecture
┌─────────────────────────────┐
│ Conductor (Claude) │ plans, verifies, keeps context lean
│ via any MCP client │
└──────────────┬──────────────┘
│ MCP tool calls (stdio)
┌──────────────▼──────────────┐
│ Antigravity MCP server │ antigravity_mcp/ (this repo)
│ FastMCP · 13 tools/3 prompts
└──────────────┬──────────────┘
│ subprocess (prompt via stdin / tempfile path)
┌──────────────▼──────────────┐
│ agy CLI → Gemini │ Executor: web search, file reads, generation
└──────────────┬──────────────┘
│ detached workers write here
┌──────────────▼──────────────┐
│ $ANTIGRAVITY_JOBS (~/.antigravity-jobs)
│ per-job dirs: out · err · rc · subreport.md · manifest.json
└─────────────────────────────┘Single FastMCP server. Every tool is a
@mcp.tool()-decorated function; every prompt is@mcp.prompt(). All tools shell out toagyviasubprocess, guarding onshutil.which("agy")first.Model tiering.
model_for_tier()maps a semantic tier to a concrete Gemini/cross-family model — the one place to update when Antigravity renames models.Filesystem-backed background jobs. Long jobs run as detached processes that redirect to
out/errand write their exit code torc. State is reconstructed purely from those files, so jobs survive the MCP server restarting.Parallel fan-out pipelines. A shared
_start_batchprimitive launches one worker per sub-question (research) or per aspect (review). Workers write full reports to disk and print only a short digest; batch-generic collectors gather them.Large inputs never hit the command line. Prompts pipe via stdin; big diffs/files are written to a tempfile and only the path is passed, dodging OS argument-length limits.
A fuller, auto-generated breakdown lives in ARCHITECTURE.md — itself produced by this
server's own index_code tool (see Dogfooding below).
Quickstart
Prerequisites
Antigravity CLI (
agy) installed and authenticated (runagyonce interactively to sign in).Python ≥ 3.12
Add to Claude Code
mcp add antigravity-server uv run --directory /absolute/path/to/this/repo main.pyAdd to Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"antigravity": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/this/repo", "main.py"]
}
}
}Run the server directly
uv run main.py # stdio transportTry the pipeline (copy-paste)
examples/deep_research_example.py drives the fan-out research tools
end-to-end (fan out → poll → collect digests) against the cheap flash-lo tier:
uv run python examples/deep_research_example.pyUses web search, so it spends real Antigravity quota.
Tools
18 tools across five groups, plus 4 orchestration prompts.
Tool | Group | What it does |
| Delegation | Run a synchronous task on |
| Delegation | Dispatch a long-running task to a detached process; returns a |
| Delegation | Reconstruct a background job's status/output from its on-disk files. |
| Deep research | Cheap pre-flight: draft clarifying questions + sub-questions to sharpen a brief before spending quota. |
| Deep research | Launch one parallel grounded-research worker per sub-question (web search → report on disk + digest). |
| Deep research * | Aggregate progress of every worker in a batch. |
| Deep research * | Gather workers' short digests plus on-disk report paths, keeping context lean. |
| Architect/build | The grill: draft a requirements interview + candidate requirements for a build/improvement. |
| Architect/build | Launch one parallel code-review worker per aspect (architecture, security, tests, …). |
| Architect/build | Have |
| Science skills | Catalog the skills installed in |
| Science skills | Report which API keys each skill wants and which are present in |
| Science skills | Cheap pre-flight: draft sub-questions already mapped to the right databases, plus a clarifying interview. |
| Science skills | Run ONE task pinned to named skills, in an isolated workspace. |
| Science skills * | Launch one parallel worker per sub-question, each pinned to real database CLIs. |
| Code & git | Independent diff review — use |
| Code & git | Stage, generate a conventional commit message, commit, and optionally push. |
| Code & git | Distill directories/files into an architectural index without pulling raw code into the conductor's context. |
* research_status and collect_digests are batch-generic — they read any batch's
sub_NN/subreport.md + manifest.json, so the review and science pipelines reuse them unchanged.
Prompts: antigravity_research_recipe (deep-research recipe), antigravity_build_recipe
(Spec-Driven Requirements → Design → Tasks → Implement loop), antigravity_science_recipe
(primary-source science research), and antigravity_workflow (the core conductor/executor
cost-discipline rules).
Model tiers
flash · flash-med · flash-lo · pro (default for research/review) · pro-lo · and cross-family
sonnet · opus · gpt-oss. Tier→model resolution is centralised in model_for_tier(); run
agy models for the live list.
Three pipelines
Deep research —
research_fanout→research_status→collect_digests. Claude plans and adversarially verifies;agydoes the grounded web legwork in parallel.Architect/build —
propose_design_questions→review_fanout/research_fanout→draft_design_doc. A Spec-Driven loop for creating or improving codebases;agydrafts, Claude refines and drives implementation.Science (primary sources) —
propose_science_plan→science_fanout→research_status→collect_digests. See below.
Science skills (primary-source research)
agy can load agent skills, notably Google DeepMind's
science-skills bundle — ~39 skills wrapping
arXiv, OpenAlex, PubMed, UniProt, PDB, ChEMBL, ClinVar, gnomAD, AlphaFold, AlphaGenome,
ClinicalTrials.gov and more, each a rate-limited CLI over the real API.
This matters because research_fanout is web search, and web search will hand you a
plausible-looking DOI that does not exist. These skills call the actual databases and are
forbidden to fabricate identifiers. science_fanout is the primary-source counterpart — same cost
profile (agy works, Claude reads digests), but every ID it returns came from a real API call.
Despite the name, this is not biomedical-only. Two families live here:
All-discipline literature —
literature-search-arxivcovers every arXiv category (statistics, maths, CS, physics, economics, quant-finance) andliterature-search-openalexindexes all scholarly work in every field, with real DOIs and citation counts. A literature scan on Bayesian count models or transformer architectures is squarely in scope.Domain databases — PubMed, UniProt, PDB, ChEMBL, ClinVar, gnomAD, AlphaFold, ClinicalTrials.gov, for primary biomedical and chemical records.
Rule of thumb: /science-research when you need citations you can trust; /deep-research when
you need breadth across the open web (news, blogs, docs, market scans). For a pure derivation,
neither — just do the maths.
Setup: install the bundle in Antigravity (Settings → Customizations → Build with Google Plugins →
Science). No API key is needed to start — most skills work keyless at lower rate limits, and
check_science_credentials() tells you exactly which keys would help and how to add them safely.
Two design notes worth knowing, since they're not obvious:
agyhas no--skillflag. It auto-loads every installed skill's description and triggers on prompt content, so pinning a worker to a skill means naming it in the prompt and handing over its absolute path (skill_preamble()inagy.py).The bundled
credentialsskill tells an agent to halt and prompt the user when a key is missing. A detached worker has no user, so it would stall until timeout.skill_preamble()resolves credentials up front and explicitly overrides that protocol; a genuinely required key (only AlphaGenome has one) refuses the launch instead.
Each worker's DATA_STATUS: OK | PARTIAL | BLOCKED line is the health signal that catches the one
failure mode that looks like success — a worker quietly answering from memory instead of querying.
Companion Claude Code skills
/deep-research, /grill-me-research and /architect orchestrate the first two pipelines. They live
in the user's ~/.claude/skills/ and are not shipped here — the server and its @mcp.prompt()
recipes are self-contained without them.
The science pipeline's skill is shipped, in skills/science-research/.
Install it with:
cp -r skills/science-research ~/.claude/skills/Dogfooding
This repo was tidied up for release using its own tools — a nice end-to-end proof that they work:
index_codedistilled the package intoARCHITECTURE.md.cross_model_reviewgave an independent second-model pass over the release diff.
Testing
uv run python test_offline.py # fast, offline, no `agy`, no quota (pure-Python helper tests)
uv run python smoke_test_manual.py # manual end-to-end smoke test — invokes real `agy`, spends quota
uv run python smoke_test_science.py # manual science-pipeline smoke test — needs the science plugin, spends quotaCaveats
This is a thin wrapper around the external
agyCLI: it doesn't call Gemini directly, so it inheritsagy's auth and quota. Tools return human-readable error strings (never exceptions) with remediation tips.It's a personal project, not an official Google or Anthropic product.
Several tools (
cross_model_review,auto_git_commit,index_code, the fan-out workers) runagywith--dangerously-skip-permissionsbecause they need autonomous file/web access. Point them at code you trust.Model tier names track Antigravity's current model lineup and may drift as Google renames models — update
model_for_tier()when they do.
License
MIT © James Zoryk
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceA lightweight MCP bridge that lets Claude Code delegate heavy tasks to the Antigravity CLI - saving context window and tokens for what matters.112MIT
- AlicenseAqualityAmaintenanceWraps Google Antigravity CLI into 11 typed MCP tools, enabling any MCP client to invoke agy for code review, prototyping, execution, and long-running tasks.1115MIT
- AlicenseBqualityAmaintenanceEnables calling Google's Antigravity CLI (agy) headlessly through MCP, providing tools like agy_ask and agy_research for agents like Claude Code.213MIT
- AlicenseBqualityAmaintenanceAn MCP bridge that lets Codex delegate long-running agent work to the Antigravity CLI, providing observable and resumable tool-based execution with project scoping.135MIT
Related MCP Connectors
A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage
Turn a GitHub repo or docs site into agent-ready context: pack it or search it, over MCP.
Remote MCP for Antigravity agent run receipt MCP, structured receipts, audit logs, and reviewer-read
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JamesZor/antigravity'
If you have feedback or need assistance with the MCP directory API, please join our Discord server