Skip to content
VS Code

Antigravity Link for VS Code

io.github.cafetechne/antigravity-link

MCP server and OpenAPI-backed mobile companion for controlling Antigravity IDE sessions

client:VS Code transport:stdio runtime:npm

Install Antigravity Link in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ag-bridge-url",
      "description": "AG_BRIDGE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ag-bridge-token",
      "description": "AG_BRIDGE_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "antigravity-link": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "antigravity-link-extension"
      ],
      "env": {
        "AG_BRIDGE_URL": "${input:ag-bridge-url}",
        "AG_BRIDGE_TOKEN": "${input:ag-bridge-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Antigravity Link in other clients