Skip to main content
ClaudeWave

Run parallel, resumable, human-operable Antigravity CLI sessions from any MCP agent harness

MCP ServersRegistry oficial10 estrellas2 forksPythonMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/18/2026
Install in Claude Code / Claude Desktop
Method: UVX (Python) · --version
Claude Code CLI
claude mcp add codex-agy-bridge -- uvx --version
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "codex-agy-bridge": {
      "command": "uvx",
      "args": ["--version"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

# codex-agy-bridge

[![CI](https://github.com/varadfromeast/codex-agy-bridge/actions/workflows/ci.yml/badge.svg)](https://github.com/varadfromeast/codex-agy-bridge/actions/workflows/ci.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

Run Antigravity from an agent harness as durable, parallel, human-operable
`agy` sessions over MCP.

<!-- mcp-name: io.github.varadfromeast/codex-agy-bridge -->

`codex-agy-bridge` wraps the official Antigravity CLI with a resumable MCP
control plane. Agent harnesses like Codex, Claude Desktop, or your own
GPT/Claude-powered MCP client can start `agy` runs, wait on sparse events,
attach a real terminal, send guarded input, cancel safely, continue exact
conversations, and collect final results later by `run_id`.

## Quick Install

Prerequisites:

- Codex CLI for the command below, or another local stdio MCP-capable harness
- The official Antigravity CLI (`agy`), already authenticated locally
- `uv` / `uvx`
- `tmux` and a supported terminal launcher:

```bash
# macOS
brew install tmux

# Debian/Ubuntu Linux (x-terminal-emulator is also supported)
sudo apt install tmux gnome-terminal
```

Check the required commands:

```bash
codex --version
agy --version
agy models
uvx --version
tmux -V
```

### Day 0 Authentication

`agy --version` only proves the binary exists. Before adding the MCP server,
run `agy models`; if Antigravity asks you to sign in or reports that you are
not logged in, start a visible session and complete the browser/login flow:

```bash
agy --prompt-interactive "Authenticate Antigravity and then exit."
agy models
```

After `agy models` succeeds, install or restart the MCP server. If a bridge run
still hits auth, `agy_run_start` returns `status="auth_required"` and opens a
visible `agy` authentication session by default. Complete sign-in there, then
start a fresh run. You can also use `agy_run_observe(view="terminal")` or
`agy_admin(action="doctor")` to inspect the auth-required status.

Install from PyPI with the Codex CLI:

```bash
codex mcp add codex-agy-bridge \
  --env AGY_CMD="$(command -v agy)" \
  -- "$(command -v uvx)" codex-agy-bridge@latest
```

Restart the harness, then verify in Codex if you used the command above:

```bash
codex mcp get codex-agy-bridge
codex mcp list
```

Remove it with:

```bash
codex mcp remove codex-agy-bridge
```

For Claude Desktop or a custom MCP client, use the same stdio command shape:
`uvx codex-agy-bridge@latest` with `AGY_CMD` set to the authenticated `agy`
executable.

## What Makes It Different

- **Parallel Antigravity sessions:** launch multiple independent `agy` runs,
  each with its own durable state, logs, transcript projection, and result.
- **Human-operable terminals:** foreground runs live in persistent `tmux`
  sessions, so Terminal.app can attach without killing the agent.
- **Resumable MCP control:** MCP calls can time out, the harness can restart,
  and the run can still be observed later by `run_id`.
- **Goal orchestration:** create a goal, start named targets with bounded
  parallelism, and inspect the whole batch as one coordinated effort.
- **Sparse wake events:** `agy_run_wait` short-polls lifecycle, attention,
  progress, and terminal events without transcript-polling spam.
- **Guarded input:** `agy_run_input` can reject stale writes when event or
  transcript cursors changed after the caller observed the run.
- **Trajectory-aware observability:** bounded transcript summaries and terminal
  evidence are exposed without private model reasoning.
- **Operational hygiene:** duplicate active starts are deduplicated, process
  groups are cancelled safely, and completed result artifacts are preserved.

## Install Details

### If You Are An Agent Reading This

Help the user install it; do not silently mutate their machine.

1. Verify prerequisites first:

```bash
command -v codex
command -v agy
command -v uvx
command -v tmux
agy --version
agy models
```

2. If anything is missing, ask before installing it.
3. If `agy models` reports an auth error, help the user complete the Day 0
   authentication flow above before adding the MCP server.
4. Then run:

```bash
codex mcp add codex-agy-bridge \
  --env AGY_CMD="$(command -v agy)" \
  -- "$(command -v uvx)" codex-agy-bridge@latest
```

5. Verify:

```bash
codex mcp get codex-agy-bridge
codex mcp list
```

6. Tell the user to restart their agent harness so the new MCP tools load.

### PyPI

The Quick Install command stores an stdio MCP server definition. When the agent
harness starts the server, `uvx` resolves `codex-agy-bridge@latest` from PyPI,
installs it into an isolated cached environment, and runs the
`codex-agy-bridge` console script. `AGY_CMD` pins the bridge to the user's
already-installed and authenticated `agy` executable.

Do not replace `$` or `$(...)` manually in the command. In POSIX shells,
`$(command -v agy)` and `$(command -v uvx)` expand to absolute executable
paths.

### GitHub

Use this when you want the repository version directly:

```bash
codex mcp add codex-agy-bridge \
  --env AGY_CMD="$(command -v agy)" \
  -- uvx --from git+https://github.com/varadfromeast/codex-agy-bridge \
  codex-agy-bridge
```

### Local Development

```bash
git clone https://github.com/varadfromeast/codex-agy-bridge.git
cd codex-agy-bridge
uv sync --extra dev

codex mcp add codex-agy-bridge \
  --env AGY_CMD="$(command -v agy)" \
  -- uv --directory "$PWD" run codex-agy-bridge
```

## How It Works

```mermaid
flowchart LR
  H["Agent harness<br/>(Codex, Claude, custom MCP client)"]
  M["codex-agy-bridge<br/>MCP stdio server"]
  S["Durable control plane<br/>runs, goals, events, results"]
  W["Detached run supervisor"]
  A["Antigravity CLI<br/>agy"]
  T["Persistent tmux session<br/>human attach/input"]
  L["Local Antigravity<br/>trajectory files"]

  H <-->|"MCP tools"| M
  M <--> S
  S --> W
  W --> A
  W <--> T
  A --> L
  W -->|"bounded transcript projection"| S
  T -->|"terminal logs and attention prompts"| S
```

The bridge keeps the MCP server responsive while detached supervisors own the
long-running `agy` processes. State and events are persisted locally, so a run
can continue after the original MCP call returns. For the deeper process model,
see [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md). For the MCP control-loop
vision, see [docs/MCP_VISION.md](docs/MCP_VISION.md).

## MCP Tools

| Tool | Purpose |
| --- | --- |
| `agy_run_start` | Start, continue, or open an interactive foreground run |
| `agy_run_wait` | Short-poll until selected runs emit sparse wake events |
| `agy_run_observe` | Read full, status, transcript, or raw terminal views |
| `agy_run_input` | Send input with optional event/transcript preconditions |
| `agy_run_cancel` | Cancel one active run |
| `agy_run_result` | Read final result metadata or bounded result chunks |
| `agy_goal` | Create goals, start targets, and read aggregate status |
| `agy_admin` | Read diagnostics, models, plugins, validation, and changelog |

Omit `model` (or pass `null`) to let Agy choose its default: the bridge stores
`model: null` and does not send `--model`. This applies to runs, review tools,
and goals, whose targets inherit their goal's selection. Explicit selections
are validated against `agy models`, including the bridge's former
`Gemini 3.5 Flash (Medium)` default; unknown and empty selections are rejected.
The bridge never substitutes the first catalog entry. `agy_admin(action="models")`
reports `default_model: null` and `default_model_source: "agy_cli"`; this describes
delegation, not an observed effective provider model.

Existing persisted runs and goals retain their model strings and remain readable.
They are not silently migrated to a different model. New launches from an old
goal revalidate its selection and reject it if it is no longer available; create
a new goal with an available model or omit the selection to delegate to Agy.
Previously reserved runs retain their original command policy. New delegated
requests have distinct deduplication keys from explicitly selected models.
Older bridge versions that require a string goal model cannot read new null-model
goals; avoid downgrading with those goals in use.

Typical flow:

```text
agy_run_start -> agy_run_wait -> agy_run_observe -> agy_run_result
```

In Codex MCP, tools may be exposed with the server prefix, for example
`codex_agy_bridge_agy_run_wait`. Run responses include exact `wait_call`
arguments; note that `agy_run_wait` always takes `run_ids: ["..."]`, even for a
single run. Supported wait conditions are `any_attention`, `any_terminal`,
`all_terminal`, `any_event`, and aliases `attention`, `terminal`, `finished`,
`finish`, `complete`, `completed`, `result`, `all_finished`, `all_complete`, and
`all_completed`.

Use `agy_goal` when the harness should split work into named targets with a
shared objective and bounded parallelism.

## Configuration

| Variable | Default | Purpose |
| --- | --- | --- |
| `AGY_CMD` | `agy` on `PATH` | Exact Antigravity executable |
| `AGY_BRIDGE_STATE_DIR` | `~/.local/state/codex-agy-bridge` | Durable run and goal state |
| `AGY_BRIDGE_AGY_ROOT` | `~/.gemini/antigravity-cli` | Antigravity conversations and trajectories |
| `AGY_BRIDGE_MAX_PARALLEL` | `50` | Global concurrent-run limit |
| `AGY_BRIDGE_COMPLETION_STABILITY_SECONDS` | `150` | Time a final marker must remain stable |
| `AGY_BRIDGE_MCP_WAIT_SLICE_SECONDS` | `120` | Max seconds a single `agy_run_wait` MCP call blocks before returning a snapshot so gateways do not time out |

Run state survives MCP server restarts under
`~/.local/state/codex-agy-bridge/`.

## Status And Risk

This project is experimental. It currently targets Python 3.11+, macOS or
Linux with a supported terminal launcher, `tmux`, and Antigravity CLI
1.0.8-compatible commands and trajectory files.

Antigravity is an agentic CLI. It can read and write files, execute commands,
and access the network with the current user's privileges. This bridge is not a
sand
ai-agentsantigravitycodexmcppython

Lo que la gente pregunta sobre codex-agy-bridge

¿Qué es varadfromeast/codex-agy-bridge?

+

varadfromeast/codex-agy-bridge es mcp servers para el ecosistema de Claude AI. Run parallel, resumable, human-operable Antigravity CLI sessions from any MCP agent harness Tiene 10 estrellas en GitHub y su última actualización registrada es del 2026-09-17.

¿Cómo se instala codex-agy-bridge?

+

Puedes instalar codex-agy-bridge clonando el repositorio (https://github.com/varadfromeast/codex-agy-bridge) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar varadfromeast/codex-agy-bridge?

+

Nuestro agente de seguridad ha analizado varadfromeast/codex-agy-bridge y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene varadfromeast/codex-agy-bridge?

+

varadfromeast/codex-agy-bridge es mantenido por varadfromeast. La última actividad registrada en GitHub es del 2026-09-17, con 0 issues abiertos.

¿Hay alternativas a codex-agy-bridge?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega codex-agy-bridge en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: varadfromeast/codex-agy-bridge
[![Featured on ClaudeWave](https://claudewave.com/api/badge/varadfromeast-codex-agy-bridge)](https://claudewave.com/repo/varadfromeast-codex-agy-bridge)
<a href="https://claudewave.com/repo/varadfromeast-codex-agy-bridge"><img src="https://claudewave.com/api/badge/varadfromeast-codex-agy-bridge" alt="Featured on ClaudeWave: varadfromeast/codex-agy-bridge" width="320" height="64" /></a>

Más MCP Servers

Alternativas a codex-agy-bridge