ios-agent-mcp 2.4.1 → 2.5.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 +16 -0
- package/data/knowledge.json +1 -1
- package/dist/unified.d.ts +2 -0
- package/dist/unified.js +70 -0
- package/dist/unified.js.map +1 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/mcp.json +114 -22
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# iOS Agent MCP
|
|
2
2
|
|
|
3
|
+
## One install, one MCP connection (2.5.0)
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
claude mcp add ios-agent -- npx -y ios-agent-mcp@2.5.0
|
|
7
|
+
```
|
|
8
|
+
|
|
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.
|
|
10
|
+
|
|
11
|
+
Create a starter directly:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx -y ios-agent-mcp@2.5.0 new MyApp --brief "A reading list with local storage" --xcodegen
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
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.
|
|
18
|
+
|
|
3
19
|
[Website and quick start](https://nagarjuna2997.github.io/ios-agent-skill/) · [GitHub source](https://github.com/Nagarjuna2997/ios-agent-skill)
|
|
4
20
|
|
|
5
21
|
# Local source retrieval in 2.4.0
|