npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

apple-dev-mcp-server

v1.1.2

Published

MCP Server for Apple Development - Fetches docs, analyzes build logs, checks Swift Evolution

Readme

Apple Dev MCP Server 🍎

npm version

A Model Context Protocol (MCP) server for Apple development assistance. Provides tools for fetching live Apple documentation directly from developer.apple.com, analyzing Xcode build errors, and checking Swift Evolution proposal status.

✨ Features

  • 🔴 Live Documentation - Fetches real-time documentation from Apple's official API
  • 🔧 Xcode Error Analysis - Intelligent parsing and fix suggestions for build errors
  • 📋 Swift Evolution Tracking - Check proposal status for Swift language features

🔧 Tools

| Tool | Description | |------|-------------| | fetch_latest_apple_docs | Fetches live Apple Developer Documentation from developer.apple.com | | xcode_diagnostic_analyzer | Analyzes Xcode build logs and provides fix-it suggestions | | swift_evolution_check | Checks Swift Evolution proposal status for language features |

📦 Installation

Via npm (Recommended)

npm install -g apple-dev-mcp-server

Via npx (No install required)

npx apple-dev-mcp-server

From Source

git clone https://github.com/erdncyz/apple-dev-mcp-server.git
cd apple-dev-mcp-server
npm install
npm run build

Configuration

For Claude Desktop

Add to your ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "apple-dev": {
      "command": "node",
      "args": ["/Users/YOUR_USERNAME/Desktop/apple-dev-mcp-server/dist/index.js"]
    }
  }
}

For VS Code with GitHub Copilot

Add to your VS Code settings (.vscode/settings.json or user settings):

{
  "github.copilot.chat.mcpServers": {
    "apple-dev": {
      "command": "node",
      "args": ["${userHome}/Desktop/apple-dev-mcp-server/dist/index.js"]
    }
  }
}

For Other MCP Clients

The server uses stdio transport and can be integrated with any MCP-compatible client:

node /path/to/apple-dev-mcp-server/dist/index.js

Usage Examples

Fetch Apple Documentation

Use the fetch_latest_apple_docs tool to get documentation for NavigationStack

Analyze Build Errors

Use xcode_diagnostic_analyzer to analyze this error:
"cannot find type 'NavigationStack' in scope"

Check Swift Evolution

Use swift_evolution_check to verify if 'nonisolated(unsafe)' is available in Swift 5.10

🔴 Live Documentation API

This MCP server uses Apple's undocumented JSON API to fetch real-time documentation:

https://developer.apple.com/tutorials/data/documentation/{framework}/{symbol}.json

Supported Frameworks

SwiftUI, UIKit, Foundation, Observation, SwiftData, Combine, RealityKit, ARKit, CoreData, CoreML, MapKit, CloudKit, HealthKit, StoreKit, AVFoundation, and more.

Example Response

# 📚 Apple Developer Documentation: NavigationStack

> ✅ Live documentation from developer.apple.com

**Type:** Structure
**Framework:** SwiftUI
**Availability:** iOS 16.0+, iPadOS 16.0+, macOS 13.0+, tvOS 16.0+, visionOS 1.0+, watchOS 9.0+

## Declaration
@MainActor struct NavigationStack<Data, Root> where Root : View

## Overview
A view that displays a root view and enables you to present additional views...

Development

# Watch mode for development
npm run dev

# Build for production
npm run build

# Run the server
npm start

Project Structure

apple-dev-mcp-server/
├── src/
│   ├── index.ts                 # Main MCP server entry point
│   └── tools/
│       ├── fetch-apple-docs.ts  # Live documentation fetcher
│       ├── xcode-diagnostic-analyzer.ts  # Build error analyzer
│       └── swift-evolution-check.ts      # Swift Evolution checker
├── dist/                        # Compiled JavaScript
├── package.json
├── tsconfig.json
└── README.md

Requirements

  • Node.js >= 18.0.0
  • npm or yarn

📄 License

MIT

🔗 Links


Note: This is a community tool and is not affiliated with or endorsed by Apple Inc.