Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Browserbase
chrome

Browserbase MCP Server

Official Browserbase MCP server with Stagehand

browserbasestagehandbrowserautomationscraping

About

## Browserbase MCP Server: Cloud Browser Infrastructure The **Browserbase MCP Server** integrates cloud browser infrastructure into Google Antigravity, enabling developers to run headless browsers at scale for web scraping, testing, and automation without managing browser instances. ### Why Browserbase MCP? - **Cloud browsers** - Managed headless browser instances - **Scalable** - Run hundreds of browsers in parallel - **Anti-detection** - Built-in fingerprint protection - **Session management** - Persistent browser sessions - **Debugging** - Live browser debugging and recording ### Key Features #### 1. Browser Sessions ```python # Create browser session session = await mcp.call("browserbase", "create_session", { "project_id": "proj_xxx", "browser": "chromium", "proxy": True }) print(f"Session ID: {session[\"id\"]}") print(f"WebSocket URL: {session[\"ws_url\"]}") ``` #### 2. Page Navigation ```python # Navigate to URL page = await mcp.call("browserbase", "navigate", { "session_id": session["id"], "url": "https://example.com" }) # Get page content content = await mcp.call("browserbase", "get_content", { "session_id": session["id"] }) print(f"Title: {content[\"title\"]}") ``` #### 3. Element Interaction ```python # Click element await mcp.call("browserbase", "click", { "session_id": session["id"], "selector": "button.submit" }) # Type text await mcp.call("browserbase", "type", { "session_id": session["id"], "selector": "input[name=email]", "text": "user@example.com" }) ``` #### 4. Session Recording ```python # Get session recording recording = await mcp.call("browserbase", "get_recording", { "session_id": session["id"] }) print(f"Recording URL: {recording[\"url\"]}") # Get session logs logs = await mcp.call("browserbase", "get_logs", { "session_id": session["id"] }) ``` ### Configuration ```json { "mcpServers": { "browserbase": { "command": "npx", "args": ["-y", "@anthropic/mcp-browserbase"], "env": { "BROWSERBASE_API_KEY": "your-api-key", "BROWSERBASE_PROJECT_ID": "proj_xxx" } } } } ``` ### Use Cases **Web Scraping**: Scale data extraction from websites. **E2E Testing**: Run browser tests in the cloud. **Automation**: Automate web workflows reliably. **Monitoring**: Monitor websites for changes. The Browserbase MCP Server enables cloud browser automation.

Installation

Configuration
{
  "mcpServers": {
    "browserbase": {
      "mcpServers": {
        "browserbase": {
          "env": {
            "BROWSERBASE_API_KEY": "YOUR_BROWSERBASE_API_KEY",
            "BROWSERBASE_PROJECT_ID": "YOUR_PROJECT_ID"
          },
          "args": [
            "-y",
            "@browserbasehq/mcp-server-browserbase"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Get API key and project ID from Browserbase
  2. 22. Powered by Stagehand v3.0
  3. 33. Natural language browser control

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers