Skip to content

Commit e567228

Browse files
authored
chore: Adding Browserbase MCP to the official registry (#116)
* waiting for org posts to be enabled * versioning + changesets for mcp registry * update server version in server.json
1 parent 81377bb commit e567228

File tree

4 files changed

+58
-2
lines changed

4 files changed

+58
-2
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,4 +293,8 @@ cython_debug/
293293
.DS_Store
294294

295295
# Smithery
296-
/.smithery
296+
/.smithery
297+
298+
# MCP Registry https://github.com/modelcontextprotocol/registry
299+
.mcpregistry_github_token
300+
.mcpregistry_registry_token

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @browserbasehq/mcp-server-browserbase
22

3+
## 2.1.1
4+
5+
### Patch Changes
6+
7+
- adding MCP server to official registry
8+
39
## 2.1.0
410

511
### Minor Changes

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "@browserbasehq/mcp-server-browserbase",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "MCP server for AI web browser automation using Browserbase and Stagehand",
5+
"mcpName": "io.github.browserbase/mcp-server-browserbase",
56
"license": "Apache-2.0",
67
"author": "Browserbase, Inc. (https://www.browserbase.com/)",
78
"homepage": "https://www.browserbase.com",

server.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
3+
"name": "io.github.browserbase/mcp-server-browserbase",
4+
"description": "MCP server for AI web browser automation using Browserbase and Stagehand",
5+
"status": "active",
6+
"repository": {
7+
"url": "https://github.com/browserbase/mcp-server-browserbase",
8+
"source": "github"
9+
},
10+
"version": "2.1.1",
11+
"packages": [
12+
{
13+
"registry_type": "npm",
14+
"registry_base_url": "https://registry.npmjs.org",
15+
"identifier": "@browserbasehq/mcp-server-browserbase",
16+
"version": "2.1.1",
17+
"transport": {
18+
"type": "stdio"
19+
},
20+
"environment_variables": [
21+
{
22+
"description": "Your Browserbase API key",
23+
"is_required": true,
24+
"format": "string",
25+
"is_secret": true,
26+
"name": "BROWSERBASE_API_KEY"
27+
},
28+
{
29+
"description": "Your Browserbase Project ID",
30+
"is_required": true,
31+
"format": "string",
32+
"is_secret": false,
33+
"name": "BROWSERBASE_PROJECT_ID"
34+
},
35+
{
36+
"description": "Your Gemini API key (default model)",
37+
"is_required": true,
38+
"format": "string",
39+
"is_secret": true,
40+
"name": "GEMINI_API_KEY"
41+
}
42+
]
43+
}
44+
]
45+
}

0 commit comments

Comments
 (0)