docs: add AdaL CLI installation instructions#150
docs: add AdaL CLI installation instructions#150Abdulrahmansoliman wants to merge 1 commit intobrowserbase:mainfrom
Conversation
Greptile SummaryAdded AdaL CLI installation instructions to the README in three locations: quickstarts section, SHTTP configuration section, and STDIO NPM configuration section. The documentation provides commands for both SHTTP and STDIO transports, following the same pattern as existing Cursor installation instructions. Confidence Score: 5/5
Important Files Changed
Last reviewed commit: 05ac238 |
There was a problem hiding this comment.
Pull request overview
This PR adds AdaL CLI setup instructions to the Browserbase MCP Server README so users can connect via AdaL CLI in addition to existing MCP client options.
Changes:
- Added a new “Add to AdaL CLI” quickstart with both SHTTP and STDIO examples.
- Added AdaL CLI command examples to the SHTTP configuration section.
- Added AdaL CLI command examples to the STDIO (NPM) configuration section.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
README.md
Outdated
| ```bash | ||
| /mcp add browserbase --transport http --url your-smithery-url.com | ||
| ``` | ||
|
|
||
| Using STDIO: | ||
|
|
||
| ```bash | ||
| /mcp add browserbase --command npx --args "-y,@browserbasehq/mcp-server-browserbase" --env "BROWSERBASE_API_KEY=<your-api-key>,BROWSERBASE_PROJECT_ID=<your-project-id>,GEMINI_API_KEY=<your-gemini-key>" | ||
| ``` |
There was a problem hiding this comment.
The /mcp ... lines appear to be commands entered inside the AdaL CLI prompt, not in a system shell. Marking these blocks as bash (and using <...> placeholders) is likely to mislead users into pasting into a shell where /mcp won’t exist and <your-api-key> will be treated as input redirection. Consider changing the fenced block language to text/console and add a short note like “Run in AdaL CLI” above the command.
README.md
Outdated
|
|
||
| Using AdaL CLI: | ||
|
|
||
| ```bash |
There was a problem hiding this comment.
Same concern here: this fenced block is labeled as bash, but /mcp add ... is an AdaL CLI command (and the URL placeholder isn’t a valid shell command either). To avoid copy/paste failures, consider using text/console and explicitly stating the command is to be run inside AdaL CLI.
| ```bash | |
| ```text | |
| # Run this inside the AdaL CLI prompt: |
README.md
Outdated
| Using AdaL CLI: | ||
|
|
||
| ```bash |
There was a problem hiding this comment.
Same issue for the STDIO example: fenced as bash but uses AdaL CLI’s /mcp command plus <...> placeholders that would break if pasted into a shell. Suggest switching the code fence language to text/console and clarifying it’s run within AdaL CLI.
| Using AdaL CLI: | |
| ```bash | |
| Using AdaL CLI (run this inside AdaL CLI): | |
| ```console |
05ac238 to
9088e29
Compare
9088e29 to
f704936
Compare
Summary
This PR adds AdaL CLI setup instructions to the Browserbase MCP Server documentation, giving users another option to connect to the server alongside Cursor and other MCP clients.
What's Changed
Added AdaL CLI installation commands in three sections of
README.md:--transport http--command npxwith--argsand--envflagsAdaL CLI Commands Added
SHTTP (recommended):
STDIO:
What is AdaL CLI?
AdaL CLI is a unified terminal-based AI agent built by SylphAI that supports MCP server integration. Users can connect to any MCP server using the
/mcp addcommand with support for both STDIO and HTTP/SSE transports.📖 AdaL CLI MCP Documentation
Checklist
🌸 Generated with AdaL