Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -293,4 +293,8 @@ cython_debug/
.DS_Store

# Smithery
/.smithery
/.smithery

# MCP Registry https://github.com/modelcontextprotocol/registry
.mcpregistry_github_token
.mcpregistry_registry_token
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@browserbasehq/mcp-server-browserbase",
"version": "2.1.0",
"description": "MCP server for AI web browser automation using Browserbase and Stagehand",
"mcpName": "io.github.browserbase/mcp-server-browserbase",
"license": "Apache-2.0",
"author": "Browserbase, Inc. (https://www.browserbase.com/)",
"homepage": "https://www.browserbase.com",
Expand Down
45 changes: 45 additions & 0 deletions server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "io.github.browserbase/mcp-server-browserbase",
"description": "MCP server for AI web browser automation using Browserbase and Stagehand",
"status": "active",
"repository": {
"url": "https://github.com/browserbase/mcp-server-browserbase",
"source": "github"
},
"version": "2.1.0",
"packages": [
{
"registry_type": "npm",
"registry_base_url": "https://registry.npmjs.org",
"identifier": "@browserbasehq/mcp-server-browserbase",
"version": "2.1.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"
}
]
}
]
}