From a64cd721700094a457c360224f604f27d6570ae6 Mon Sep 17 00:00:00 2001 From: Manoj Mahapatra Date: Fri, 13 Feb 2026 09:08:35 -0800 Subject: [PATCH] Added an instruction for Kiro --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) 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