Prepare the server locally
Run this once before adding it to Claude Code.
npm install
npm run buildRegister it in Claude Code
claude mcp add antigravity-bridge -- node /path/to/mcp-antigravity-bridge/packages/mcp-server/dist/index.jsReplace any placeholder paths in the command with the real path on your machine.
Make your agent remember this setup
antigravity-bridge's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.
npx conare@latestFree · one command · indexes the sessions already on disk. Set up in the browser instead →
What it does
- Delegates complex coding tasks from OpenClaw to Antigravity
- Uses a filesystem-based mailbox for task communication
- Supports task submission, status monitoring, and result retrieval
- Integrates with VS Code via a dedicated extension
Tools 3
send_taskSubmit a coding task for Antigravity to executeget_resultCheck the status and retrieve results of a tasklist_pendingList all pending tasks in the queueTry it
Original README from cyq1017/mcp-antigravity-bridge
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
| Package | Description |
|---|---|
| `packages/mcp-server` | MCP Server exposing task management tools to OpenClaw |
| `packages/vscode-extension` | VS 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
| Tool | Description |
|---|---|
send_task |
Submit a coding task for Antigravity to execute |
get_result |
Check the status and retrieve results of a task |
list_pending |
List 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