docs: add AdaL CLI installation instructions to README#242
docs: add AdaL CLI installation instructions to README#242Abdulrahmansoliman wants to merge 1 commit intogetsentry:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds documentation for configuring the XcodeBuildMCP server using AdaL CLI, placing it alongside the existing MCP client setup instructions in both the README and Getting Started guide.
Changes:
- Added an “AdaL CLI” client section to
docs/GETTING_STARTED.mdwith an/mcp addcommand example. - Added an “AdaL CLI” expandable setup block to
README.mdwith the same command for quick installation.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| docs/GETTING_STARTED.md | Adds an AdaL CLI client-specific setup snippet at the end of the client configuration section. |
| README.md | Adds an AdaL CLI <details> block alongside other client setup instructions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
README.md
Outdated
| <br /> | ||
|
|
||
| Run: | ||
| ```bash |
There was a problem hiding this comment.
This is fenced as bash, but /mcp add ... will be interpreted by a shell as running /mcp from the filesystem. If this is an AdaL CLI slash-command, please label it as such (and use a text/console fence) to avoid readers trying to run it directly in their terminal.
| ```bash | |
| ```console |
|
|
||
| Run: | ||
| ```bash | ||
| /mcp add XcodeBuildMCP --command npx --args "-y,xcodebuildmcp@latest,mcp" |
There was a problem hiding this comment.
--args "-y,xcodebuildmcp@latest,mcp" reads like a single comma-delimited string. To prevent misconfiguration, use whatever AdaL CLI expects for multiple args (e.g., separate args / JSON array / repeated flags) so it’s unambiguous that npx receives -y, xcodebuildmcp@latest, and mcp as distinct arguments.
| /mcp add XcodeBuildMCP --command npx --args "-y,xcodebuildmcp@latest,mcp" | |
| /mcp add XcodeBuildMCP --command npx --args '["-y","xcodebuildmcp@latest","mcp"]' |
Co-Authored-By: AdaL <adal@sylph.ai>
1fa83b7 to
e3dd001
Compare
Summary
This PR updates the documentation to include setup instructions for AdaL CLI (a unified terminal-based agent).
Since this is a powerful MCP server, making it easily accessible to the growing AdaL CLI developer community adds great value. The installation instructions have been placed alongside the existing client setup guides (like Claude Code and Cursor) for consistency.
Changes Made
/mcp addsyntax.🌸 Generated with AdaL