ios-agent-mcp 2.5.1 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,17 +1,29 @@
1
1
  # iOS Agent MCP
2
2
 
3
- ## One install, one MCP connection (2.5.1)
3
+ [Explore the website](https://nagarjuna2997.github.io/ios-agent-skill/) · [Choose your AI and install](https://nagarjuna2997.github.io/ios-agent-skill/install.html)
4
+
5
+ ## Version 2.7.0
6
+
7
+ Includes real appearance-aware color catalogs and offline SVG-layer app icons,
8
+ Muse Code setup with verified MCP discovery, and refreshed public Apple references
9
+ through September 16, 2026 (27.0 releases and separately labeled 27.2 betas).
10
+ The CLI is included automatically. User accounts, signing profiles and credentials
11
+ are not package resources. Gemini CLI uses the repository extension; ChatGPT uses
12
+ the skills package or a separately configured MCP connection. See the
13
+ [client setup guide](https://nagarjuna2997.github.io/ios-agent-skill/install.html).
14
+
15
+ ## One install, one MCP connection
4
16
 
5
17
  ```bash
6
- claude mcp add ios-agent -- npx -y ios-agent-mcp@2.5.1
18
+ claude mcp add ios-agent -- npx -y ios-agent-mcp@latest
7
19
  ```
8
20
 
9
- The default server exposes 34 tools: 11 Swift reviews, 8 Apple reference tools, 14 simulator tools, and `create_app`. App scaffolding and simulator packages install automatically as dependencies; no separate installation or MCP connection is needed. Remove the separate knowledge/simulator connections if you previously configured them to avoid duplicate tools.
21
+ The default server exposes 36 tools: 12 review/metadata tools, 8 Apple reference tools, 14 simulator tools, `create_app`, and the local `prepare_issue_report` tool. App scaffolding and simulator packages install automatically as dependencies; no separate installation or MCP connection is needed. Remove the separate knowledge/simulator connections if you previously configured them to avoid duplicate tools.
10
22
 
11
23
  Create a starter directly:
12
24
 
13
25
  ```bash
14
- npx -y ios-agent-mcp@2.5.1 new MyApp --brief "A reading list with local storage" --xcodegen
26
+ npx -y ios-agent-mcp@latest new MyApp --brief "A reading list with local storage" --xcodegen
15
27
  ```
16
28
 
17
29
  Requires Node.js 20+. Simulator operations require macOS and Xcode; XcodeGen is required to generate an Xcode project from the starter specification. The agent implements app features using the starter, source tools and verification tools. One install is not autonomous app generation. The default connection now includes tools that write files and operate the simulator; review and reference tools remain read-only.
@@ -30,7 +42,7 @@ This package includes two MCP binaries: `ios-agent-mcp` for local Swift project
30
42
  npx -y --package=ios-agent-mcp@2.4.0 ios-agent-knowledge
31
43
  ```
32
44
 
33
- Knowledge tools search 405 technologies and 96 update/release-note sources, retrieve guides, plan an app implementation, and specify separate Icon Composer layers. They do not write apps, access arbitrary project paths or claim native icon generation. [Setup](https://github.com/Nagarjuna2997/ios-agent-skill/blob/main/docs/mcp/installation.md).
45
+ Knowledge tools search 405 technologies and 96 update/release-note sources, retrieve guides, plan an app implementation, and specify separate Icon Composer layers. They do not write apps, access arbitrary project paths or claim native icon generation. [Setup](https://nagarjuna2997.github.io/ios-agent-skill/install.html).
34
46
 
35
47
  # ios-agent-mcp
36
48
 
@@ -58,6 +70,8 @@ Claude → review_swift_concurrency
58
70
 
59
71
  ## Install
60
72
 
73
+ Choose your client: [Claude](#claude-code) · [ChatGPT / Codex](#chatgpt--codex) · [Gemini CLI](#gemini-cli) · [Muse Code](#muse-code). One server package; client connection methods differ.
74
+
61
75
  ### Claude Code
62
76
 
63
77
  ```bash
@@ -79,28 +93,59 @@ claude mcp add ios-agent -- npx -y ios-agent-mcp
79
93
  }
80
94
  ```
81
95
 
82
- ### Cursor
96
+ ### ChatGPT / Codex
97
+
98
+ **Codex** connects to the local unified server:
99
+
100
+ ```bash
101
+ codex mcp add ios-agent -- npx -y ios-agent-mcp@latest
102
+ ```
103
+
104
+ **ChatGPT** has a different setup: use the skills-only release package where your account supports it, or configure a hosted HTTPS knowledge server/private MCP tunnel through a supported developer-mode flow. ChatGPT web does not run this local `npx` command itself. This project does not provide a public hosted endpoint. See the [ChatGPT setup guide](https://nagarjuna2997.github.io/ios-agent-skill/install.html#chatgpt) for account requirements and connection limits.
105
+
106
+ ### Gemini CLI
107
+
108
+ ```bash
109
+ gemini mcp add ios-agent -- npx -y ios-agent-mcp@latest
110
+ ```
111
+
112
+ This adds a local MCP connection; Gemini web chat is a different product. The repository extension additionally supplies `GEMINI.md`, but its version pin must be available on npm before installing it. Use one connection method to avoid duplicate tools. [Gemini setup and verification](https://nagarjuna2997.github.io/ios-agent-skill/install.html#gemini).
113
+
114
+ ### Muse Code
83
115
 
84
- `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` globally:
116
+ Install outside the agent sandbox:
117
+
118
+ ```bash
119
+ npm install -g ios-agent-mcp@latest
120
+ ```
121
+
122
+ Merge this into `~/.config/muse/settings.json`, preserving your existing settings:
85
123
 
86
124
  ```json
87
125
  {
126
+ "schema_version": 1,
88
127
  "mcpServers": {
89
128
  "ios-agent": {
90
- "command": "npx",
91
- "args": ["-y", "ios-agent-mcp"]
129
+ "command": "ios-agent-mcp",
130
+ "args": []
92
131
  }
93
132
  }
94
133
  }
95
134
  ```
96
135
 
136
+ Restart Muse. If the executable is not found, use its absolute path from `command -v ios-agent-mcp`. MCP discovery and a Stop hook have been verified; complete model-driven app creation has not. [Muse setup and evidence](https://nagarjuna2997.github.io/ios-agent-skill/install.html#muse).
137
+
138
+ ### Other clients, including Cursor
139
+
140
+ Our primary client families are **Claude, ChatGPT/Codex, Gemini CLI and Muse**. Cursor and other MCP-compatible clients may use the generic `mcpServers` configuration shown above, but are not actively verified in this support scope. [Request another client or vote on an existing issue](https://github.com/Nagarjuna2997/ios-agent-skill/issues/new?template=client_support.md).
141
+
97
142
  ### From source
98
143
 
99
144
  ```bash
100
145
  git clone https://github.com/Nagarjuna2997/ios-agent-skill.git
101
146
  cd ios-agent-skill/mcp-server
102
147
  npm install && npm run build
103
- # then point your client at: node /absolute/path/to/mcp-server/dist/index.js
148
+ # then point your client at: node /absolute/path/to/mcp-server/dist/unified.js
104
149
  ```
105
150
 
106
151
  ---
@@ -267,3 +312,15 @@ before, which is exactly how 2.0.1 shipped with a manifest reading 1.0.0.
267
312
  ## License
268
313
 
269
314
  MIT — see [LICENSE](./LICENSE).
315
+
316
+ ## App-building loop preview (source checkout)
317
+
318
+ The CLI now provides `loop init`, `loop resume` and `loop status` alongside the unified MCP connection. See the [workflow guide](../docs/tooling/app-building-loop.md) and [reading-list demo](../samples/ReadingList/README.md) for reproducible acceptance checks, bounded Claude repairs, simulator evidence and saved progress. Real Claude repair is not yet integration-verified; the published npm version does not include this preview.
319
+
320
+ ## 2.6.0
321
+
322
+ Adds `review_app_intents` with conservative SiriKit migration advice and opt-in Apple Intelligence schema/onscreen checks. Apple snapshots refreshed after the iOS 27 release. Includes the preview `loop` CLI; real Claude repair remains unverified. See [release verification](https://github.com/Nagarjuna2997/ios-agent-skill/blob/main/docs/apple/ios-27-release-verification.md) and [complete tools](https://github.com/Nagarjuna2997/ios-agent-skill/blob/main/docs/mcp/tools.md).
323
+
324
+ ## Local issue previews (source build; next release)
325
+
326
+ `prepare_issue_report` is included in 2.7.0. It creates a local preview from fixed failure categories and links to this project’s issue tracker. It does not collect diagnostics, open a browser, make network calls or submit issues. Show the preview to the user before opening any link. GitHub sign-in and user submission are required.