diff --git a/README.md b/README.md index 28a1779c..31e13011 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,36 @@ The examples below use npx (Option B). If you installed via Homebrew, replace th
+
+ Kiro / Kiro CLI +
+ + **Workspace-level** (applies only to the current workspace): add `.kiro/settings/mcp.json` in your project root: + ```json + { + "mcpServers": { + "XcodeBuildMCP": { + "command": "npx", + "args": ["-y", "xcodebuildmcp@latest", "mcp"] + } + } + } + ``` + + **User-level** (applies globally across all workspaces): add to `~/.kiro/settings/mcp.json`: + ```json + { + "mcpServers": { + "XcodeBuildMCP": { + "command": "npx", + "args": ["-y", "xcodebuildmcp@latest", "mcp"] + } + } + } + ``` +
+
+
Windsurf