Skip to content

Antigravity supports the Model Context Protocol (MCP), an open standard that lets AI agents and editors securely connect to local developer tools, databases, file parsers, and external remote APIs. This integration provides the AI model with real-time context and execution capabilities beyond your immediate workspace.

In this guide, you’ll learn how to connect and configure MCP servers across Antigravity products. You can also skip to information for MCP servers in Antigravity 2.0, Antigravity IDE, Antigravity CLI, or Antigravity SDK.

MCP acts as a universal bridge between Antigravity and your broader development environment. Instead of manually copying and pasting database schemas, logs, or API specifications into prompts or chat panels, MCP lets Antigravity fetch structured context directly or execute safe actions on your behalf when needed.

With MCP, Antigravity can use live data from connected MCP servers to inform its reasoning and suggestions:

  • When writing a SQL query, Antigravity can inspect your live Neon, Supabase, or AlloyDB schema to suggest correct table and column names.
  • When debugging deployment failures, Antigravity can pull recent build logs directly from Netlify or Heroku.

With MCP, Antigravity can execute specific, safe actions defined by your connected servers:

  • Create a Linear issue for this TODO.
  • Search Notion or GitHub for authentication patterns.

In Antigravity 2.0, you can manage your MCP servers through the Installed MCP Servers section of your Settings.

To view and update your MCP servers:

  1. Click the Settings button found on the bottom left of your screen.
  2. Select Customizations and review the Installed MCP Servers section.

To install an MCP server from the Installed MCP Servers section:

  1. Click Add MCP. This will connect you to the MCP Store, a searchable list of available MCP servers.
  2. Search or scroll down to an MCP server you’d like to install.
  3. Click Add.

To manage your MCP servers from this screen:

  • Uninstall: Click the trash can icon next to the MCP server in the list.
  • Disable/enable: Click the toggle switch next to the MCP server in the list.
  • Refresh: Click the refresh button.

In Antigravity IDE, the easiest way to manage MCP servers is through the built-in MCP Store. In the MCP Store, you can browse, discover, and install supported MCP servers. You can also install custom servers by updating your mcp_config.json.

To use the MCP Store:

  1. Click at the top of the editor’s agent side panel and select MCP Servers.
  2. Hover over any supported server and click Install. (Or, click a server to view details and then click Install.)
  3. Follow any on-screen prompts.

Once installed, resources and tools from the server are automatically available to the editor.

To connect to a custom MCP server not listed in the store:

  1. Click at the top of the editor’s agent side panel and select MCP Servers.
  2. Click Manage MCP Servers.
  3. Click View raw config.
  4. Modify the mcp_config.json file with your custom MCP server configuration.

The configuration file is located globally at ~/.gemini/config/mcp_config.json (or locally in your workspace under .agents/mcp_config.json).

Antigravity CLI supports both local stdio processes and remote host MCP server configurations. The simplest path to installing an MCP server on Antigravity CLI is by using the Interactive MCP Manager. You can also manually edit your global server setup or workspace-level mcp_config.json.

Type /mcp inside the prompt panel and press Enter to open the interactive MCP Manager Overlay. This panel lets you:

  • View live status rings for active, disconnected, or loading servers.
  • Manually reload server configurations or inspect real-time connection logs.

Unlike legacy setups, Antigravity CLI separates MCP definitions into dedicated, sparse configurations:

  • Global server setups: Configured in ~/.gemini/config/mcp_config.json.
  • Workspace local setups: Configured in your active project under .agents/mcp_config.json.

You can modify these files directly with your custom MCP server configuration.

In Python applications built using the Antigravity SDK, MCP servers (stdio, SSE, or HTTP) can be connected programmatically under a unified execution pipeline alongside built-in tools and custom Python functions.

The SDK automatically discovers servers configured in your workspace’s .agents/mcp_config.json file. You can also instantiate agents with local configurations directly:

import asyncio
from google.antigravity import Agent, LocalAgentConfig

Whether configuring custom servers for Antigravity 2.0, Antigravity IDE, or Antigravity CLI, the configuration file follows a standardized format. The file contains a single mcpServers object where you define each server you want to connect to:

{
  "mcpServers": {
    "sqlite-explorer": {
      "command": "node",
      "args": ["/usr/local/bin/sqlite-mcp-server.js"],
      "env": {
        "SQLITE_DB_PATH": "/var/data/app.db"
      }
    },
    "my-remote-server": {
      "serverUrl": "https://api.example.com/mcp/",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Each server entry under mcpServers supports the following properties:

Transport (one required):

  • command (string): Path to the executable for stdio transport.
  • serverUrl (string): URL for remote Streamable HTTP or SSE servers.

Optional:

  • args (string[]): Command-line arguments for stdio transport.
  • env (object): Environment variables for the stdio server process.
  • cwd (string): Working directory for stdio servers.
  • headers (object): Custom HTTP headers for remote servers.
  • authProviderType (string): Authentication provider. Supports "google_credentials" for Google Application Default Credentials (ADC).
  • oauth (object): OAuth client credentials (clientId, clientSecret).
  • disabled (boolean): Temporarily disable a server without removing its configuration.
  • disabledTools (string[]): Tool names to withhold from the model.

Connected MCP servers can securely authenticate against external services using built-in Google credentials, automatic OAuth flows, or custom HTTP headers.

Set authProviderType to "google_credentials" to use Google Application Default Credentials (ADC).

{
  "mcpServers": {
    "my-gcp-service": {
      "serverUrl": "https://example.googleapis.com/mcp/",
      "authProviderType": "google_credentials"
    }
  }
}

This requires Application Default Credentials to be configured locally. To set them up, run:

gcloud auth application-default login

If you previously logged in, ensure your quota project is set by running:

gcloud auth application-default set-quota-project {QUOTA_PROJECT}

Antigravity can automatically handle OAuth for servers that support dynamic client registration (DCR). For these servers, no additional configuration is needed:

{
  "mcpServers": {
    "oauth-server": {
      "serverUrl": "https://api.example.com/mcp/"
    }
  }
}

If the server does not support dynamic client registration, you can provide your client credentials manually:

{
  "mcpServers": {
    "oauth-server": {
      "serverUrl": "https://api.example.com/mcp/",
      "oauth": {
        "clientId": "your-client-id",
        "clientSecret": "your-client-secret"
      }
    }
  }
}

If you provided client credentials manually, ensure the following is registered as a redirect URI in your OAuth provider:

https://antigravity.google/oauth-callback

When connecting to an OAuth-enabled server:

  1. Open Agent Settings with Cmd+, (Mac) or Ctrl+, (Windows/Linux).

  2. Navigate to the Customizations tab and click the Authenticate button next to the server.

    Click Authenticate

  3. Complete authentication in your browser and copy the authorization code.

    Copy authorization code

  4. Paste the code back into the settings panel and click Submit.

    Paste auth code

Once authenticated, the server will reconnect automatically.

Authenticated server

Access tokens are stored in ~/.gemini/antigravity/mcp_oauth_tokens.json. Expired tokens are refreshed automatically, and invalid tokens are removed.

For remote servers that require custom HTTP headers (e.g. API keys or bearer tokens), add them to the headers object. For example:

{
  "mcpServers": {
    "my-remote-server": {
      "serverUrl": "https://api.example.com/mcp/",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Access to Model Context Protocol tools and resources is governed by Antigravity’s permissions system. By default, unconfigured MCP tools run in Ask mode, requiring your approval before execution. You can allow specific tools or entire servers in your policy configuration:

  • mcp(server/tool): Matches a specific tool on a specific server.
  • mcp(server/*): Matches all tools on a specified server.
  • mcp(*): Global wildcard matching any MCP tool across all connected servers.

The MCP Store features direct integrations for a wide variety of developer platforms, databases, and productivity services:

Databases & Storage (14 servers)
  • AlloyDB for PostgreSQL
  • BigQuery
  • Bigtable Admin remote MCP
  • ClickHouse
  • Cloud SQL (MySQL, PostgreSQL, SQL Server, Managed)
  • Dataplex
  • MCP Toolbox for Databases
  • MongoDB
  • Neon
  • Pinecone
  • Prisma
  • Redis
  • Spanner
  • Supabase
Developer Tools & CI/CD (11 servers)
  • Apigee MCP
  • Atlassian
  • GitHub
  • GitLab Orbit
  • GKE OneMCP
  • Harness
  • Heroku
  • Linear
  • Netlify
  • Postman
  • SonarQube
Frontend & Design (6 servers)
  • Chrome DevTools
  • Dart
  • Figma Dev Mode MCP
  • Locofy
  • Lovable MCP
  • Mobbin MCP
Analytics, AI & Cloud (13 servers)
  • Airweave
  • Antimetal
  • Arize
  • Firebase
  • Google Cloud Quotas
  • Looker
  • Notion
  • PayPal
  • Perplexity Ask
  • PostHog
  • Sequential Thinking
  • Stripe
  • Windsor AI