🍎📚 Cupertino
Apple Documentation Crawler & MCP Server
A Swift-based tool to crawl, index, and serve Apple's developer documentation to AI agents via the Model Context Protocol (MCP).

What is Cupertino?
Cupertino is a local, structured, AI-ready documentation system for Apple platforms. It:
- Crawls Apple Developer documentation, Swift.org, Swift Evolution proposals, Apple Archive legacy guides, and Swift package metadata
- Indexes everything into a fast, searchable SQLite FTS5 database with BM25 ranking
- Serves documentation to AI agents like Claude via the Model Context Protocol
- Provides offline access to 138,000+ documentation pages across 263 frameworks
Why Build This?
- No more hallucinations: AI agents get accurate, up-to-date Apple API documentation
- Offline development: Work with full documentation without internet access
- Deterministic search: Same query always returns same results
- Local control: Own your documentation, inspect the database, script workflows
- AI-first design: Built specifically for AI agent integration via MCP
Quick Start
Note: When building from source, commands must be run from the
Packagesdirectory. The one-command install works from anywhere.
Requirements
- macOS 15+ (Sequoia)
- ~2-3 GB disk space for full documentation
Building from source additionally requires Swift 6.2+ and Xcode 16.0+
Installation
One-command install (recommended):
bash <(curl -sSL https://raw.githubusercontent.com/mihaelamj/cupertino/main/install.sh)
This downloads a pre-built, signed, and notarized universal binary, installs it to /usr/local/bin, and downloads the documentation databases.
Or with Homebrew:
brew tap mihaelamj/tap
brew install cupertino
cupertino setup
Or build from source:
git clone https://github.com/mihaelamj/cupertino.git
cd cupertino
# Using Makefile (recommended)
make build # Build release binary
sudo make install # Install to /usr/local/bin
# Or using Swift Package Manager directly
cd Packages
swift build -c release
sudo ln -sf "$(pwd)/.build/release/cupertino" /usr/local/bin/cupertino
Quick Reference
# Quick Setup (Recommended) - download pre-built databases (~30 seconds)
cupertino setup # Download databases from GitHub
cupertino serve # Start MCP server
# Alternative: Build from GitHub (~45 minutes)
cupertino save --remote # Stream and build locally
# Or fetch documentation yourself
cupertino fetch --type docs # Apple Developer Documentation
cupertino fetch --type swift # Swift.org documentation
cupertino fetch --type evolution # Swift Evolution proposals
cupertino fetch --type packages # Swift package metadata
cupertino fetch --type package-docs # Swift package READMEs
cupertino fetch --type code # Sample code from Apple (requires auth)
cupertino fetch --type samples # Sample code from GitHub (recommended)
cupertino fetch --type archive # Apple Archive programming guides
cupertino fetch --type all # All types in parallel
# Build indexes
cupertino save # Build documentation search index (from local files)
cupertino save --remote # Build from GitHub (no local files needed)
cupertino index # Index sample code for search
# Start server
cupertino # Start MCP server (default command)
cupertino serve # Start MCP server (explicit)
Instant Setup (Recommended)
# Download pre-built databases from GitHub (~30 seconds)
cupertino setup
# Start MCP server
cupertino serve
Alternative: Build from GitHub
# Stream and build locally (~45 minutes)
# Use this if you want to build the database yourself
cupertino save --remote
# Start MCP server
cupertino serve
Manual Setup (Advanced)
# Download Apple documentation (~20-24 hours for 13,000+ pages)
# Takes time due to 0.5s default delay between requests to respect Apple's servers
cupertino fetch --type docs --max-pages 15000
# Download Swift Evolution proposals (~2-5 minutes)
cupertino fetch --type evolution
# Download sample code from GitHub (~4 minutes, 606 projects)
cupertino fetch --type samples
# Build search index (~2-5 minutes)
cupertino save
Use with Claude Desktop
- Configure Claude Desktop - Edit
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"cupertino": {
"command": "/usr/local/bin/cupertino"
}
}
}
Note: The
cupertinocommand defaults tocupertino servewhen run without arguments.
Restart Claude Desktop
Ask Claude about Apple APIs:
- "Search for SwiftUI documentation"
- "What does Swift Evolution proposal SE-0001 propose?"
- "List available frameworks"
Use with Claude Code
If you're using Claude Code, you can add Cupertino as an MCP server with a single command:
claude mcp add cupertino --scope user -- /usr/local/bin/cupertino
This registers Cupertino globally for all your projects. Claude Code will automatically have access to Apple documentation search.
What You Get
Once configured, Claude Desktop can search your local documentation:
Search Results Example:
# Search Results for "SwiftUI"
Found **20** results:
## 1. NSHostingView | Apple Developer Documentation
- **Framework:** `swiftui`
- **URI:** `apple-docs://swiftui/documentation_swiftui_nshostingview`
- **Score:** 1.82
An AppKit view that hosts a SwiftUI view hierarchy.
## 2. UIHostingController | Apple Developer Documentation
- **Framework:** `swiftui`
- **URI:** `apple-docs://swiftui/documentation_swiftui_uihostingcontroller`
A UIKit view controller that manages a SwiftUI view hierarchy.
...
Framework Statistics:| Framework | Documents ||-----------|----------:|| Accelerate | 14,193 || AppKit | 12,644 || UIKit | 10,038 || Swift | 9,893 || SwiftUI | 9,741 || SIMD | 6,453 || Foundation | 6,068 || ... | ... || 263 Frameworks | 138,414 |
Core Features
1. Multi-Source Documentation Fetching
Apple Developer Documentation (13,000+ pages)
- JavaScript-aware rendering via WKWebView
- HTML to Markdown conversion
- Smart change detection
Swift Evolution Proposals (~400 proposals)
- GitHub-based fetching
- Markdown format
- Fast downloads
Swift.org Documentation
- Official Swift language docs
- Clean HTML structure
Swift Package Metadata
- Priority package catalogs
- README files
Apple Sample Code (606 projects)
- Two fetch methods: GitHub (recommended) or Apple website
- Full-text search across all source files
- 18,000+ indexed Swift files
Apple Archive Legacy Guides (~75 pages)
- Pre-2016 programming guides (Core Animation, Quartz 2D, Core Text, etc.)
- Deep conceptual knowledge not in modern docs
- Excluded from search by default (use
--include-archive)
2. Bundled Resources
Cupertino includes pre-indexed catalog data bundled directly into the application:
Swift Packages Catalog (9,699 packages)
- Manually curated from Swift Package Index + GitHub API
- Includes package metadata, stars, licenses, descriptions
- Updated periodically by maintainers
Sample Code Catalog (606 entries)
- Apple's official sample code projects
- Includes titles, descriptions, frameworks, download URLs
- Bundled because Apple's catalog doesn't change frequently
Priority Packages (36 curated packages)
- Apple official packages (31) + essential ecosystem packages (5)
- High-priority Swift packages for quick access
These catalogs are indexed during cupertino save and enable instant search without requiring multi-hour downloads. You can still fetch package READMEs and sample code separately via cupertino fetch if needed.
3. Full-Text Search Engine
- Technology: SQLite FTS5 with BM25 ranking
- Features:
- Porter stemming (e.g., "running" matches "run")
- Framework filtering
- Snippet generation
- Sub-100ms query performance
- Size: ~1.1GB index for full documentation (138,000+ documents across 263 frameworks)
- Storage: Database must be on local filesystem - SQLite does not work reliably on network drives (NFS/SMB)
4. Model Context Protocol Server
- Resources: Direct access to documentation pages
apple-docs://{framework}/{page}swift-evolution://{proposal-id}
- Tools: Search and read capabilities for AI agents
- Documentation Tools (requires
cupertino save):search_docs- Full-text search across all documentationlist_frameworks- List available frameworksread_document- Read document by URI with format option- Parameters:
uri(required),format(optional:jsonormarkdown, default:json) - JSON format returns the full structured document data (recommended for AI)
- Markdown format returns rendered content for human reading
- Parameters:
- Sample Code Tools (requires
cupertino index):search_samples- Search sample code projects and fileslist_samples- List all indexed sample projectsread_sample- Read sample project README and metadataread_sample_file- Read specific source file from a sample
- Documentation Tools (requires
5. Intelligent Crawling
- Resumable: Continue interrupted crawls from saved state
- Change Detection: Skip unchanged pages on updates
- Respectful: 0.5s default delay between requests (configurable)
- Deduplication: Automatic URL queue management
- Priority Queues: Important content fetched first
Commands
| Command | Description |
|---|---|
cupertino |
Start MCP server (default) |
cupertino setup |
Download pre-built databases from GitHub |
cupertino serve |
Start MCP server |
cupertino fetch |
Download documentation |
cupertino save |
Build search index |
cupertino search |
Search documentation from CLI |
cupertino read |
Read full document by URI |
cupertino doctor |
Check server health |
cupertino index |
Index sample code for search |
See docs/commands/ for detailed usage and options.
Architecture
Cupertino uses an ExtremePackaging architecture with 9 consolidated packages:
Foundation Layer:
├─ MCP # Consolidated MCP framework (Protocol + Transport + Server)
├─ Logging # os.log infrastructure
└─ Shared # Configuration & models
Infrastructure Layer:
├─ Core # Crawler & downloaders
└─ Search # SQLite FTS5 search
Application Layer:
├─ MCPSupport # Resource providers
├─ SearchToolProvider # Search tool implementations
└─ Resources # Embedded resources
Executables:
├─ CLI # Unified cupertino binary
├─ TUI # Terminal UI (cupertino-tui)
└─ MockAIAgent # Testing tool (mock-ai-agent)
Data Flow
1. Fetch: cupertino fetch --type docs
↓
WKWebView → HTML → Markdown → disk (~/.cupertino/docs/)
2. Save: cupertino save
↓
Markdown files → SQLite FTS5 index (~/.cupertino/search.db)
3. Serve: cupertino serve
↓
MCP Server (stdio) ← JSON-RPC ← Claude Desktop
↓
DocsResourceProvider + CupertinoSearchToolProvider
Key Design Principles
- Swift 6.2 Concurrency: 100% strict concurrency checking with actors and async/await
- Value Semantics: Immutable structs by default, Sendable conformance
- Actor Isolation: @MainActor for WKWebView, actors for shared state
- Explicit Dependencies: No singletons, clear dependency injection
- Separation of Concerns: Crawling → Indexing → Serving as distinct phases
Development
Build System
# Show all available commands
make help
# Common tasks
make build # Build release binaries
sudo make install # Install to /usr/local/bin
sudo make update # Rebuild and reinstall
make test # Run all tests
make clean # Clean build artifacts
# Development workflow
make test-unit # Fast unit tests only
make test-integration # All tests (includes network calls)
make format # Format code with SwiftFormat
make lint # Lint with SwiftLint
Testing
Test Suite:
- 93 tests across 7 test suites
- 100% pass rate
- ~350 seconds duration (includes real network crawling)
Test Categories:
- Web Crawl Tests - Real Apple documentation fetching
- Fetch Command Tests - Package/code downloading
- Save Command Tests - Search index building
- MCP Tests - Server health, tool/resource providers
- Core Tests - Search, logging, state management
Logging
Cupertino uses os.log for structured logging:
# View all logs
log show --predicate 'subsystem == "com.cupertino"' --last 1h
# View specific category
log show --predicate 'subsystem == "com.cupertino" AND category == "crawler"' --last 1h
# Stream live logs
log stream --predicate 'subsystem == "com.cupertino"'
Categories: crawler, mcp, search, cli, transport, pdf, evolution, samples
Performance
| Operation | Time | Size |
|---|---|---|
| Build CLI | 10-15s | 4.3MB |
| Crawl 21,000+ pages | 20-24 hours | 2-3GB |
| Swift Evolution | 2-5 min | 429 proposals |
| Swift.org docs | 5-10 min | 501 pages |
| Build search index | 2-5 min | ~160MB |
| Search query | <100ms | - |
Why Crawling Takes 20+ Hours
The crawler respects Apple's servers with a 0.5 second default delay between each request (configurable):
- 13,000 pages × 0.5s = 6,500 seconds (~1.8 hours minimum)
- Plus page rendering, parsing, and saving time
- Total: ~20-24 hours for initial full crawl
This is a one-time operation. Incremental updates use change detection to skip unchanged pages and complete much faster.
Example Use Cases
1. Offline Documentation Archive
# Download everything for offline access
cupertino fetch --type docs --max-pages 15000
cupertino fetch --type evolution
cupertino save
2. Framework-Specific Research
# Just SwiftUI documentation
cupertino fetch --type docs \
--start-url "https://developer.apple.com/documentation/swiftui" \
--max-pages 500
3. AI-Assisted Development
# Serve documentation to Claude
cupertino serve
# Then ask Claude: "How do I use @Observable in SwiftUI?"
4. Custom Documentation Workflows
# Multiple sources with custom paths
cupertino fetch --type docs --output-dir ~/docs/apple
cupertino fetch --type evolution --output-dir ~/docs/evolution
cupertino save --base-dir ~/docs --search-db ~/docs/search.db
cupertino serve --docs-dir ~/docs/apple --search-db ~/docs/search.db
Documentation
- DEVELOPMENT.md - Build, test, contribute, and release workflow
- docs/ARCHITECTURE.md - Technical deep-dives (Concurrency, MCP, WKWebView testing)
- docs/DEPLOYMENT.md - Homebrew distribution and CI/CD setup
- docs/commands/ - Command-specific documentation
Command Documentation
Each command has detailed documentation:
- docs/commands/fetch/ - Download documentation
- docs/commands/save/ - Build search indexes
- docs/commands/serve/ - Start MCP server
- docs/commands/search/ - Search documentation from CLI
- docs/commands/doctor/ - Check server health
Contributing
Issues and pull requests are welcome! I'd love to hear how you're using Cupertino with your AI workflow.
For questions and discussion, use GitHub Discussions.
I prefer collaboration over competition — if you're working on something similar, let's find ways to work together.
Don't hesitate to submit a PR because of code style. I'd rather have your contribution than perfect formatting.
By participating in this project you agree to abide by the Contributor Covenant Code of Conduct.
For development setup, see DEVELOPMENT.md.
Project Status
Version: 0.3.4Status: 🚧 Active Development
- ✅ All core functionality working
- ✅ 93 tests passing (100% pass rate)
- ✅ 0 lint violations
- ✅ Swift 6.2 compliant with 100% strict concurrency checking
- ✅ All production bugs resolved
License
MIT License - see LICENSE for details
Acknowledgments
- Built with Swift 6.2 and Swift Package Manager
- Uses swift-argument-parser for CLI
- Implements Model Context Protocol specification
- Inspired by the need for offline Apple documentation access
Related Repositories
- cupertino-desktop - Native macOS desktop app with graphical interface
- cupertino-docs - Pre-built documentation archive for quick installation
- cupertino-sample-code - Apple sample code repository mirror
The docs and sample-code repositories will be used by the planned make install (full) command (see #52), providing pre-built documentation and sample code to avoid the initial 20+ hour crawl.
Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
Note: This tool is for educational and development purposes. Respect Apple's Terms of Service when using their documentation.