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
@@ -77,7 +77,7 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
77
77
"mcpServers": {
78
78
"XcodeBuildMCP": {
79
79
"command": "npx",
80
-
"args": ["-y", "xcodebuildmcp@latest"]
80
+
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
81
81
}
82
82
}
83
83
}
@@ -95,16 +95,16 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
95
95
"servers": {
96
96
"XcodeBuildMCP": {
97
97
"command": "npx",
98
-
"args": ["-y", "xcodebuildmcp@latest"]
98
+
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
99
99
}
100
100
}
101
101
}
102
102
```
103
103
104
104
Or use the quick install links:
105
105
106
-
[<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)
107
-
[<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)
106
+
[<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%2C%22mcp%22%5D%7D)
107
+
[<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%2C%22mcp%22%5D%7D&quality=insiders)
108
108
<br />
109
109
</details>
110
110
@@ -118,7 +118,7 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
118
118
"mcpServers": {
119
119
"XcodeBuildMCP": {
120
120
"command": "npx",
121
-
"args": ["-y", "xcodebuildmcp@latest"]
121
+
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
122
122
}
123
123
}
124
124
}
@@ -130,13 +130,13 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
130
130
<summary>Trae</summary>
131
131
<br />
132
132
133
-
Add to `'~/Library/Application Support/Trae/User/mcp.json'`:
133
+
Add to `~/Library/Application Support/Trae/User/mcp.json`:
134
134
```json
135
135
{
136
136
"mcpServers": {
137
137
"XcodeBuildMCP": {
138
138
"command": "npx",
139
-
"args": ["-y", "xcodebuildmcp@latest"]
139
+
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
140
140
}
141
141
}
142
142
}
@@ -148,6 +148,8 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
148
148
149
149
For other installation options see [Getting Started](docs/GETTING_STARTED.md)
150
150
151
+
When configuring a client manually, ensure the command includes the `mcp` subcommand (for example, `npx -y xcodebuildmcp@latest mcp`).
152
+
151
153
## Requirements
152
154
153
155
- macOS 14.5 or later
@@ -174,9 +176,30 @@ For further information on how to install the skill, see: [docs/SKILLS.md](docs/
174
176
175
177
XcodeBuildMCP uses Sentry for error telemetry. For more information or to opt out of error telemetry see [docs/PRIVACY.md](docs/PRIVACY.md).
176
178
179
+
## CLI
180
+
181
+
XcodeBuildMCP provides a unified command-line interface. The `mcp` subcommand starts the MCP server, while all other commands provide direct terminal access to tools:
The CLI uses a per-workspace daemon for stateful operations (log capture, debugging, etc.) that auto-starts when needed. See [docs/CLI.md](docs/CLI.md) for full documentation.
0 commit comments