Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

Apple development tools - simulator UI automation, project analysis, build/test, and documentation lookup

Install to Claude Code

/plugin install apple-docs@briannadoubt

Run in Claude Code. Add the marketplace first with /plugin marketplace add briannadoubt/claude-marketplace if you haven't already.

README.md

AppleDocsTool

Apple development tools for Claude Code and Cursor - simulator UI automation, project analysis, build/test, and documentation lookup.

Install

Claude Code Plugin

From GitHub (works now):

/plugin marketplace add briannadoubt/claude-marketplace
/plugin install apple-docs@briannadoubt

From official marketplace (after approval):

/plugin install apple-docs

<details> <summary>Alternative: Local Claude install</summary>

git clone https://github.com/briannadoubt/AppleDocsTool.git
claude plugin install ./AppleDocsTool --scope user

Or MCP-only (no skills):

cd AppleDocsTool && swift build -c release
claude mcp add apple-docs .build/release/apple-docs

</details>

Verify Claude install:

/plugin list    # should show apple-docs

Cursor MCP

Cursor project-level MCP config is included at .cursor/mcp.json.

git clone https://github.com/briannadoubt/AppleDocsTool.git
cd AppleDocsTool
swift build

Then in Cursor, open this repository and enable the apple-docs (minimal) or apple-docs-full server from MCP settings.

Cursor skills/rules are included at .cursor/rules/apple-docs-skills.mdc and route tasks to the shell-first workflows in skills/.

Architecture

This tool uses a skills-first approach for efficiency:

| Layer | What | Token Cost | |-------|------|------------| | Skills | Shell commands in skills/ directory | ~0 (just file reads) | | MCP (minimal) | 3 UI automation tools | ~2K tokens | | MCP (full) | All 33 tools | ~30K tokens |

By default, the server exposes only 3 tools that require macOS Accessibility APIs. Everything else can be done with shell commands documented in the skills.

Skills

Claude and Cursor agents discover capabilities from skills/SKILLS.md:

| Skill | Description | Example Commands | |-------|-------------|------------------| | analyze-project | Understand project structure | cat Package.swift, grep -rn "struct" | | build-and-test | Build and test | swift build, swift test | | lookup-docs | Find documentation | Apple docs URLs, GitHub READMEs | | control-simulator | Manage simulators | xcrun simctl boot, xcrun simctl install | | profile-app | Profile performance | xcrun xctrace record | | ui-interact | UI automation | Requires MCP tools |

MCP Tools

Default (Minimal Server)

Only tools that can't be done with shell commands:

| Tool | Description | |------|-------------| | simulator_ui_state | Get screenshot + OCR text with tap coordinates | | simulator_interact | Tap, swipe, type text, press hardware buttons | | simulator_find_text | Find text on screen, get coordinates |

Full Server

For all 33 tools (project symbols, Apple docs, build/test, profiling, etc.):

# Claude: configure with --full flag
claude mcp add apple-docs ~/.mint/bin/apple-docs --args --full

<details> <summary>Full tool list</summary>

Project Analysis

  • get_project_symbols - Extract types, functions, properties
  • get_project_dependencies - List dependencies with versions
  • get_symbol_documentation - Detailed docs for specific symbols
  • get_project_summary - Quick project overview
  • search_symbols - Fuzzy search across project and Apple frameworks

Documentation

  • lookup_apple_api - Apple framework documentation
  • get_dependency_docs - Fetch README from GitHub

Build & Test

  • swift_build - Build Swift packages
  • swift_test - Run tests with structured output
  • swift_run - Run executables
  • xcodebuild_build - Build Xcode projects
  • xcodebuild_test - Run Xcode tests
  • list_schemes - List available schemes
  • list_destinations - List simulators/devices

Profiling

  • instruments_profile - Profile with any Instruments template
  • list_instruments_templates - List available templates

Simulator Control

  • simctl_list_devices - List simulators
  • simctl_list_runtimes - List iOS/tvOS/watchOS versions
  • simctl_device_control - Boot, shutdown, create, delete
  • simctl_app_install - Install apps
  • simctl_app_control - Launch, terminate, uninstall
  • simctl_app_info - Get app info
  • simctl_screenshot - Capture screenshots
  • simctl_record_video - Record video
  • simctl_location - Set GPS location
  • simctl_push - Send push notifications
  • simctl_privacy - Manage permissions
  • simctl_status_bar - Override status bar
  • simctl_pasteboard - Clipboard access
  • simctl_open_url - Open URLs/deep links

UI Automation

  • simulator_ui_state - Screenshot + OCR
  • simulator_interact - Tap, swipe, type, buttons
  • simulator_find_text - Find text coordinates

</details>

Usage Examples

With Skills (Recommended)

Claude reads the skill files and executes shell commands directly:

You: Analyze this Swift project

Claude: [Reads skills/analyze-project/SKILL.md]
        [Runs: cat Package.swift]
        [Runs: grep -rn "struct\|class" Sources/]
        Here's the project structure...

With MCP Tools

For UI automation (the only thing that needs MCP):

You: Tap the Login button in the simulator

Claude: [Calls simulator_find_text(text: "Login")]
        Found at (197, 445)
        [Calls simulator_interact(action: "tap", x: 197, y: 445)]
        Tapped Login button

Requirements

  • macOS 13.0+
  • Swift 6.0+ (Xcode 16+)
  • Claude Code
  • Cursor (optional, for MCP client support)

Development

# Build
swift build

# Test
swift test

# Run minimal server
swift run

# Run full server
swift run apple-docs --full

Project Structure

AppleDocsTool/
├── .cursor/
│   ├── mcp.json                 # Cursor MCP server config
│   └── rules/
│       └── apple-docs-skills.mdc # Cursor skill-routing rule
├── .claude-plugin/
│   └── plugin.json              # Plugin manifest
├── .mcp.json                    # MCP server config
├── Package.swift
├── skills/                      # Shell-based workflows
│   ├── SKILLS.md               # Skill index
│   ├── analyze-project/
│   ├── build-and-test/
│   ├── control-simulator/
│   ├── lookup-docs/
│   ├── profile-app/
│   └── ui-interact/
└── Sources/
    └── AppleDocsTool/
        ├── Server/
        │   ├── MinimalMCPServer.swift  # 3 UI tools (default)
        │   └── MCPServer.swift         # 33 tools (--full)
        ├── Services/                    # Core functionality
        └── Models/                      # Data types

License

MIT License - see LICENSE for details.

Related plugins

Browse all →