Skip to content

Commit 0d097fc

Browse files
committed
Improve tool analysis and docs
1 parent 38f6c1b commit 0d097fc

14 files changed

Lines changed: 1284 additions & 281 deletions

File tree

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
1212
```json
1313
"XcodeBuildMCP": {
1414
"command": "npx",
15-
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
15+
"args": ["-y", "xcodebuildmcp@beta", "mcp"]
1616
}
1717
```
1818

@@ -26,15 +26,15 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
2626
"mcpServers": {
2727
"XcodeBuildMCP": {
2828
"command": "npx",
29-
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
29+
"args": ["-y", "xcodebuildmcp@beta", "mcp"]
3030
}
3131
}
3232
}
3333
```
3434

3535
Or use the quick install link:
3636

37-
[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](cursor://anysphere.cursor-deeplink/mcp/install?name=XcodeBuildMCP&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInhjb2RlYnVpbGRtY3BAbGF0ZXN0IiwibWNwIl19)
37+
[![Install MCP Server](https://cursor.com/deeplink/mcp-install-light.svg)](https://cursor.com/en-US/install-mcp?name=XcodeBuildMCP&config=eyJjb21tYW5kIjoibnB4IC15IHhjb2RlYnVpbGRtY3BAYmV0YSBtY3AifQ%3D%3D)
3838
<br />
3939
</details>
4040

@@ -44,7 +44,7 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
4444

4545
Run:
4646
```bash
47-
claude mcp add XcodeBuildMCP -- npx -y xcodebuildmcp@latest mcp
47+
claude mcp add XcodeBuildMCP -- npx -y xcodebuildmcp@beta mcp
4848
```
4949
<br />
5050
</details>
@@ -55,14 +55,14 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
5555

5656
Run:
5757
```bash
58-
codex mcp add XcodeBuildMCP -- npx -y xcodebuildmcp@latest mcp
58+
codex mcp add XcodeBuildMCP -- npx -y xcodebuildmcp@beta mcp
5959
```
6060

6161
Or add to `~/.codex/config.toml`:
6262
```toml
6363
[mcp_servers.XcodeBuildMCP]
6464
command = "npx"
65-
args = ["-y", "xcodebuildmcp@latest", "mcp"]
65+
args = ["-y", "xcodebuildmcp@beta", "mcp"]
6666
```
6767
<br />
6868
</details>
@@ -77,7 +77,7 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
7777
"mcpServers": {
7878
"XcodeBuildMCP": {
7979
"command": "npx",
80-
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
80+
"args": ["-y", "xcodebuildmcp@beta", "mcp"]
8181
}
8282
}
8383
}
@@ -95,16 +95,16 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
9595
"servers": {
9696
"XcodeBuildMCP": {
9797
"command": "npx",
98-
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
98+
"args": ["-y", "xcodebuildmcp@beta", "mcp"]
9999
}
100100
}
101101
}
102102
```
103103

104104
Or use the quick install links:
105105

106-
[<img src="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-
[<img alt="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)
106+
[![Install MCP Server](https://cursor.com/deeplink/mcp-install-light.svg)](https://cursor.com/en-US/install-mcp?name=XcodeBuildMCP&config=eyJjb21tYW5kIjoibnB4IC15IHhjb2RlYnVpbGRtY3BAYmV0YSBtY3AifQ%3D%3D)
107+
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-XcodeBuildMCP-24bfa5?style=flat&logo=visualstudiocode&logoColor=ffffff)](vscode-insiders:mcp/install?%7B%22name%22%3A%22XcodeBuildMCP%22%2C%22type%22%3A%22stdio%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22xcodebuildmcp%40beta%22%2C%22mcp%22%5D%7D)
108108
<br />
109109
</details>
110110

@@ -118,7 +118,7 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
118118
"mcpServers": {
119119
"XcodeBuildMCP": {
120120
"command": "npx",
121-
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
121+
"args": ["-y", "xcodebuildmcp@beta", "mcp"]
122122
}
123123
}
124124
}
@@ -136,7 +136,7 @@ Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON config
136136
"mcpServers": {
137137
"XcodeBuildMCP": {
138138
"command": "npx",
139-
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
139+
"args": ["-y", "xcodebuildmcp@beta", "mcp"]
140140
}
141141
}
142142
}
@@ -182,7 +182,7 @@ XcodeBuildMCP provides a unified command-line interface. The `mcp` subcommand st
182182

183183
```bash
184184
# Install globally
185-
npm install -g xcodebuildmcp
185+
npm install -g xcodebuildmcp@beta
186186

187187
# Start the MCP server (for MCP clients)
188188
xcodebuildmcp mcp
@@ -191,7 +191,7 @@ xcodebuildmcp mcp
191191
xcodebuildmcp tools
192192

193193
# Build for simulator
194-
xcodebuildmcp build-sim --scheme MyApp --project-path ./MyApp.xcodeproj
194+
xcodebuildmcp simulator build-sim --scheme MyApp --project-path ./MyApp.xcodeproj
195195
```
196196

197197
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

Comments
 (0)