@@ -65,7 +65,7 @@ cd mcp-server-browserbase
65
65
npm install && npm run build
66
66
```
67
67
68
- Then in your MCP Config JSON run the server. To run locally we can use STDIO or self-host over SSE .
68
+ Then in your MCP Config JSON run the server. To run locally we can use STDIO or self-host SHTTP .
69
69
70
70
### STDIO:
71
71
@@ -100,7 +100,7 @@ Then in your MCP Config JSON file put the following:
100
100
{
101
101
"mcpServers" : {
102
102
"browserbase" : {
103
- "url" : " http://localhost:8931/sse " ,
103
+ "url" : " http://localhost:8931/mcp " ,
104
104
"env" : {
105
105
"BROWSERBASE_API_KEY" : " " ,
106
106
"BROWSERBASE_PROJECT_ID" : " "
@@ -124,7 +124,7 @@ The Browserbase MCP server accepts the following command-line flags:
124
124
| ` --advancedStealth ` | Enable Browserbase Advanced Stealth (Only for Scale Plan Users) |
125
125
| ` --contextId <contextId> ` | Specify a Browserbase Context ID to use |
126
126
| ` --persist [boolean] ` | Whether to persist the Browserbase context (default: true) |
127
- | ` --port <port> ` | Port to listen on for HTTP/SSE transport |
127
+ | ` --port <port> ` | Port to listen on for HTTP/SHTTP transport |
128
128
| ` --host <host> ` | Host to bind server to (default: localhost, use 0.0.0.0 for all interfaces) |
129
129
| ` --cookies [json] ` | JSON array of cookies to inject into the browser |
130
130
| ` --browserWidth <width> ` | Browser viewport width (default: 1024) |
@@ -421,7 +421,7 @@ mcp-server-browserbase/
421
421
│ ├── sessionManager.ts # Browserbase session lifecycle management
422
422
│ ├── stagehandStore.ts # Multi-session store for managing parallel browser sessions
423
423
│ ├── program.ts # CLI program setup using Commander.js
424
- │ ├── transport.ts # HTTP/SSE and STDIO transport handlers
424
+ │ ├── transport.ts # HTTP/SHTTP and STDIO transport handlers
425
425
│ ├── server.ts # Server list management
426
426
│ ├── utils.ts # Utility functions
427
427
│ ├── mcp/ # MCP protocol implementations
@@ -466,7 +466,7 @@ mcp-server-browserbase/
466
466
467
467
** program.ts** - CLI program setup using Commander.js with all command-line options, argument parsing, and transport initialization.
468
468
469
- ** transport.ts** - Transport layer implementations for STDIO and HTTP/SSE communication with session management across different connection types.
469
+ ** transport.ts** - Transport layer implementations for STDIO and HTTP/SHTTP communication with session management across different connection types.
470
470
471
471
** server.ts** - Server list management providing factory patterns for server creation and handling multiple concurrent connections.
472
472
@@ -543,6 +543,6 @@ For more information about the Model Context Protocol, visit:
543
543
544
544
## License
545
545
546
- Licensed under the MIT License.
546
+ Licensed under the Apache 2.0 License.
547
547
548
548
Copyright 2025 Browserbase, Inc.
0 commit comments