From c2f5413e1a419a1f0d807be95edf0022261d9044 Mon Sep 17 00:00:00 2001 From: Igor Costa Date: Sat, 11 Jul 2026 03:54:37 +1200 Subject: [PATCH 1/2] docs: add Autohand Code MCP setup --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 0bc513ff4..2be2552ae 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,14 @@ xcodebuildmcp --help Drop-in config snippets for Cursor, Claude Code, Codex, can be found in the official docs page [MCP Clients](https://xcodebuildmcp.com/docs/clients). Most clients can also run the MCP server on demand via `npx -y xcodebuildmcp@latest mcp` without a global install. +For Autohand Code, add the server from the command line: + +```bash +autohand mcp add xcodebuildmcp npx -y xcodebuildmcp@latest mcp +``` + +Add `--scope project` after `add` to keep the server configuration in the current project. See [Autohand Code](https://github.com/autohandai/code-cli/) for current installation and CLI details. + ## Requirements - macOS 14.5 or later From 08860cfdf7f66ff5525ac926bcfabb69fe0f5c89 Mon Sep 17 00:00:00 2001 From: Igor Costa Date: Sat, 11 Jul 2026 03:57:15 +1200 Subject: [PATCH 2/2] docs: note Autohand Code setup in changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 506e4462c..786fa1bae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### Added +- Added Autohand Code MCP client setup documentation ([#471](https://github.com/getsentry/XcodeBuildMCP/pull/471) by [@igorcosta](https://github.com/igorcosta)). - Added `extraArgs` as a first-class session-default value. Repo config or runtime defaults can now carry common `xcodebuild` flags (for example `-skipPackagePluginValidation` or `-disableAutomaticPackageResolution`) so they don't need repeating on every build or test call. Per-call `extraArgs` replace matching configured flags or build settings and append after non-matching defaults, while an explicit empty array (`extraArgs: []`) clears the defaults for a single call. The session management tools show, set, sync, and clear `extraArgs` alongside the other defaults. ## [2.6.2]