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
Available Tools
13 toolsauto_git_commitA
Automatically stage, generate a commit message using Antigravity, commit, and optionally push.
Use this to offload boring token-wasting git operations from the frontier model.
Args:
repo_path: The absolute path to the git repository.
push: Whether to 'git push' after committing.
stage_all: Whether to 'git add .' before generating the commit. If False, only uses currently staged changes.
| Name | Required | Description | Default |
|---|---|---|---|
| push | No | ||
| repo_path | Yes | ||
| stage_all | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but description discloses key behaviors: staging, AI-generated commit message, commit, optional push. Explains stage_all parameter behavior. Could mention what happens on failure or auth requirements, but still provides good transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise: two sentences plus bullet-style parameter descriptions. Every sentence adds value, no repetition or fluff. Front-loads the main purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool has 3 parameters and output schema (exists but not described). Description covers core workflow and parameters. Missing details on output or error states, but output schema likely handles that. Reasonably complete for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so description compensates by explaining each parameter: repo_path is absolute path, push boolean, stage_all boolean. Defaults are mentioned in schema and description echoes them. Adequate for understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states what the tool does: automatically stage, generate a commit message using Antigravity, commit, and optionally push. Verb 'auto_git_commit' directly reflects action, and resource is git operations. Differentiates from siblings as no other tool handles git commits.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Use this to offload boring token-wasting git operations from the frontier model', providing clear when-to-use context. Does not mention when-not-to-use or alternatives, but the guidance is direct and helpful.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_job_statusA
Check the status and retrieve the output of a background job.
Args:
job_id: The ID of the job to check.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations, and description only states purpose; lacks disclosure of read-only nature, error handling, or rate limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two effective sentences with front-loaded purpose, no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool is simple with one param and output schema; description covers main functionality, though missing context on expected status values.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Single parameter job_id is explained as 'The ID of the job to check', adding meaning beyond schema name, but no format or examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'check' and resources 'status' and 'retrieve output', distinguishing from sibling tools like start_background_job.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implicitly used after starting a job, but no explicit when-to-use or alternatives provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
collect_digestsA
Gather the stdout digests from a finished research batch (NOT the full reports).
Keeps Claude's context lean: returns each worker's short digest plus the on-disk path
to its full report. Read individual subreport.md files only when a claim needs deeper
verification.
Args:
batch_id: The batch ID returned by research_fanout.
include_stderr: If True, also include each worker's stderr (for debugging failures).
| Name | Required | Description | Default |
|---|---|---|---|
| batch_id | Yes | ||
| include_stderr | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully bears the burden of behavioral disclosure. It explains the return value (short digest per worker plus on-disk path), implies it is a read-only operation ('Gather... from a finished research batch'), and mentions no destructive side effects. It could add details about required permissions or error handling, but is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise: three sentences plus an 'Args' section. It front-loads the purpose, each sentence adds value, and there is no extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema and sibling tools, the description adequately explains what the tool does, when to use it, and what it returns. It implies the batch must be finished, which is clear enough, but could explicitly mention that the batch must be completed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explains that batch_id is the ID returned by research_fanout and that include_stderr, when true, includes stderr for debugging. This adds meaningful context beyond the schema's basic 'Batch Id' and 'Include Stderr' titles.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Gather the stdout digests from a finished research batch (NOT the full reports)', specifying the verb 'gather', the resource 'stdout digests', and the scope 'finished research batch'. It explicitly distinguishes from full reports, helping differentiate from sibling tools like research_fanout.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use the tool: after a finished batch, to keep context lean, and suggests reading individual subreport files only when needed. It implies not to use it for full reports, but does not explicitly name alternatives or state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cross_model_reviewB
Get an independent cross-model review of a code diff using Antigravity.
Tip: set tier='gpt-oss' or 'sonnet' for a genuinely different model family than the
author, which surfaces blind spots a same-family reviewer would share.
Args:
diff: The git diff or code changes to review.
adversarial: If True, challenges design decisions and trade-offs rather than just finding line-level bugs.
tier: Model tier. Default is 'pro' for deeper reasoning.
| Name | Required | Description | Default |
|---|---|---|---|
| diff | Yes | ||
| tier | No | pro | |
| adversarial | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears full responsibility for behavioral disclosure. It mentions using 'Antigravity' and the 'adversarial' flag, but does not clarify key aspects like whether the operation is asynchronous, what it modifies, required permissions, or side effects. The description is insufficient for an agent to understand the behavioral implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with a one-sentence summary, a helpful tip, and a bullet list for arguments. It is front-loaded with the core purpose. However, the info could be slightly more structured, and every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema (not shown), the description need not detail return values. It covers the basic usage and parameters, but lacks context on sibling tool differentiation and behavioral details. Completeness is adequate but leaves gaps for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explains 'diff' as the code changes, 'adversarial' as challenging design decisions, and 'tier' with a default and example values. This adds meaningful semantic context beyond the bare schema titles, though it could be more exhaustive (e.g., valid tier options).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and the resource ('independent cross-model review of a code diff'). It distinguishes itself by mentioning 'using Antigravity' and the concept of cross-model review, but does not explicitly differentiate from sibling tools like 'delegate_to_antigravity' or 'review_fanout'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The tip provides guidance on selecting the 'tier' parameter to use a different model family for better blind spot coverage. However, it does not specify when to use this tool compared to alternatives, nor does it provide any 'when-not' guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delegate_to_antigravityA
Delegate a well-scoped subtask to Antigravity (agy/Gemini) under cost discipline, then verify.
Args:
prompt: The task prompt to send to Antigravity.
tier: Model tier (flash, flash-med, flash-lo, pro, pro-lo, sonnet, opus, gpt-oss). Default is flash.
dirs: Workspaces to attach so agy reads real files.
yolo: Auto-approve all tool permissions (DANGEROUS). Required for web search.
sandbox: Run agent with terminal sandbox restrictions.
continue_session: Resume the most recent agy conversation (stateful).
conversation_id: Resume a specific agy conversation by ID (stateful).
timeout: Print-mode timeout, e.g., '10m'. Default is '5m'.
| Name | Required | Description | Default |
|---|---|---|---|
| dirs | No | ||
| tier | No | flash | |
| yolo | No | ||
| prompt | Yes | ||
| sandbox | No | ||
| timeout | No | 5m | |
| conversation_id | No | ||
| continue_session | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It discloses some behavioral traits: 'cost discipline', 'verify', marks 'yolo' as DANGEROUS, mentions 'sandbox restrictions', and provides defaults. However, it does not explain side effects, failure modes, whether it is synchronous, or permissions needed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is relatively concise: one sentence stating the purpose followed by a parameter list. The parameter list is efficiently formatted with brief explanations. However, the parameter list could be slightly more compact, but overall it is well-structured and not verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 8 parameters, one required, an output schema exists but is not shown in the description, and no annotations, the description is incomplete. It does not explain the return value, verification process, or overall workflow. While parameter coverage is good, the lack of output and process explanation leaves significant gaps for a complex tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The JSON schema has 0% description coverage for parameters, so the description must fully compensate. It does so by listing all 8 parameters with their names, types, and defaults, and adding explanatory notes like 'DANGEROUS' for yolo and 'stateful' for conversation_id. This provides complete semantics beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Delegate a well-scoped subtask'), the target ('Antigravity (agy/Gemini)'), and key constraints ('under cost discipline, then verify'). It distinguishes from sibling tools by focusing on delegation of subtasks with cost discipline, which is unique among the listed siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies that this tool is for delegating well-scoped subtasks under cost discipline, but it does not explicitly state when to use it versus alternatives, nor does it provide when-not-to-use guidance or compare with sibling tools like 'research_fanout' or 'propose_design_questions'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
draft_design_docA
Have Antigravity draft a structured design document (with work packages) from on-disk batches.
The synthesis step of the Architect pipeline. agy reads the digests/subreports from the given
review + research batch dirs PLUS the orchestrator's verified `brief`, and drafts a full design
doc to `out_path`. Returns only a short digest — the orchestrator (Claude) then reads the file,
verifies claims, and edits it in place. This is the 'agy drafts, Opus refines' gate.
Args:
goal: The project goal the design serves.
brief: Claude's verified findings / requirements (the trustworthy synthesis so far).
batch_ids: review_fanout / research_fanout batch IDs whose reports agy should read.
out_path: Absolute path to write the design doc (e.g. <repo>/design.md).
tier: Model tier for the draft (default 'pro').
| Name | Required | Description | Default |
|---|---|---|---|
| goal | Yes | ||
| tier | No | pro | |
| brief | Yes | ||
| out_path | Yes | ||
| batch_ids | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses that the tool returns a short digest and the orchestrator reads and edits the file, plus the writing to out_path. It could mention more about error handling or permissions, but provides reasonable transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is structured with paragraphs and an Args list. Front-loaded with the core action. Every sentence adds value, though could be slightly more concise without losing detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given tool complexity (5 params, output schema exists), the description covers return behavior, pipeline context, and parameter roles. It adequately informs an AI agent, though more details on error cases or expected output format would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so description compensates by listing parameters with explanations (e.g., 'batch_ids: review_fanout / research_fanout batch IDs'). Adds meaning beyond the bare schema, though some parameters could be more detailed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: drafting a structured design document from on-disk batches. It uses specific verbs ('draft', 'reads') and distinguishes itself from sibling tools as the synthesis step of the Architect pipeline.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains the tool's role as the synthesis step, requiring review and research batch dirs plus a verified brief. It implies usage after prior steps but does not explicitly state when not to use or list alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
index_codeA
Reads specific directories or files using Antigravity's massive context window and returns a distilled architectural index.
Use this to quickly understand a subset of a codebase (or a whole repo) without pulling all the raw files into the frontier model's context window.
Args:
paths: A list of absolute paths to directories or files to index.
focus: What to focus the index on (e.g., 'general architecture', 'database schemas', 'API routes'). Default is 'general architecture'.
out_path: Optional absolute path to also persist the index to (e.g. '<repo>/docs/ARCHITECTURE.md') so it survives for incremental reuse instead of living only in the caller's context.
| Name | Required | Description | Default |
|---|---|---|---|
| focus | No | general architecture | |
| paths | Yes | ||
| out_path | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description must disclose behavioral traits. It mentions 'reads' and 'returns', implying read-only access, but does not explicitly state that the tool is non-destructive, idempotent, or safe. It also lacks information on rate limits, authentication, or potential side effects like file creation via out_path.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise at about 100 words, with a clear one-sentence purpose, a usage guideline sentence, and a structured Args section. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 3 parameters and an output schema, the description provides essential information about what the tool does, when to use it, and parameter details. It does not cover error handling or output format, but the output schema likely addresses the latter. Overall, it is nearly complete for an agent to select and invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully explains all three parameters: paths (list of absolute paths), focus (with examples and default), and out_path (with example and purpose). This compensates entirely for the missing schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'reads specific directories or files' and 'returns a distilled architectural index', with a specific verb and resource. It is distinct from sibling tools which include auto_git_commit, check_job_status, etc., and effectively communicates its unique role in codebase understanding.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use: 'to quickly understand a subset of a codebase... without pulling all raw files'. While it doesn't explicitly state when not to use or name alternatives, the usage context is clear and specific.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
propose_design_questionsA
Draft clarifying questions and candidate requirements to sharpen a build/improvement brief.
The first step of the Architect pipeline (the *grill*). Mirrors propose_research_questions
but for software projects: offloads brainstorming the requirements interview to a cheap
agy model. Returns clarifying questions (each with answer options) the orchestrator should
put to the user, plus a draft set of requirements. The orchestrator asks the user, refines,
and writes requirements.md before spending quota on a code review or design doc.
Returns JSON: {"clarifying_questions": [{"question", "why", "options": [...]}],
"draft_requirements": [...]}. Falls back to raw text if the model returns non-JSON.
Args:
goal: The project goal — what to build or improve.
repo_path: Optional path to an existing codebase being improved (gives the model context).
context: Optional extra context (users, constraints, deadline, what already exists).
tier: Model tier for the brainstorm (default 'flash' — this is a cheap task).
| Name | Required | Description | Default |
|---|---|---|---|
| goal | Yes | ||
| tier | No | flash | |
| context | No | ||
| repo_path | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It discloses the return format (JSON or fallback to raw text), the pipeline flow (orchestrator asks user, refines, writes requirements.md), and notes that the task is cheap (flash tier). However, it does not explicitly state whether the tool has side effects (though it is likely read-only).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a summary, context, return details, and args. It is informative but slightly verbose with non-essential phrases like 'the *grill*'. Still, it efficiently conveys necessary information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has four parameters and an output schema, the description covers the return format, fallback, and pipeline. It does not detail the output schema fields, but this is acceptable since the output schema exists. The description is complete for an agent to use the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explains all four parameters: goal (required), repo_path (optional path to existing codebase), context (optional extra context), and tier (default 'flash' and described as cheap task). This adds meaningfully beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'draft' and the resource 'clarifying questions and candidate requirements to sharpen a build/improvement brief'. It distinguishes itself from the sibling tool 'propose_research_questions' by specifying it is for software projects.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states it is the first step of the Architect pipeline and that the orchestrator should use it before spending quota on code review or design doc. The description also notes it mirrors propose_research_questions but for software, providing clear usage context and alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
propose_research_questionsA
Draft clarifying questions and candidate sub-questions to sharpen a research brief.
Run this BEFORE research_fanout. It offloads brainstorming the interview to a cheap
agy model: it returns clarifying questions (each with suggested answer options) that the
orchestrator should put to the user, plus a draft set of sub-questions. The orchestrator
then asks the user, refines the brief, and only then spends quota on research_fanout.
Returns JSON: {"clarifying_questions": [{"question", "why", "options": [...]}],
"draft_subquestions": [...]}. Falls back to raw text if the model returns non-JSON.
Args:
topic: The research topic to interrogate.
context: Optional extra context (audience, deadline, what's already known).
tier: Model tier for the brainstorm (default 'flash' — this is a cheap task).
| Name | Required | Description | Default |
|---|---|---|---|
| tier | No | flash | |
| topic | Yes | ||
| context | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses return format (JSON with specific fields), fallback behavior (raw text if non-JSON), and model tier (cheap task, default 'flash'). With no annotations provided, this description carries the full burden and does it adequately, though it could mention statelessness or performance characteristics.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise (~150 words) and front-loaded with purpose. It follows a logical flow: purpose, usage, return format, args. Minor improvement would be to separate sections more clearly, but it is efficient and no sentence is wasted.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the 3-parameter input, output JSON description, and no annotations, the description provides sufficient context for an agent to use the tool correctly. It covers workflow, parameter meanings, and output structure. Slightly lacking on error handling (fallback raw text not fully described) but overall comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All three parameters (topic, context, tier) are described in the 'Args' section with useful explanations and examples. Since the schema has 0% description coverage, this description fully compensates and adds significant meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the verb 'Draft' and the resource 'clarifying questions and candidate sub-questions to sharpen a research brief'. Distinguishes itself from the sibling tool 'research_fanout' by explicitly stating it should be run before it.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit workflow guidance: 'Run this BEFORE research_fanout' and explains the subsequent steps (orchestrator asks user, refines brief, then spends quota on research_fanout). This clearly indicates the tool's position in the pipeline.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_fanoutA
Launch parallel grounded-research workers, one detached Antigravity (agy) job per sub-question.
This is the fan-out half of a deep-research pipeline. Each worker web-searches its
sub-question, writes a full markdown report to a file, and prints a short digest to
stdout. Reports stay on disk so Claude's context stays lean — poll with
research_status(batch_id) and gather with collect_digests(batch_id).
Args:
topic: The overarching research topic (gives each worker shared context).
subquestions: One focused sub-question per worker. Each launches a parallel job.
tier: Model tier for every worker (default 'pro' = Gemini 3.1 Pro High).
timeout: Per-worker print-mode timeout, e.g., '10m'.
| Name | Required | Description | Default |
|---|---|---|---|
| tier | No | pro | |
| topic | Yes | ||
| timeout | No | 10m | |
| subquestions | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It describes that workers web-search, write markdown reports to files, and print digests to stdout, but lacks details on error behavior, file naming, resource limits, or batch identification. This is adequate but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a one-line summary, a block explaining the pipeline, and a concise Args list. Every sentence delivers value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the main behavior and workflow integration. Given that an output schema exists, it doesn't need to explain return values. However, it could be more explicit about how to obtain the batch_id, though that is assumed to be in the output.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, but the description provides detailed parameter semantics in the Args section, explaining the purpose of each parameter, including defaults for tier and timeout. This adds significant meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Launch parallel grounded-research workers, one detached Antigravity (agy) job per sub-question.' It uses specific verbs and resources, and distinguishes itself from sibling tools by naming them as polling/gathering tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says it's the fan-out half of a deep-research pipeline and guides the user to poll with research_status(batch_id) and gather with collect_digests(batch_id), providing clear context on when to use this tool and alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_statusA
Report aggregate status of every worker in a research batch.
Args:
batch_id: The batch ID returned by research_fanout.
| Name | Required | Description | Default |
|---|---|---|---|
| batch_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It implies a read operation ('report') but does not disclose potential side effects, authorization needs, rate limits, or error conditions. It is adequate but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, with two sentences: one for purpose and one for parameters. No redundant information, and the key action is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the description is sufficient. It explains the tool's purpose and parameter source. It does not cover error scenarios, but that is acceptable with an output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds value by explaining the parameter as 'The batch ID returned by research_fanout', giving context beyond the schema's 'Batch Id' title.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Report aggregate status of every worker in a research batch.' It specifies the verb 'report', resource 'aggregate status', and scope 'every worker in a research batch'. It is distinct from sibling tools like 'check_job_status' but does not explicitly differentiate.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides context by stating the batch_id comes from 'research_fanout', guiding where to obtain the parameter. However, it lacks explicit guidance on when to use this tool versus alternatives or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
review_fanoutA
Launch parallel codebase-review workers, one detached Antigravity (agy) job per aspect.
The code analog of research_fanout. Each worker reads the repo (via --add-dir) and reviews
ONE aspect (architecture, security, performance, tests, etc.), writes a full markdown report
to disk, and prints a short digest to stdout. Reports stay on disk so Claude's context stays
lean — poll with research_status(batch_id) and gather with collect_digests(batch_id), exactly
as for a research batch (the collectors are batch-generic).
Args:
repo_path: Absolute path to the codebase to review.
aspects: One review aspect per worker. Defaults to a 7-aspect standard sweep.
goal: Optional improvement goal to focus the review (e.g. 'prepare for multi-tenant SaaS').
tier: Model tier for every worker (default 'pro' = Gemini 3.1 Pro High).
timeout: Per-worker print-mode timeout, e.g., '10m'.
| Name | Required | Description | Default |
|---|---|---|---|
| goal | No | ||
| tier | No | pro | |
| aspects | No | ||
| timeout | No | 10m | |
| repo_path | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It explains that workers are detached, writes reports to disk, prints digests to stdout, and that collectors are batch-generic. It implies asynchronous operation via polling, but could be slightly more explicit about resource usage or error handling.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: a one-sentence summary of the action, a paragraph explaining behavior and follow-up steps, then a list of parameters. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the description does not need to detail return values. It adequately covers the tool's role, its relation to research_fanout, and the lifecycle of results (poll with research_status, gather with collect_digests). It provides sufficient context for an agent to correctly invoke and manage the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain all parameters. It does so thoroughly: repo_path is mandatory, aspects default to a 7-aspect sweep, goal is an optional focus, tier defaults to 'pro', timeout defaults to '10m'. Each parameter's meaning and default are clearly stated.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it launches parallel codebase-review workers, one per aspect, using Antigravity jobs. It explicitly distinguishes itself as the code analog of research_fanout, making the purpose unambiguous and differentiating it from sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool: to launch codebase reviews, and how to follow up by polling with research_status and collecting with collect_digests. It also contrasts itself with research_fanout, clarifying context and alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_background_jobA
Start a long-running Antigravity (agy/Gemini) task in the background.
Returns a job_id that can be used to check status.
Args:
prompt: The task prompt to send to Antigravity.
tier: Model tier (flash, flash-med, flash-lo, pro, pro-lo, sonnet, opus, gpt-oss). Default is flash.
dirs: Workspaces to attach so agy reads real files.
yolo: Auto-approve all tool permissions (DANGEROUS). Required for web search.
sandbox: Run agent with terminal sandbox restrictions.
continue_session: Resume the most recent agy conversation (stateful).
conversation_id: Resume a specific agy conversation by ID (stateful).
timeout: Print-mode timeout, e.g., '10m'. Default is '5m'.
| Name | Required | Description | Default |
|---|---|---|---|
| dirs | No | ||
| tier | No | flash | |
| yolo | No | ||
| prompt | Yes | ||
| sandbox | No | ||
| timeout | No | 5m | |
| conversation_id | No | ||
| continue_session | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses dangerous behavior (yolo) and sandbox restrictions, but could mention failure handling or concurrency limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, front-loaded with purpose and return value, then clear parameter list. No superfluous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the 8 parameters and existence of output schema, the description covers all aspects needed for correct invocation, including parameter details and return value.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, but the description explains each of the 8 parameters in detail, including values and warnings, fully compensating.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it starts a long-running Antigravity task in the background and returns a job_id. It specifies the association with 'agy/Gemini' and differentiates from sibling tools like 'check_job_status'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It states the tool is for background tasks, implying when to use it. It doesn't explicitly list when not to use, but the context of sibling tools provides clarity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
13 tool updates
v0.1.0- First observed
auto_git_commit - First observed
check_job_status - First observed
collect_digests - First observed
cross_model_review - First observed
delegate_to_antigravity - First observed
draft_design_doc - First observed
index_code - First observed
propose_design_questions - First observed
propose_research_questions - First observed
research_fanout - First observed
research_status - First observed
review_fanout - First observed
start_background_job
TDQS
Most tools have distinct purposes, but there is some overlap between delegate_to_antigravity and start_background_job (both run agy tasks), and between check_job_status and research_status (both poll for status). However, descriptions differentiate them well and the contexts are separate.
Tools follow a consistent snake_case verb_noun pattern (e.g., check_job_status, collect_digests, propose_design_questions). Minor inconsistencies: auto_git_commit uses a prefix, and some verbs are compound (cross_model_review). Overall, the pattern is clear and predictable.
With 13 tools, the server covers a broad domain (git, research, design, code review, background jobs) without being excessive. Each tool earns its place, and the count is appropriate for the advertised capabilities.
The tool surface covers the full lifecycle of research and design pipelines: question proposal, fanout, status polling, collecting digests, and drafting documents. Additionally, git operations, code indexing, and cross-model review are included. No obvious gaps for the intended use case.
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 Connectors
Source-checked CLI guides and model-aware planning for Claude Code, Codex, and Grok Build.
One MCP endpoint for Claude, GPT & Gemini: 100+ tools + no-code connectors + agent workers.
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
- AurentiaOAuthfr.aurentia
Your Aurentia workspace — projects, CRM, tasks, deliverables — in Claude, Cursor or any MCP client.
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
- AlicenseAqualityDmaintenanceWraps Google Antigravity CLI into 11 typed MCP tools, enabling any MCP client to invoke agy for code review, prototyping, execution, and long-running tasks.1120MIT
- AlicenseBqualityAmaintenanceEnables calling Google's Antigravity CLI (agy) headlessly through MCP, providing tools like agy_ask and agy_research for agents like Claude Code.218MIT
- 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.137MIT
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