Community MCP server for Browserbase cloud browser infrastructure. Agents can create browser sessions, navigate and interact with web pages, take screenshots, manage cookies and sessions, and use stealth mode to avoid bot detection. Eliminates the need to run local browsers. Ideal for web scraping, automated testing, and browser automation at scale.
npx -y browserbase-mcp
{
"mcpServers": {
"browserbase": {
"env": {
"BROWSERBASE_API_KEY": "your-api-key",
"BROWSERBASE_PROJECT_ID": "your-project-id"
},
"args": [
"-y",
"browserbase-mcp"
],
"command": "npx"
}
}
}Create Browserbase session
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
}
}
}// Input
{
"url": "https://example.com"
}// Output
{
"debug_url": "https://browserbase.com/sessions/s1",
"session_id": "s1"
}Take browser screenshot
{
"type": "object",
"required": [
"session_id"
],
"properties": {
"selector": {
"type": "string"
},
"session_id": {
"type": "string"
}
}
}// Input
{
"selector": "body",
"session_id": "s1"
}// Output
{
"url": "https://browserbase.com/screenshots/abc.png"
}Community MCP server for Browserbase cloud browser infrastructure. Agents can create browser sessions, navigate and interact with web pages, take screenshots, manage cookies and sessions, and use stealth mode to avoid bot detection. Eliminates the need to run local browsers. Ideal for web scraping, automated testing, and browser automation at scale.
Browserbase provides 2 tools including create_session, take_screenshot.
Browserbase offers a free tier with 100 calls per month. For higher usage, paid plans start at €0/month.
You can install Browserbase using the following command: npx -y browserbase-mcp. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
Browserbase is listed under the Development Tools category in the AgentForge MCP registry.
Browserbase has a current uptime of 99.78% with an average response time of 650ms.
To connect Browserbase, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Browserbase's tools via the Model Context Protocol.