MCP server exposing Google Antigravity (agy CLI / Gemini): jobs, codebase analysis, file tools.
MCP server exposing Google Antigravity (agy CLI / Gemini): jobs, codebase analysis, file tools. That is what the mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
The idea: your primary model (Claude Desktop, Claude Code, Codex, …) stays lean and delegates the grunt work — web search, whole-repo analysis, scaffolding files, long-running edits — to a second agent running in the background. Jobs are async and unlimited: you fire a task, get a jobId instantly, and poll for the result while the caller keeps working.
The server publishes 14 tools. What each one is for:
use_antigravity — Delegate a task (async). Returns a jobId immediately. Params: prompt, thinking_depth (low/high), add_dirs (folders agy may read/write), auto_approveantigravity_continue — Continue the previous conversation (or a specific conversation_id) with a new promptantigravity_result — Get a job's result by jobId. Supports long-polling via optional wait_ms and poll_interval_ms. While running, returns a lean payload ({ status, jobIdantigravity_jobs — List recent jobs and statusesantigravity_cancel — Kill a running job by jobIdantigravity_cleanup — Delete old job files by age (older_than_hours)antigravity_create_folder — Create a folder (recursive), done directly by the serverantigravity_create_file — Create/write a text file (creates parent dirs); overwrite:false to protect existingantigravity_create_tree — Build a whole folder/file tree from a JSON specantigravity_read_file — Read a UTF-8 text file (instant); optional max_bytes capantigravity_list_dir — List a folder's entriesantigravity_models — List available models (agy models)Configuration is passed through the environment: AGY_MODEL, AGY_AUTO_APPROVE. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
| Need | Why | |------|-----| | Node.js 18+ | Runs this server (ships with npx/npm). Check: node --version | | Antigravity CLI (agy) | The agent this server drives. Install below. | | An MCP client | Claude Desktop, Claude Code, or anything that speaks MCP | ---
mcp-server-google-antigravity on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.
This sits in the planning and project tracking group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP's toolset — use_antigravity, antigravity_continue, antigravity_result and 11 more — is a fair guide to whether it matches your workflow. It is maintained by TurkerYakup; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| use_antigravity | Delegate a task (async). Returns a jobId immediately. Params: prompt, thinking_depth (low/high), add_dirs (folders agy may read/write), auto_approve, new_project, model, mode (plan/accept-edits), agent, project, sandbox, |
| antigravity_continue | Continue the previous conversation (or a specific conversation_id) with a new prompt. |
| antigravity_result | Get a job's result by jobId. Supports long-polling via optional wait_ms and poll_interval_ms. While running, returns a lean payload ({ status, jobId, chars, tail, startedAt }). On done/error, returns full record (includi |
| antigravity_jobs | List recent jobs and statuses. |
| antigravity_cancel | Kill a running job by jobId. |
| antigravity_cleanup | Delete old job files by age (older_than_hours). |
| antigravity_create_folder | Create a folder (recursive), done directly by the server. |
| antigravity_create_file | Create/write a text file (creates parent dirs); overwrite:false to protect existing. |
| antigravity_create_tree | Build a whole folder/file tree from a JSON spec. |
| antigravity_read_file | Read a UTF-8 text file (instant); optional max_bytes cap. |
| antigravity_list_dir | List a folder's entries. |
| antigravity_models | List available models (agy models). |
| antigravity_agents | List available agent profiles (agy agents). |
| antigravity_health | Check that agy is reachable + report effective defaults. **Run this first when something's off.** |
{
"mcpServers": {
"google-antigravity": {
"command": "npx",
"args": ["-y", "mcp-server-google-antigravity"],
"env": {
"AGY_MODEL": "your-value",
"AGY_AUTO_APPROVE": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Need | Why | |------|-----| | Node.js 18+ | Runs this server (ships with npx/npm). Check: node --version | | Antigravity CLI (agy) | The agent this server drives. Install below. | | An MCP client | Claude Desktop, Claude Code, or anything that speaks MCP | ---
| Variable | Description | Required |
|---|---|---|
| AGY_MODEL | Configuration value read at startup. | Optional |
| AGY_AUTO_APPROVE | Configuration value read at startup. | Optional |
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Search and read your Drive — Docs, Sheets and files become context your assistant can actually use.
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Stop letting your assistant hallucinate n8n node parameters — this server hands it the real schemas, templates and validation.