|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.browserbase-mcp-npx", |
| 4 | + "name": "Browserbase (npx)", |
| 5 | + "alias": "browserbase", |
| 6 | + "description": "Cloud browser automation using Browserbase and Stagehand. Navigate, click, extract data, and take screenshots in cloud-hosted browsers.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/158221360?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": [ |
| 10 | + "developer-tools", |
| 11 | + "cloud" |
| 12 | + ], |
| 13 | + "tags": [ |
| 14 | + "browserbase", |
| 15 | + "browser", |
| 16 | + "automation", |
| 17 | + "stagehand", |
| 18 | + "scraping", |
| 19 | + "testing" |
| 20 | + ], |
| 21 | + "transport": { |
| 22 | + "type": "stdio", |
| 23 | + "command": "npx", |
| 24 | + "args": [ |
| 25 | + "-y", |
| 26 | + "@browserbasehq/mcp-server-browserbase" |
| 27 | + ], |
| 28 | + "env": { |
| 29 | + "BROWSERBASE_API_KEY": "${input:BROWSERBASE_API_KEY}", |
| 30 | + "BROWSERBASE_PROJECT_ID": "${input:BROWSERBASE_PROJECT_ID}", |
| 31 | + "GEMINI_API_KEY": "${input:GEMINI_API_KEY}" |
| 32 | + }, |
| 33 | + "metadata": { |
| 34 | + "inputs": [ |
| 35 | + { |
| 36 | + "id": "BROWSERBASE_API_KEY", |
| 37 | + "label": "Browserbase API Key", |
| 38 | + "description": "API key for your Browserbase account.", |
| 39 | + "type": "text", |
| 40 | + "required": true, |
| 41 | + "secret": true, |
| 42 | + "placeholder": "bb_live_xxxxxxxxxxxxxxxx", |
| 43 | + "obtain": { |
| 44 | + "url": "https://www.browserbase.com/", |
| 45 | + "instructions": "1. Go to browserbase.com and create an account\n2. Navigate to Settings in the dashboard\n3. Copy your API key", |
| 46 | + "button_label": "Get API Key" |
| 47 | + } |
| 48 | + }, |
| 49 | + { |
| 50 | + "id": "BROWSERBASE_PROJECT_ID", |
| 51 | + "label": "Browserbase Project ID", |
| 52 | + "description": "Your Browserbase project ID, found in the dashboard.", |
| 53 | + "type": "text", |
| 54 | + "required": true, |
| 55 | + "secret": false, |
| 56 | + "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", |
| 57 | + "obtain": { |
| 58 | + "url": "https://www.browserbase.com/", |
| 59 | + "instructions": "1. Log in to browserbase.com\n2. Open your project in the dashboard\n3. Copy the Project ID from the project settings", |
| 60 | + "button_label": "Get Project ID" |
| 61 | + } |
| 62 | + }, |
| 63 | + { |
| 64 | + "id": "GEMINI_API_KEY", |
| 65 | + "label": "Gemini API Key", |
| 66 | + "description": "Google Gemini API key. Required by default (Stagehand uses Gemini 2.0 Flash). Optional if using a custom model via --modelApiKey.", |
| 67 | + "type": "text", |
| 68 | + "required": false, |
| 69 | + "secret": true, |
| 70 | + "placeholder": "AIzaSy...", |
| 71 | + "obtain": { |
| 72 | + "url": "https://aistudio.google.com/apikey", |
| 73 | + "instructions": "1. Go to Google AI Studio\n2. Click 'Get API key'\n3. Create a new API key or select an existing one\n4. Copy the key", |
| 74 | + "button_label": "Get API Key" |
| 75 | + } |
| 76 | + } |
| 77 | + ] |
| 78 | + } |
| 79 | + }, |
| 80 | + "auth": { |
| 81 | + "type": "api_key", |
| 82 | + "instructions": "Get your API key and Project ID at https://www.browserbase.com/" |
| 83 | + }, |
| 84 | + "contributor": { |
| 85 | + "name": "Browserbase", |
| 86 | + "github": "browserbase", |
| 87 | + "url": "https://www.browserbase.com" |
| 88 | + }, |
| 89 | + "links": { |
| 90 | + "repository": "https://github.com/browserbase/mcp-server-browserbase", |
| 91 | + "homepage": "https://www.browserbase.com", |
| 92 | + "documentation": "https://docs.browserbase.com/integrations/mcp/" |
| 93 | + }, |
| 94 | + "platforms": [ |
| 95 | + "all" |
| 96 | + ], |
| 97 | + "capabilities": { |
| 98 | + "tools": true, |
| 99 | + "resources": false, |
| 100 | + "prompts": false, |
| 101 | + "read_only_mode": false |
| 102 | + } |
| 103 | +} |
0 commit comments