You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Smithery latest CLI release has broken install and now requires an API key, this has been reported, but for now we remove this guidence and recommend npx install method.
The easiest way to install XcodeBuildMCP is to use [Smithery](https://smithery.ai) to install it from the registry. Use the following command in your terminal below (requires npm/node) and replace `<client-name>`with the name of your AI agent (claude-code, codex, etc.) or use one of the client-specific examples provided.
10
+
Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON configuration with the following server entry:
[<imgsrc="https://img.shields.io/badge/VS_Code-VS_Code?style=flat-square&label=Install%20Server&color=0098FF"alt="Install in VS Code">](https://insiders.vscode.dev/redirect/mcp/install?name=XcodeBuildMCP&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22xcodebuildmcp%40latest%22%5D%7D)
102
+
[<imgalt="Install in VS Code Insiders"src="https://img.shields.io/badge/VS_Code_Insiders-VS_Code_Insiders?style=flat-square&label=Install%20Server&color=24bfa5">](https://insiders.vscode.dev/redirect/mcp/install?name=XcodeBuildMCP&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22xcodebuildmcp%40latest%22%5D%7D&quality=insiders)
For other clients see: [Smithery XcodeBuildMCP](https://smithery.ai/server/cameroncooke/xcodebuildmcp), for other installation options including manual installation see [Getting Started](docs/GETTING_STARTED.md)
126
+
For other installation options see [Getting Started](docs/GETTING_STARTED.md)
[<imgsrc="https://img.shields.io/badge/VS_Code-VS_Code?style=flat-square&label=Install%20Server&color=0098FF"alt="Install in VS Code">](https://insiders.vscode.dev/redirect/mcp/install?name=XcodeBuildMCP&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22xcodebuildmcp%40latest%22%5D%7D)
21
-
22
-
[<imgalt="Install in VS Code Insiders"src="https://img.shields.io/badge/VS_Code_Insiders-VS_Code_Insiders?style=flat-square&label=Install%20Server&color=24bfa5">](https://insiders.vscode.dev/redirect/mcp/install?name=XcodeBuildMCP&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22xcodebuildmcp%40latest%22%5D%7D&quality=insiders)
23
-
24
-
### Manual installation
25
-
Most MCP clients use JSON configuration. Add the following to your client configuration under `mcpServers`:
10
+
Most MCP clients use JSON configuration. Add the following server entry to your client's MCP config:
26
11
27
12
```json
28
13
"XcodeBuildMCP": {
29
14
"command": "npx",
30
-
"args": [
31
-
"-y",
32
-
"xcodebuildmcp@latest"
33
-
]
15
+
"args": ["-y", "xcodebuildmcp@latest"]
34
16
}
35
17
```
36
18
19
+
See the main [README](../README.md#installation) for client-specific configuration paths and quick install links.
20
+
37
21
## Project config (optional)
38
22
For deterministic session defaults and runtime configuration, add a config file at:
39
23
@@ -46,7 +30,7 @@ See [CONFIGURATION.md](CONFIGURATION.md) for the full schema and examples.
46
30
## Client-specific configuration
47
31
48
32
### OpenAI Codex CLI
49
-
Codex uses TOML for MCP configuration. Add this to your Codex CLI config file:
33
+
Codex uses TOML for MCP configuration. Add this to `~/.codex/config.toml`:
0 commit comments