Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

This server provides cloud browser automation capabilities using [Browserbase](https://www.browserbase.com/) and [Stagehand](https://github.com/browserbase/stagehand). It enables LLMs to interact with web pages, extract information, and perform automated actions.

This is a self-hostable version of the [Browserbase hosted MCP server](https://mcp.browserbase.com/mcp) with the same tools and functionality. **We recommend using the hosted version for the easiest setup.**
> **Use the hosted server.** This repository is the open-source **reference implementation**. The recommended, fully supported way to use the Browserbase MCP server is the hosted endpoint at **[`https://mcp.browserbase.com/mcp`](https://mcp.browserbase.com/mcp)** — we run it for you and cover the LLM costs. **Self-hosting is not officially supported.** The setup instructions below are provided for reference only.

## Tools

Expand Down
6 changes: 3 additions & 3 deletions gemini-extension.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "mcp-server-browserbase",
"version": "2.4.1",
"version": "3.0.0",
"description": "AI web browser automation via the hosted Browserbase MCP server (Browserbase + Stagehand).",
"mcpServers": {
"mcp-server-browserbase": {
"command": "npx",
"args": ["@browserbasehq/mcp"]
"httpUrl": "https://mcp.browserbase.com/mcp"
}
}
}
68 changes: 4 additions & 64 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,71 +7,11 @@
"url": "https://github.com/browserbase/mcp-server-browserbase",
"source": "github"
},
"version": "2.2.0",
"packages": [
"version": "3.0.0",
"remotes": [
{
"registry_type": "npm",
"registry_base_url": "https://registry.npmjs.org",
"identifier": "@browserbasehq/mcp",
"version": "2.2.0",
"transport": {
"type": "stdio"
},
"environment_variables": [
{
"description": "Your Browserbase API key",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "BROWSERBASE_API_KEY"
},
{
"description": "Your Browserbase Project ID",
"is_required": true,
"format": "string",
"is_secret": false,
"name": "BROWSERBASE_PROJECT_ID"
},
{
"description": "Your Gemini API key (default model)",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "GEMINI_API_KEY"
}
]
},
{
"registry_type": "oci",
"identifier": "browserbasehq/mcp-server-browserbase",
"version": "2.2.0",
"runtime_hint": "docker",
"environment_variables": [
{
"description": "Your Browserbase API key",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "BROWSERBASE_API_KEY"
},
{
"description": "Your Browserbase Project ID",
"is_required": true,
"format": "string",
"is_secret": false,
"name": "BROWSERBASE_PROJECT_ID"
},
{
"description": "Your Gemini API key (default model)",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "GEMINI_API_KEY"
}
],
"transport": {
"type": "stdio"
}
"type": "streamable-http",
"url": "https://mcp.browserbase.com/mcp"
}
]
}
Loading