# io.github.Nagarjuna2997/ios-agent-skill (npm · ios-agent-mcp)

Swift reviews, local Apple references, app scaffolding and iOS simulator workflows.

- Trust score: 70/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- npm · `ios-agent-mcp`: 70/100 (this document), [markdown](https://verifymcp.io/servers/nagarjuna2997-ios-agent-skill/ios-agent-mcp.md), [page](https://verifymcp.io/servers/nagarjuna2997-ios-agent-skill/ios-agent-mcp)

## Channel facts

- Registry: `npm`
- Package: `ios-agent-mcp`
- Version: `2.6.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-20.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 31 of 98 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 48/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 3 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 86/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 2984 tokens (~78/item across 38 items; 35 tools + 3 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 83/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 42% of tool parameters carry a description.
  - Structured output schemas are declared (26% of tools); any adoption earns full credit.
- **Tool Safety**: 75/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - 0 of 2 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "simulator_shutdown" implies "shutdown" and declares no destructiveHint at all, which the MCP spec reads as destructive by default.
  - An AI judge read all 36 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the io.github.Nagarjuna2997/ios-agent-skill MCP server?

io.github.Nagarjuna2997/ios-agent-skill runs locally as an npm package, launched with npx -y ios-agent-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add nagarjuna2997-ios-agent-skill -- npx -y ios-agent-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "nagarjuna2997-ios-agent-skill": {
      "command": "npx",
      "args": [
        "-y",
        "ios-agent-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "nagarjuna2997-ios-agent-skill": {
      "command": "npx",
      "args": [
        "-y",
        "ios-agent-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add nagarjuna2997-ios-agent-skill -- npx -y ios-agent-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "nagarjuna2997-ios-agent-skill": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "ios-agent-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add nagarjuna2997-ios-agent-skill --command npx --arg -y --arg ios-agent-mcp
```

### Hermes

```yaml
mcp_servers:
  nagarjuna2997-ios-agent-skill:
    command: "npx"
    args: ["-y", "ios-agent-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "nagarjuna2997-ios-agent-skill": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "ios-agent-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add nagarjuna2997-ios-agent-skill -t stdio -c npx -a -y ios-agent-mcp
```

### Other

```json
{
  "mcpServers": {
    "nagarjuna2997-ios-agent-skill": {
      "command": "npx",
      "args": [
        "-y",
        "ios-agent-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-16 (score 70)

First indexed and scored.

## MCP tools (35)

### `review_app_intents` (~134 tokens)

Review App Intents integration

Review SiriKit/INIntent migration opportunities and, when explicitly requested, missing Apple Intelligence entity schemas or onscreen entity associations. Findings are heuristic advisories, not blanket deprecations or proof of invalid code. Use when integrating Siri, Shortcuts or Apple Intelligence.

Input parameters:

- `appleIntelligence` (boolean): Review entity schemas for a requested Apple Intelligence integration; not required for ordinary intents.
- `onscreenContent` (boolean): Review onscreen entity association only when Siri should reference visible content.
- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

Output parameters:

- `counts` (object)
- `files_checked` (integer): Swift files actually scanned.
- `issues` (array): Every finding, most severe first.
- `score` (integer): 0-100 defect density. 100 = no findings. penalty = 10*blockers + 3*serious + 1*minor; capacity = files*10. Comparable across runs on ONE project, not between projects.
- `suggestions` (array): Prioritized next actions, deduplicated by rule — not a restatement of every issue's fix.
- `summary` (string): One-line plain-language result.

### `review_swift_concurrency` (~120 tokens)

Review Swift concurrency and actor isolation

Check a Swift project for Swift 6 concurrency and isolation defects: @Observable types missing @MainActor, Task.detached, DispatchQueue.main.async in async code, @unchecked Sendable, nonisolated(unsafe), unstructured Tasks in onAppear, empty catch blocks, and types named Task that shadow _Concurrency.Task. Use when reviewing Swift code, migrating to Swift 6, or diagnosing a data race.

Input parameters:

- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

Output parameters:

- `counts` (object)
- `files_checked` (integer): Swift files actually scanned.
- `issues` (array): Every finding, most severe first.
- `score` (integer): 0-100 defect density. 100 = no findings. penalty = 10*blockers + 3*serious + 1*minor; capacity = files*10. Comparable across runs on ONE project, not between projects.
- `suggestions` (array): Prioritized next actions, deduplicated by rule — not a restatement of every issue's fix.
- `summary` (string): One-line plain-language result.

### `review_swift_architecture` (~118 tokens)

Review iOS architecture boundaries

Check a Swift project for architecture and testability defects: dependencies defaulting to live implementations, the presentation layer naming concrete data-layer types (URLSession, APIClient, ModelContext), singletons resolved inside view models, the domain layer importing UI frameworks, nested NavigationStacks, and deprecated NavigationView. Use when reviewing MVVM or Clean Architecture code, or when a screen cannot be previewed without a network.

Input parameters:

- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

Output parameters:

- `counts` (object)
- `files_checked` (integer): Swift files actually scanned.
- `issues` (array): Every finding, most severe first.
- `score` (integer): 0-100 defect density. 100 = no findings. penalty = 10*blockers + 3*serious + 1*minor; capacity = files*10. Comparable across runs on ONE project, not between projects.
- `suggestions` (array): Prioritized next actions, deduplicated by rule — not a restatement of every issue's fix.
- `summary` (string): One-line plain-language result.

### `review_swiftui` (~105 tokens)

Review SwiftUI views and state

Check SwiftUI code for view and state defects: fixed font sizes and heights that break Dynamic Type, AnyView, deprecated .cornerRadius, literal spacing values instead of design tokens, materials applied over solid backgrounds, transient presentation state stored on models, legacy ObservableObject and @EnvironmentObject, and try!. Use when reviewing or building SwiftUI screens.

Input parameters:

- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

Output parameters:

- `counts` (object)
- `files_checked` (integer): Swift files actually scanned.
- `issues` (array): Every finding, most severe first.
- `score` (integer): 0-100 defect density. 100 = no findings. penalty = 10*blockers + 3*serious + 1*minor; capacity = files*10. Comparable across runs on ONE project, not between projects.
- `suggestions` (array): Prioritized next actions, deduplicated by rule — not a restatement of every issue's fix.
- `summary` (string): One-line plain-language result.

### `check_availability_guards` (~129 tokens)

Check iOS availability guards

Verify that version-gated Apple APIs are guarded on the version where they were INTRODUCED rather than the newest SDK. Catches both missing guards and over-restrictive ones — for example Liquid Glass (iOS 26) guarded at iOS 27, which silently drops every iOS 26 device to the fallback. Also flags Foundation Models used without a runtime SystemLanguageModel.availability check. Use before shipping, or after bumping an SDK.

Input parameters:

- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

Output parameters:

- `counts` (object)
- `files_checked` (integer): Swift files actually scanned.
- `issues` (array): Every finding, most severe first.
- `score` (integer): 0-100 defect density. 100 = no findings. penalty = 10*blockers + 3*serious + 1*minor; capacity = files*10. Comparable across runs on ONE project, not between projects.
- `suggestions` (array): Prioritized next actions, deduplicated by rule — not a restatement of every issue's fix.
- `summary` (string): One-line plain-language result.

### `audit_app_store_readiness` (~102 tokens)

Audit App Store submission readiness

Check a Swift project for issues that cause App Store rejection or runtime termination: permission-gated frameworks used without an Info.plist purpose string, a missing PrivacyInfo.xcprivacy manifest, unlocalized user-facing strings, icon-only buttons with no accessibility label, and print() used for logging. Use before submitting to App Review.

Input parameters:

- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

### `analyze_swift_project` (~112 tokens)

Analyze a Swift project

Produce an overview of a Swift project — file and line counts, deployment target, Swift tools version, frameworks in use, whether tests exist — together with a summary count of findings across every rule category (concurrency, architecture, SwiftUI, availability, App Store). Use this first when you are unfamiliar with a codebase, then run the focused tools on whichever category has findings.

Input parameters:

- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

### `lint_skill` (~157 tokens)

Lint an Agent Skill repository

Validate the metadata of an Agent Skill repository rather than Swift source: SKILL.md frontmatter (required keys, kebab-case name, semver version, description length limits), subagent definitions in .claude/agents/ (name matches filename, unknown tool names, and read-only agents that are nonetheless granted Edit or Write), whether generated mirror files such as CLAUDE.md and AGENTS.md have drifted from SKILL.md, and backtick-quoted doc paths that do not resolve. Use when authoring or reviewing a skill, before publishing a release, or when a subagent or skill is not being invoked as expected.

Input parameters:

- `path` (string, required): Absolute path to the skill repository root (the folder containing SKILL.md).

### `review_swift_memory` (~136 tokens)

Review memory and retain cycles

Check a Swift project for retain cycles and lifetime defects: repeating Timers and block-based NotificationCenter observers capturing self strongly, Combine sinks stored in a cancellables set owned by the same object, non-weak delegate properties, stored closure properties capturing self, `unowned self` in escaping closures, and long-running unstructured Tasks that keep an object alive after its screen is gone. Use when memory grows over time, when deinit is never called, or before shipping a screen with timers or subscriptions.

Input parameters:

- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

Output parameters:

- `counts` (object)
- `files_checked` (integer): Swift files actually scanned.
- `issues` (array): Every finding, most severe first.
- `score` (integer): 0-100 defect density. 100 = no findings. penalty = 10*blockers + 3*serious + 1*minor; capacity = files*10. Comparable across runs on ONE project, not between projects.
- `suggestions` (array): Prioritized next actions, deduplicated by rule — not a restatement of every issue's fix.
- `summary` (string): One-line plain-language result.

### `review_swift_security` (~141 tokens)

Review iOS security

Check a Swift project for security defects: hardcoded API keys, tokens, and passwords in source; credentials written to UserDefaults instead of the Keychain; App Transport Security disabled; cleartext http:// endpoints; TLS server trust accepted without evaluation; MD5 and SHA-1; Keychain items with over-permissive accessibility; non-cryptographic randomness used for nonces and salts; secrets written to logs; and string interpolation into evaluated JavaScript. Use before shipping, during a security review, or when handling credentials.

Input parameters:

- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

Output parameters:

- `counts` (object)
- `files_checked` (integer): Swift files actually scanned.
- `issues` (array): Every finding, most severe first.
- `score` (integer): 0-100 defect density. 100 = no findings. penalty = 10*blockers + 3*serious + 1*minor; capacity = files*10. Comparable across runs on ONE project, not between projects.
- `suggestions` (array): Prioritized next actions, deduplicated by rule — not a restatement of every issue's fix.
- `summary` (string): One-line plain-language result.

### `review_swift_testing` (~149 tokens)

Review test suite quality

Check a Swift test suite for defects that make it unreliable or vacuous: tests that wait by sleeping, tests with no assertion at all, `await` inside an XCTAssert autoclosure (which does not compile), live URLSession calls in tests, `try!`, static mutable state that makes results order-dependent, long expectation timeouts covering for races, and XCTAssertTrue on an equality that hides both values on failure. Also reports when a project has no tests or very few. Use when tests are flaky, before trusting a green suite, or when adding coverage.

Input parameters:

- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

Output parameters:

- `counts` (object)
- `files_checked` (integer): Swift files actually scanned.
- `issues` (array): Every finding, most severe first.
- `score` (integer): 0-100 defect density. 100 = no findings. penalty = 10*blockers + 3*serious + 1*minor; capacity = files*10. Comparable across runs on ONE project, not between projects.
- `suggestions` (array): Prioritized next actions, deduplicated by rule — not a restatement of every issue's fix.
- `summary` (string): One-line plain-language result.

### `review_swift_performance` (~127 tokens)

Review SwiftUI and Swift performance

Check for runtime cost that shows up as dropped frames: DateFormatter and JSONDecoder allocated inside `body`, collections sorted or filtered on every render, ForEach over indices instead of stable identity, non-lazy stacks inside a ScrollView, AsyncImage with no frame, blocking file or network I/O on the render path, and GeometryReader wrapping an entire body. Use when scrolling stutters, launch is slow, or before shipping a list-heavy screen.

Input parameters:

- `path` (string, required): Absolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).

Output parameters:

- `counts` (object)
- `files_checked` (integer): Swift files actually scanned.
- `issues` (array): Every finding, most severe first.
- `score` (integer): 0-100 defect density. 100 = no findings. penalty = 10*blockers + 3*serious + 1*minor; capacity = files*10. Comparable across runs on ONE project, not between projects.
- `suggestions` (array): Prioritized next actions, deduplicated by rule — not a restatement of every issue's fix.
- `summary` (string): One-line plain-language result.

### `search_apple_technologies` (~45 tokens)

Search Apple technologies

Find Apple frameworks, tools, services and legacy technologies in the bundled 405-entry source snapshot.

Input parameters:

- `limit` (integer)
- `query` (string, required)

### `get_apple_technology` (~52 tokens)

Read Apple technology guide

Get a compact technology overview and local source routes by default. Use view full only when the entire guide and API topic map are required.

Input parameters:

- `id` (string, required)
- `view` (string)

### `get_apple_updates` (~45 tokens)

Find Apple updates and release notes

Search dated Apple update and release-note landing pages with version-specific source links. Does not claim live results.

Input parameters:

- `limit` (integer)
- `query` (string)

### `plan_ios_app` (~47 tokens)

Plan an iOS app from a brief

Return an implementation workflow and safe CLI argument array for a named app. No files are created and no build is claimed.

Input parameters:

- `brief` (string, required)
- `name` (string, required)

### `plan_app_icon` (~46 tokens)

Plan layered Icon Composer artwork

Return a separate-layer icon specification, Apple workflow and appearance checks. Does not fabricate a native .icon document.

Input parameters:

- `appName` (string, required)
- `concept` (string, required)

### `search_local_references` (~63 tokens)

Search bundled source and guides

Search complete repository guides, Swift source, templates and assets offline. Returns compact file matches without loading bodies. Source files and guide code blocks have different verification status.

Input parameters:

- `kind` (string)
- `limit` (integer)
- `query` (string, required)

### `read_local_reference` (~67 tokens)

Read local source or guide

Read exact bundled file content in bounded character ranges. Use nextOffset to continue without omission; no network or user filesystem access. Offset is a JavaScript UTF-16 string index.

Input parameters:

- `maxChars` (integer)
- `offset` (integer)
- `path` (string, required)

### `get_reference_outline` (~29 tokens)

Outline a local guide

Get heading offsets so only the relevant section needs to be read.

Input parameters:

- `path` (string, required)

### `simulator_list` (~41 tokens)

List available iOS simulators

List available Simulator devices using xcrun simctl. Use before booting, installing, launching, or capturing screenshots when you do not know the simulator UDID.

### `simulator_boot` (~65 tokens)

Boot an iOS simulator

Boot a simulator by UDID using xcrun simctl boot. Use before install_app, launch_app, screenshot, or open_deep_link. This does not erase or reset simulator content.

Input parameters:

- `udid` (string, required): Simulator UDID. Use simulator_list first when unsure.

### `simulator_shutdown` (~59 tokens)

Shut down an iOS simulator

Shut down a simulator by UDID using xcrun simctl shutdown. Use after runtime validation to clean up a booted simulator. This does not erase content.

Input parameters:

- `udid` (string, required): Simulator UDID. Use simulator_list first when unsure.

### `install_app` (~71 tokens)

Install an app bundle

Install a built .app bundle into a simulator using xcrun simctl install. Use after build_project or after locating a derived-data app bundle.

Input parameters:

- `appPath` (string, required): Path to a built .app bundle.
- `udid` (string, required): Simulator UDID. Use simulator_list first when unsure.

### `launch_app` (~70 tokens)

Launch an installed app

Launch an installed app in the simulator by bundle identifier. Optional arguments are passed after the bundle id and are useful for UI-test/debug launch flags.

Input parameters:

- `args` (array)
- `bundleId` (string, required)
- `udid` (string, required): Simulator UDID. Use simulator_list first when unsure.

### `terminate_app` (~52 tokens)

Terminate an app

Terminate a running simulator app by bundle identifier without uninstalling it or resetting its state.

Input parameters:

- `bundleId` (string, required)
- `udid` (string, required): Simulator UDID. Use simulator_list first when unsure.

### `open_deep_link` (~66 tokens)

Open a deep link

Open a URL in the simulator using xcrun simctl openurl. Use to verify deep links, universal links, onboarding routes, and state restoration.

Input parameters:

- `udid` (string, required): Simulator UDID. Use simulator_list first when unsure.
- `url` (string, required)

### `screenshot` (~73 tokens)

Capture a simulator screenshot

Capture a simulator screenshot to a PNG path using xcrun simctl io screenshot. Use as evidence for visual review and before/after comparison.

Input parameters:

- `includeImage` (boolean)
- `outputPath` (string, required): Output PNG path.
- `udid` (string, required): Simulator UDID. Use simulator_list first when unsure.

### `build_project` (~80 tokens)

Build an Xcode project or workspace

Run xcodebuild build for a project or workspace. Use before installing and launching the app. Requires a scheme and either project or workspace.

Input parameters:

- `configuration` (string)
- `derivedDataPath` (string)
- `destination` (string)
- `project` (string)
- `scheme` (string, required)
- `workspace` (string)

### `run_tests` (~78 tokens)

Run Xcode tests

Run xcodebuild test for a project or workspace. Use to verify runtime/test behavior before visual review. Requires an explicit destination.

Input parameters:

- `configuration` (string)
- `derivedDataPath` (string)
- `destination` (string, required)
- `project` (string)
- `scheme` (string, required)
- `workspace` (string)

### `simulator_environment` (~34 tokens)

Installed Xcode and device support

Report selected Xcode, installed runtimes and real device profiles, including Duo when installed. Does not download or update Xcode.

### `simulator_show` (~47 tokens)

Show native Simulator

Boot and wait for a selected available device, then open its native Simulator window for touch/keyboard interaction.

Input parameters:

- `udid` (string, required): Simulator UDID. Use simulator_list first when unsure.

### `simulator_preview_start` (~69 tokens)

Open sidebar simulator preview

Start a token-protected loopback screenshot viewer for a booted device. Open the returned URL in the client sidebar/browser. Read-only visual preview; interact in the native Simulator. Not a public hosted simulator.

Input parameters:

- `udid` (string, required): Simulator UDID. Use simulator_list first when unsure.

### `simulator_preview_stop` (~46 tokens)

Close simulator preview

Stop this server’s preview for a device and remove its temporary screenshots; leaves the Simulator running.

Input parameters:

- `udid` (string, required): Simulator UDID. Use simulator_list first when unsure.

### `create_app` (~90 tokens)

Create an editable Swift app starter, implementation brief and optional XcodeGen specification/icon layers. Writes a NEW project; does not implement the full app idea. Then use source retrieval, review and simulator tools to implement and verify it.

Input parameters:

- `brief` (string, required)
- `directory` (string, required): Parent directory for the new project
- `name` (string, required)
- `xcodegen` (boolean)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/nagarjuna2997-ios-agent-skill/ios-agent-mcp#diagnostics

## Score history

- 2026-09-20: 70
- 2026-09-19: 70
- 2026-09-18: 70
- 2026-09-17: 70
- 2026-09-16: 70

## Common questions

### What is the io.github.Nagarjuna2997/ios-agent-skill MCP server?

io.github.Nagarjuna2997/ios-agent-skill is an MCP server listed in the public MCP registry as io.github.Nagarjuna2997/ios-agent-skill. Swift reviews, local Apple references, app scaffolding and iOS simulator workflows. This page covers its npm package (ios-agent-mcp).

### Is the io.github.Nagarjuna2997/ios-agent-skill MCP server safe to use?

io.github.Nagarjuna2997/ios-agent-skill scores 70 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the io.github.Nagarjuna2997/ios-agent-skill MCP server expose?

io.github.Nagarjuna2997/ios-agent-skill exposes 35 tools: review_app_intents, review_swift_concurrency, review_swift_architecture, review_swiftui, check_availability_guards, and 30 more. Their descriptions and schemas cost roughly 2,865 tokens of context every time the server is loaded.

### Is the io.github.Nagarjuna2997/ios-agent-skill MCP server still maintained?

io.github.Nagarjuna2997/ios-agent-skill is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the io.github.Nagarjuna2997/ios-agent-skill MCP server under?

io.github.Nagarjuna2997/ios-agent-skill declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/ios-agent-mcp
- Socket report: https://socket.dev/npm/package/ios-agent-mcp
- Repository: https://github.com/Nagarjuna2997/ios-agent-skill
- Changelog RSS feed: https://verifymcp.io/servers/nagarjuna2997-ios-agent-skill/ios-agent-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/nagarjuna2997-ios-agent-skill/ios-agent-mcp.json
- HTML version of this page: https://verifymcp.io/servers/nagarjuna2997-ios-agent-skill/ios-agent-mcp
