Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,17 @@ The examples below use npx (Option B). If you installed via Homebrew, replace th
<br />
</details>

<details>
<summary>AdaL CLI</summary>
<br />

Run the following command inside the AdaL CLI prompt:
```console
/mcp add XcodeBuildMCP --command npx --args "-y,xcodebuildmcp@latest,mcp"
Copy link

Copilot AI Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

--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.

Suggested change
/mcp add XcodeBuildMCP --command npx --args "-y,xcodebuildmcp@latest,mcp"
/mcp add XcodeBuildMCP --command npx --args '["-y","xcodebuildmcp@latest","mcp"]'

Copilot uses AI. Check for mistakes.
```
<br />
</details>

<br />

For other installation options see [Getting Started](docs/GETTING_STARTED.md).
Expand Down
6 changes: 6 additions & 0 deletions docs/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,12 @@ claude mcp add XcodeBuildMCP -e XCODEBUILDMCP_SENTRY_DISABLED=false -- npx -y xc

Note: XcodeBuildMCP requests xcodebuild to skip macro validation to avoid Swift Macro build errors.

### AdaL CLI
Run the following command inside the AdaL CLI prompt:
```console
/mcp add XcodeBuildMCP --command npx --args "-y,xcodebuildmcp@latest,mcp"
```

## Next steps
- Configuration options: [CONFIGURATION.md](CONFIGURATION.md)
- Session defaults and opt-out: [SESSION_DEFAULTS.md](SESSION_DEFAULTS.md)
Expand Down