Antigravity Link Mobile
Antigravity Link is an MCP server and mobile companion for Google's Antigravity IDE. It captures live snapshots of the Antigravity chat UI via Chrome DevTools Protocol and serves them to a mobile web client. From your phone you can send messages, upl
What is Antigravity Link Mobile?
Antigravity Link Mobile is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to antigravity link is an mcp server and mobile companion for google's antigravity ide. it captures live snapshots of the antigravity chat ui via chrome devtools protocol and serves them to a mobile web ...
Antigravity Link is an MCP server and mobile companion for Google's Antigravity IDE. It captures live snapshots of the Antigravity chat UI via Chrome DevTools Protocol and serves them to a mobile web client. From your phone you can send messages, upl
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- Antigravity Link is an MCP server and mobile companion for G
Use Cases
Maintainer
Works with
Installation
NPM
npx -y antigravity-link-extensionManual Installation
npx -y antigravity-link-extensionConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Antigravity Link Mobile
Antigravity Link is an MCP server and mobile companion for Google's Antigravity IDE that captures live snapshots of the Antigravity chat UI via Chrome DevTools Protocol and serves them to a mobile web client over a locally-hosted HTTPS bridge. It exposes 9 MCP tools — including get_snapshot, send_message, stop_generation, switch_instance, and click_element — plus a full OpenAPI-compatible REST interface secured by a bearer token. Developers use it to remotely monitor and drive long-running AI coding sessions from a phone without being tied to their workstation.
Prerequisites
- Google Antigravity IDE installed
- Node.js 16 or higher installed
- Antigravity IDE launched with '--remote-debugging-port=9000' flag
- An MCP client such as Claude Desktop
- Mobile device on the same local network
Launch Antigravity IDE with remote debugging
The Chrome DevTools Protocol connection requires Antigravity IDE to be started with the remote debugging port flag enabled.
antigravity-ide --remote-debugging-port=9000Install and start the Antigravity Link server
Run the server via npx. It starts a local HTTPS bridge server on port 3000 by default and prints a QR code with the mobile URL and bearer token.
npx -y antigravity-link-extensionNote your bearer token
When the server starts, it displays a token (also encoded in the QR code). Copy this token — you will need it in the MCP client config as AG_BRIDGE_TOKEN and for direct API calls.
Configure Claude Desktop
Add the server to claude_desktop_config.json. Set AG_BRIDGE_URL to the local HTTPS address and AG_BRIDGE_TOKEN to the token from the previous step.
{
"mcpServers": {
"antigravity-link": {
"command": "npx",
"args": ["-y", "antigravity-link-extension"],
"env": {
"AG_BRIDGE_URL": "https://localhost:3000",
"AG_BRIDGE_TOKEN": "<your-bridge-token>"
}
}
}
}Connect from your mobile device
Scan the QR code with your phone's camera. Your mobile browser will open the Selene web client connected to your live Antigravity session.
Antigravity Link Mobile Examples
Client configuration
Claude Desktop configuration for Antigravity Link using the npm package antigravity-link-extension.
{
"mcpServers": {
"antigravity-link": {
"command": "npx",
"args": ["-y", "antigravity-link-extension"],
"env": {
"AG_BRIDGE_URL": "https://localhost:3000",
"AG_BRIDGE_TOKEN": "your_bridge_token_here"
}
}
}
}Prompts to try
Example MCP-based prompts and direct API calls for controlling Antigravity IDE remotely.
- "Get a snapshot of the current Antigravity IDE session"
- "Send 'Refactor the authentication module for readability' to Antigravity"
- "Stop the current AI generation in my Antigravity window"
- "List all open Antigravity IDE instances"
- "Switch to Antigravity window instance 2"
- "Click the element with selector '#run-button' in Antigravity"Troubleshooting Antigravity Link Mobile
Bridge server cannot reach Antigravity via CDP
Confirm Antigravity IDE is running with '--remote-debugging-port=9000'. Test with 'curl http://localhost:9000/json/version'. If the port is in use by another process, kill it or choose a different port and update the launch flag accordingly.
Mobile browser shows certificate error when scanning QR code
The HTTPS server uses a self-signed certificate. On your mobile browser, navigate to the URL shown in the QR code, tap 'Advanced', and accept the security exception. Alternatively set antigravityLink.useHttps to false if microphone access is not needed.
Bearer token authentication fails with 401
Copy the token exactly as displayed when the server started — it is case-sensitive and may contain special characters. Set it as AG_BRIDGE_TOKEN in your MCP config or pass it in the Authorization header as 'Bearer <token>' for direct API calls.
Frequently Asked Questions about Antigravity Link Mobile
What is Antigravity Link Mobile?
Antigravity Link Mobile is a Model Context Protocol (MCP) server that antigravity link is an mcp server and mobile companion for google's antigravity ide. it captures live snapshots of the antigravity chat ui via chrome devtools protocol and serves them to a mobile web client. from your phone you can send messages, upl It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Antigravity Link Mobile?
Install via npm with the command: npx -y antigravity-link-extension. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).
Which AI clients work with Antigravity Link Mobile?
Antigravity Link Mobile works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Antigravity Link Mobile free to use?
Yes, Antigravity Link Mobile is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.
Antigravity Link Mobile Alternatives — Similar Developer Tools Servers
Looking for alternatives to Antigravity Link Mobile? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Antigravity Link Mobile in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Antigravity Link Mobile?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.