Skip to content
Merged
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
12 changes: 6 additions & 6 deletions app/docs/_content/clients.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -116,17 +116,17 @@ Project-scoped (recommended): create `.cursor/mcp.json` in your workspace root:
}
```

For global Cursor config at `~/.cursor/mcp.json`, use this variant so startup runs from the active workspace:
For global Cursor config at `~/.cursor/mcp.json`, set `XCODEBUILDMCP_CWD` so startup runs from the active workspace:

```json
{
"mcpServers": {
"XcodeBuildMCP": {
"command": "/bin/zsh",
"args": [
"-lc",
"cd \"${workspaceFolder}\" && exec npx -y xcodebuildmcp@latest mcp"
]
"command": "npx",
"args": ["-y", "xcodebuildmcp@latest", "mcp"],
"env": {
"XCODEBUILDMCP_CWD": "${workspaceFolder}"
}
}
}
}
Expand Down
Loading