@@ -65,7 +65,7 @@ cd mcp-server-browserbase
6565npm install && npm run build
6666```
6767
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 .
6969
7070### STDIO:
7171
@@ -100,7 +100,7 @@ Then in your MCP Config JSON file put the following:
100100{
101101 "mcpServers" : {
102102 "browserbase" : {
103- "url" : " http://localhost:8931/sse " ,
103+ "url" : " http://localhost:8931/mcp " ,
104104 "env" : {
105105 "BROWSERBASE_API_KEY" : " " ,
106106 "BROWSERBASE_PROJECT_ID" : " "
@@ -124,7 +124,7 @@ The Browserbase MCP server accepts the following command-line flags:
124124| ` --advancedStealth ` | Enable Browserbase Advanced Stealth (Only for Scale Plan Users) |
125125| ` --contextId <contextId> ` | Specify a Browserbase Context ID to use |
126126| ` --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 |
128128| ` --host <host> ` | Host to bind server to (default: localhost, use 0.0.0.0 for all interfaces) |
129129| ` --cookies [json] ` | JSON array of cookies to inject into the browser |
130130| ` --browserWidth <width> ` | Browser viewport width (default: 1024) |
@@ -421,7 +421,7 @@ mcp-server-browserbase/
421421│ ├── sessionManager.ts # Browserbase session lifecycle management
422422│ ├── stagehandStore.ts # Multi-session store for managing parallel browser sessions
423423│ ├── 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
425425│ ├── server.ts # Server list management
426426│ ├── utils.ts # Utility functions
427427│ ├── mcp/ # MCP protocol implementations
@@ -466,7 +466,7 @@ mcp-server-browserbase/
466466
467467** program.ts** - CLI program setup using Commander.js with all command-line options, argument parsing, and transport initialization.
468468
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.
470470
471471** server.ts** - Server list management providing factory patterns for server creation and handling multiple concurrent connections.
472472
@@ -543,6 +543,6 @@ For more information about the Model Context Protocol, visit:
543543
544544## License
545545
546- Licensed under the MIT License.
546+ Licensed under the Apache 2.0 License.
547547
548548Copyright 2025 Browserbase, Inc.
0 commit comments