MCP Hub
Back to servers

MCP Antigravity Bridge

Enables OpenClaw agents to delegate complex coding tasks to the Antigravity VS Code environment via a filesystem-based mailbox system. It provides tools to submit tasks, monitor execution status, and retrieve results directly within the development workflow.

glama
Updated
Mar 8, 2026

MCP Antigravity Bridge 🦞🚀

Bridge between OpenClaw and Antigravity — let your OpenClaw agents delegate complex coding tasks to Antigravity.

Architecture

┌─────────────┐     MCP      ┌──────────────────┐    filesystem    ┌─────────────────────┐
│  OpenClaw   │ ──────────→ │  MCP Server      │ ──────────────→ │  VS Code Extension  │
│  (Discord)  │              │                  │  ~/antigravity-  │  (Antigravity)      │
│             │ ←────────── │  send_task        │  tasks/          │                     │
│             │   results    │  get_result       │ ←────────────── │  • file watcher     │
└─────────────┘              │  list_pending     │   completed/     │  • auto-execute     │
                             └──────────────────┘                  │  • write results    │
                                                                   └─────────────────────┘

Packages

PackageDescription
packages/mcp-serverMCP Server exposing task management tools to OpenClaw
packages/vscode-extensionVS Code extension that auto-executes tasks inside Antigravity

Quick Start

1. Install dependencies

npm install

2. Build

npm run build

3. Configure OpenClaw

Add to ~/.openclaw/openclaw.json:

{
  "mcpServers": {
    "antigravity-bridge": {
      "command": "node",
      "args": ["/path/to/mcp-antigravity-bridge/packages/mcp-server/dist/index.js"]
    }
  }
}

4. Install the VS Code Extension

cd packages/vscode-extension
npm run package
antigravity --install-extension ./antigravity-bridge-0.1.0.vsix

MCP Tools

ToolDescription
send_taskSubmit a coding task for Antigravity to execute
get_resultCheck the status and retrieve results of a task
list_pendingList all pending tasks in the queue

Communication

Tasks are exchanged via a file-system mailbox at ~/antigravity-tasks/:

~/antigravity-tasks/
├── pending/      # New tasks waiting to be picked up
├── in-progress/  # Tasks currently being executed
├── completed/    # Finished tasks with results
└── failed/       # Failed tasks with error details

License

MIT

Reviews

No reviews yet

Sign in to write a review