# Browserbase (verified)

Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to interact with web pages, take screenshots, and run parallel sessions in a cloud browser environment.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add browserbase

# Browse available tools
npx -y @smithery/cli@latest tool list browserbase

# Get full schema for a tool
npx -y @smithery/cli@latest tool get browserbase start

# Call a tool
npx -y @smithery/cli@latest tool call browserbase start '{}'
```

## Direct MCP Connection

Endpoint: `https://browserbase.run.tools`

**Required config:**
- `browserbaseApiKey` (query) — Browserbase API Key from https://www.browserbase.com/overview

## Tools (6)

- `start` — Create or reuse a Browserbase session
- `end` — Close the current Browserbase session
- `navigate` — Navigate to a URL
- `act` — Perform an action on the page
- `observe` — Observe actionable elements on the page
- `extract` — Extract data from the page

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get browserbase <tool-name>
```

---

Source: https://github.com/browserbase/mcp-server-browserbase | License: MIT
