diff --git a/.gitignore b/.gitignore index 15fe3ba..f577ce0 100644 --- a/.gitignore +++ b/.gitignore @@ -293,4 +293,8 @@ cython_debug/ .DS_Store # Smithery -/.smithery \ No newline at end of file +/.smithery + +# MCP Registry https://github.com/modelcontextprotocol/registry +.mcpregistry_github_token +.mcpregistry_registry_token \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 8893d0c..2804db7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @browserbasehq/mcp-server-browserbase +## 2.1.1 + +### Patch Changes + +- adding MCP server to official registry + ## 2.1.0 ### Minor Changes diff --git a/package.json b/package.json index 8dd1068..978df8f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,8 @@ { "name": "@browserbasehq/mcp-server-browserbase", - "version": "2.1.0", + "version": "2.1.1", "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", diff --git a/server.json b/server.json new file mode 100644 index 0000000..bf5b2c2 --- /dev/null +++ b/server.json @@ -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.1", + "packages": [ + { + "registry_type": "npm", + "registry_base_url": "https://registry.npmjs.org", + "identifier": "@browserbasehq/mcp-server-browserbase", + "version": "2.1.1", + "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" + } + ] + } + ] +}