AUTOMATIONSWITCH
VendorDev Tools

Browserbase MCP Server

by Browserbase

Vendor-built Browserbase MCP server combining cloud browser automation (Browserbase) with natural-language-to-action mapping (Stagehand). 6 tools: start, end, navigate, act, observe, extract. Available as a hosted endpoint at https://mcp.browserbase.com/mcp (LLM costs covered for Gemini) or self-hostable via @browserbasehq/mcp.

3,308·6 tools·Released JAN 2025·Apache-2.0
npx mcp-remote https://mcp.browserbase.com/mcp
Share:

Browserbase ships its MCP server as both a hosted service (`mcp.browserbase.com/mcp`) and a self-hosted npm package (`@browserbasehq/mcp`). The hosted version is the recommended path because Browserbase covers the LLM costs for Gemini, the best-performing model in Stagehand evals. The architectural decision: Browserbase runs headless Chrome in their cloud, and Stagehand provides the natural-language-to-browser-action layer (`act`, `observe`, `extract`). The result is an MCP that the agent uses with simple verbs while Browserbase handles the operational complexity of fleet-managed browsers, anti-bot measures, and session state. The trade-off is dependency: every action runs through Browserbase's infrastructure, with the cost and reliability characteristics that come with that. For teams already using Browserbase or Stagehand, the MCP integration is a thin layer over an existing investment. For teams starting fresh, it's worth weighing against running Puppeteer or Playwright locally.

Reviewed by M. Nouriel · MAY 2026

INSTALL THIS SERVER

Requires authenticationHosted: anonymous (Browserbase covers Gemini costs). Self-hosted: BROWSERBASE_API_KEY + BROWSERBASE_PROJECT_ID + GEMINI_API_KEY (or alternative LLM key).
{ "mcpServers": { "browserbase": { "type": "http", "url": "https://mcp.browserbase.com/mcp" } } }
PrereqHosted endpoint at https://mcp.browserbase.com/mcp; Browserbase covers Gemini LLM costs. For self-hosting, swap to: { command: "npx", args: ["@browserbasehq/mcp"], env: { BROWSERBASE_API_KEY, BROWSERBASE_PROJECT_ID, GEMINI_API_KEY } }. Path: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS).
{ "mcpServers": { "browserbase": { "type": "http", "url": "https://mcp.browserbase.com/mcp" } } }
{ "mcpServers": { "browserbase": { "type": "http", "url": "https://mcp.browserbase.com/mcp" } } }
{ "mcpServers": { "browserbase": { "type": "http", "url": "https://mcp.browserbase.com/mcp" } } }
{ "mcpServers": { "browserbase": { "type": "http", "url": "https://mcp.browserbase.com/mcp" } } }

6 TOOLS AVAILABLE

start
Create or reuse a Browserbase session
Write
end
Close the current Browserbase session
Write
navigate
Navigate to a URL
Write
act
Perform an action on the page (Stagehand verb)
Write
observe
Observe actionable elements on the page (Stagehand verb)
Read
extract
Extract data from the page (Stagehand verb)
Read

OUR ASSESSMENT

Strengths
  • Hosted endpoint at https://mcp.browserbase.com/mcp eliminates local browser management; Browserbase covers the Gemini LLM costs for the natural-language layer.
  • Stagehand integration provides high-level verbs (`act`, `observe`, `extract`) so the agent works at the intent layer above raw clicks and selectors.
  • Vendor-built; the same team that operates the Browserbase fleet maintains the server.
  • Self-hosted path available via npm or Docker for teams that need on-prem control.
Weaknesses
  • Hosted endpoint introduces a dependency on Browserbase's infrastructure; outages there affect every team using the recommended path.
  • Self-hosted path requires Browserbase API key, project ID, and a model API key (Gemini, Claude, or other supported LLMs).
  • Stagehand's natural-language layer is opinionated; teams used to selector-based automation may find the verb-level abstraction surprising in edge cases.
Security Notes

The hosted endpoint runs browser sessions inside Browserbase's cloud; data flows through Browserbase's infrastructure with their standard data-handling posture documented in Browserbase's policies. For self-hosted deployments, environment variables hold the Browserbase API key, project ID, and the LLM API key (Gemini by default). Stagehand sends page content to the configured LLM for natural-language reasoning; teams handling sensitive page data should evaluate which LLM endpoint receives that content. The MCP server itself runs in the operator's environment and uses standard MCP transport (SHTTP recommended).

Best For

Teams already running Browserbase or Stagehand, or teams who want fleet-managed cloud browser automation with Browserbase handling the headless Chrome operations.

TECHNICAL DETAILS

Language
typescript
Transport
streamable-httpstdio
Clients
Claude DesktopClaude CodeCursorVS CodeWindsurf
License
Apache-2.0
npm
@browserbasehq/mcp
Last Release
v3.0.0MAR 31, 2026
First Released
JAN 25, 2025

ADOPTION METRICS

// GitHub Stars
3,308

// Reading this3,308 stars on the browserbase/mcp-server-browserbase repo. 0 commits on main in the last 30 days despite recent pushed_at. Watch the default branch directly when re-evaluating.

// Popularity Rank
#11
Globally · #4 in Dev Tools

// Reading thisTop-ranked vendor-built browser automation MCP. The hosted-with-LLM-costs-covered model removes friction for first-time adopters.

SOURCES & VERIFICATION

We don't take any single directory's word for it. Before scoring, we cross-reference 5 public MCP sources, install the server ourselves against the clients we cover, and record when we last re-verified.

01
Discovered
Manual submission
First indexed APR 28, 2026
02
Cross-referenced
5 directories
PulseMCP, MCPMarket, Official MCP Registry, Awesome MCP Servers, Smithery
03
Verified against
Claude Desktop, Cursor, VS Code, Windsurf
Installed and tested across clients
04
Last re-checked
MAY 3, 2026
Weekly re-verification
// How other directories see it

The same server, 5 different lenses. We reconcile these signals into our editorial score, which is why our number sometimes diverges from a directory-aggregate star count.

SourceTheir ratingTheir star countTheir downloadsLast synced
AutomationSwitch This page3.9editorial3,308MAY 3, 2026
PulseMCP— unratedunavailableunavailableAPR 28, 2026
MCPMarket— unratedunavailableunavailableAPR 28, 2026
Official MCP Registry— unratedunavailableunavailableAPR 28, 2026
Awesome MCP Servers— unratedunavailableunavailableAPR 28, 2026
Smithery— unratedunavailableunavailableAPR 28, 2026

// Counts are directory-reported; we don't adjust them. Discrepancies usually come from different snapshot times or star-caching.

OTHER DEV TOOLS MCP SERVERS

Official5

GitHub

GitHub

Official GitHub MCP server. 29,469 stars, MIT, 33 commits on main in the last 30 days. Repo, issue, PR, action, and code search tools backed by the GitHub REST + GraphQL APIs.

24 tools29,469
Official4.7

Playwright

Microsoft

Official Microsoft Playwright MCP server. Browser automation tools (navigate, click, fill, screenshot, evaluate JS, network capture) backed by Playwright. 31,942 stars, 35 commits/30d, Apache-2.0.

11 tools31,942
Official4.7

MCP Registry

Model Context Protocol

The community-driven registry service for MCP servers, maintained by the Model Context Protocol project. Discover, list, and validate MCP servers from inside agents. 6,781 GitHub stars and 65 commits on main in the last 30 days.

5 tools6,781
Official4.6

MCP Inspector

Model Context Protocol

The official MCP debugging and testing tool maintained by the Model Context Protocol project. Visual inspector for MCP servers: invoke tools, inspect transports, validate protocol behaviour during development. 9,647 GitHub stars and 32 commits on main in the last 30 days.

6 tools9,647
Official4.6

XcodeBuild MCP

Sentry (getsentry org)

MCP server and CLI for agent use of Xcode build tools. Build, test, run, and inspect iOS, macOS, watchOS, and visionOS projects from inside agents. 5,429 GitHub stars and 95 commits on main in the last 30 days. Maintained by Sentry.

7 tools5,429
Community4.6

GitLab MCP

zereight

GitLab MCP with 60+ tools covering merge requests, repositories, issues, branches, commits, files, discussions, draft notes, approvals, pipelines, and OAuth multi-user support. 54 commits on main in the last 30 days.

9 tools1,449
// Get in touch

DISCUSS YOUR
MCP REQUIREMENTS.

Evaluating a server, scoping an internal deployment, or working out whether MCP is the right fit at all. Start the conversation and we will point you at the right piece of the ecosystem.

Discuss Your MCP Requirements →