ios-agent-mcp 2.1.0 → 2.3.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 +14 -0
- package/data/knowledge.json +1 -0
- package/data/local-library.d.mts +5 -0
- package/data/local-library.mjs +60 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/knowledge-server.d.ts +2 -0
- package/dist/knowledge-server.js +44 -0
- package/dist/knowledge-server.js.map +1 -0
- package/dist/knowledge.d.ts +146 -0
- package/dist/knowledge.js +97 -0
- package/dist/knowledge.js.map +1 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/mcp.json +1 -1
- package/package.json +17 -9
package/README.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Local source retrieval in 2.3.0
|
|
2
|
+
|
|
3
|
+
The knowledge server now searches bundled repository source, templates and guides, outlines sections, and reads exact content with bounded output and continuation offsets. It exposes eight knowledge tools separately from the eleven analyzer tools. No runtime browsing is needed for local source retrieval. See [offline source workflow](../docs/tooling/offline-source-library.md).
|
|
4
|
+
|
|
5
|
+
## New in 2.3.0: Apple knowledge tools for more clients
|
|
6
|
+
|
|
7
|
+
This package includes two MCP binaries: `ios-agent-mcp` for local Swift project analysis and `ios-agent-knowledge` for public Apple references and app/icon planning. Claude, Codex and Gemini CLI can run either over stdio. The knowledge server also supports Streamable HTTP for a hosted ChatGPT connection.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx -y --package=ios-agent-mcp@2.3.0 ios-agent-knowledge
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
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).
|
|
14
|
+
|
|
1
15
|
# ios-agent-mcp
|
|
2
16
|
|
|
3
17
|
An MCP server that reviews Swift projects against the rules in
|