agy-mcp
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., "@agy-mcpAsk agy to review my refactoring plan"
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.
agy-mcp
An MCP server that lets Claude Code drive agy (Google's Antigravity CLI) as a tool — for a second opinion, or to actually execute a plan.
Why
Claude Code writes the plan; agy (a separate model/agent) either reviews it (agy_ask) or executes it (agy_execute) in its own isolated git worktree. Session state (which agy conversation maps to which of our sessions) is kept in a small SQLite database, so both tools support multi-turn conversations.
Related MCP server: agy MCP Server
Tools
agy_ask(prompt, session_id?, conversation_id?, workspace?)— Read-only. Runsagyin--mode plan(it cannot edit files). Passsession_idto continue a conversation this server started, orconversation_idto adopt an existingagyCLI conversation (e.g. one you started in your own terminal — this does not work for Antigravity IDE conversations, which use a separate store).agy_execute(plan, session_id?, conversation_id?, workspace?)— Handsagyfull write access (--dangerously-skip-permissions) inside a fresh git worktree, never the real working tree. Changes are auto-committed to a branch (agy/<short-id>) so they survive even if the worktree is later removed — unless the pre-commit secret scan blocks it (see below). Disabled unlessAGY_MCP_ALLOW_EXECUTE=1is set in the server's environment.agy_list_sessions()— Lists all known sessions with status, workspace, and worktree path.agy_close_session(session_id, remove_worktree?)— Closes a session. By default the worktree/branch are left on disk for manual review;remove_worktree: truedeletes the worktree (irreversible for anything not committed).
Setup
npm install
npm run buildRegister it with Claude Code (e.g. in ~/.claude.json, alongside your other mcpServers):
"agy-mcp": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/agy_mcp/dist/index.js"],
"env": { "AGY_MCP_ALLOW_EXECUTE": "1" }
}Omit AGY_MCP_ALLOW_EXECUTE to keep agy_execute disabled and only allow agy_ask (read-only).
Safety notes
agy_execute isolates the git working tree (via a worktree) but does not sandbox the filesystem or network — see PILOT_TEST_REPORT.md for the audit that drove the current mitigations:
child process env is allowlisted (
PATH,HOME,TMPDIR,LANG,LC_ALLonly — no inherited secrets)a pre-commit scan blocks commits containing likely secrets (AWS/GitHub/Slack key shapes, private key headers,
.env-style filenames) and leaves the worktree untouched for manual reviewnew-conversation creation is serialized server-wide to avoid a conversation-id race
askandexecutesessions can't be resumed across each othera timed-out
agyprocess (and its subprocess tree) is killed, not left orphaned
None of this replaces running agy_execute in a disposable, credential-free, egress-restricted environment for anything beyond low-stakes local use — see the report's "Conditional pilot controls" for the full checklist.
Requirements
Node.js ≥ 22.5 (uses the built-in
node:sqlite)The
agyCLI onPATH(override withAGY_BIN), already authenticatedGit (for
agy_execute's worktree isolation)
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
- AlicenseAqualityCmaintenanceWraps Google Antigravity CLI into 11 typed MCP tools, enabling any MCP client to invoke agy for code review, prototyping, execution, and long-running tasks.1116MIT
- AlicenseAqualityCmaintenanceEnables Claude to drive the Antigravity agent by running prompts through the agy CLI non-interactively, supporting session management and optional sandboxed execution.51ISC
- AlicenseBqualityAmaintenanceEnables calling Google's Antigravity CLI (agy) headlessly through MCP, providing tools like agy_ask and agy_research for agents like Claude Code.215MIT
- AlicenseAqualityAmaintenanceMCP bridge that lets Claude Code delegate heavy tasks to the Antigravity CLI (agy) — purpose-built tools, model routing with fallback, session continuity, and output truncation to save Claude's context and tokens.468142MIT
Related MCP Connectors
Git-backed platform for skills, tools, and context for AI agents
Git-native policy layer for AI agents: check_action verdicts against rules approved via PR.
Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.
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/eneskavas/agy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server