MightyDillah

Apple Doc MCP

Community MightyDillah
Updated

"MCP server providing seamless access to Apple Developer Documentation with smart search and wildcard support

Apple Doc MCP

A Model Context Protocol (MCP) server that provides seamless access to Apple's Developer Documentation directly within your AI coding assistant.

๐Ÿ“‹ Changelog

1.0.1 Update

  • ๐ŸŽฏ Intelligent Fallback System: When searching for frameworks instead of symbols (e.g., "SwiftUI"), the server now provides helpful framework information and guidance on correct usage
  • ๐Ÿ”ง Tool Consolidation: Streamlined from 4 tools to 4 focused tools:
    • list_technologies - Browse all Apple frameworks
    • get_documentation - Get symbol or framework docs (handles both automatically)
    • search_symbols - Search with wildcards and filters
    • check_updates - Check for repository updates via git
  • ๐Ÿš€ Pre-built Distribution: No more manual building required - clone and use immediately
  • ๐Ÿงน Dynamic Framework Discovery: Removed all hard-coded framework lists for fully dynamic operation
  • โšก Automatic Update Notifications: Server automatically checks for updates on startup and notifies users when new versions are available
  • ๐Ÿ›ก๏ธ Enhanced Error Handling: Better null safety and professional error messages

๐Ÿš€ Features

  • ๐Ÿ” Smart Search: Find symbols across all Apple frameworks with wildcard support (*, ?)
  • ๐Ÿ“š Framework Browsing: Explore any Apple framework structure (SwiftUI, UIKit, Foundation, etc.)
  • ๐Ÿ“– Detailed Documentation: Get comprehensive symbol documentation with examples
  • ๐ŸŽฏ Advanced Filtering: Filter by platform (iOS, macOS, etc.), symbol type, or framework
  • โšก Real-time Data: Always up-to-date with Apple's latest documentation
  • ๐Ÿ”„ Auto-Update Alerts: Automatic notifications when repository updates are available
  • ๐Ÿง  AI-Optimized: Clean markdown output perfect for AI assistants

๐Ÿ“ฆ Installation

  1. Clone this repository:

    git clone https://github.com/MightyDillah/apple-doc-mcp.git
    cd apple-doc-mcp
    
  2. Ready to use! (Pre-built distribution included)

    # No build step required - just configure your MCP client
    

๐Ÿ”Œ Quick Setup

Step 1: Configure Your AI Assistant

Claude Desktop: Edit ~/.config/claude/claude_desktop_config.jsonCursor: Settings (Cmd/Ctrl + ,) โ†’ Extensions โ†’ MCPContinue.dev: Edit ~/.continue/config.jsonVS Code (Claude): Settings โ†’ MCP Servers

{
  "mcpServers": {
    "apple-doc-mcp": {
      "command": "node",
      "args": ["/path/to/apple-doc-mcp/dist/index.js"]
    }
  }
}

Replace /path/to/apple-doc-mcp with the actual path to your cloned repository.

Step 2: Restart & Test

  1. Restart your AI assistant
  2. Try: "List available Apple technologies"
  3. You should see 4 new tools available
  4. The server will automatically notify you if updates are available on startup

๐ŸŽฏ How to Use

Once configured, just talk naturally to your AI assistant. Here are examples:

Browse Available Technologies

"Use apple-doc-mcp to list all current Apple frameworks"
"Get the latest available Apple technologies from Apple's docs"
"Search Apple documentation for all available frameworks"

Explore a Framework

"Use apple-doc-mcp to browse SwiftUI framework structure"
"Get current UIKit topics from Apple documentation"
"Search Apple docs for Foundation framework details"

Search for Specific APIs

"Search Apple's SwiftUI docs for drag and drop APIs"
"Use apple-doc-mcp to find RPBroadcast* classes in ReplayKit"
"Look up current *View* symbols across Apple frameworks"
"Find all *Controller classes in UIKit using Apple docs"

Get Detailed Documentation

"Get the latest SwiftUI View protocol docs from Apple"
"Use apple-doc-mcp to look up UIViewController documentation"
"Search Apple's current docs for NSURLSession details"

The AI will automatically use the MCP tools to fetch current Apple documentation and provide comprehensive answers.

๐Ÿ› ๏ธ Available Tools

list_technologies

Browse all available Apple frameworks and technologies.

get_documentation

Get detailed documentation for symbols or frameworks (automatically detects type).

  • path (required): Documentation path (e.g., "documentation/SwiftUI/View") or framework name (e.g., "SwiftUI")

Examples:

{"path": "SwiftUI"}
{"path": "documentation/SwiftUI/View"}
{"path": "Foundation"}

search_symbols

Search for symbols across Apple frameworks with advanced filtering.

  • query (required): Search query with wildcard support
  • framework (optional): Search within specific framework
  • symbolType (optional): Filter by symbol type (class, protocol, struct, etc.)
  • platform (optional): Filter by platform (iOS, macOS, etc.)
  • maxResults (optional): Maximum results (default: 20)

Examples:

{"query": "RPBroadcast*"}
{"query": "*Controller", "framework": "UIKit"}
{"query": "*View*", "platform": "iOS", "maxResults": 5}

check_updates

Check for available updates from the git repository.

  • No parameters required
  • Shows current branch status, available updates, and update instructions
  • Note: The server automatically checks for updates on startup and displays notifications

๐Ÿšจ Troubleshooting

Server Won't Start

  • Ensure Node.js 18+ is installed
  • Verify the path in your MCP config points to the correct dist/index.js location
  • Check your MCP configuration syntax
  • Restart your AI assistant after config changes

"0 tools" Showing Up

  • This usually means the server isn't starting properly
  • Check the file path in your configuration is correct and absolute
  • The dist directory is included - no build step required
  • Try testing the server directly: node /path/to/apple-doc-mcp/dist/index.js

No Results Found

  • Try broader search terms
  • Use wildcard patterns: "*View*" instead of "View"
  • Remove filters to expand search scope

Performance Issues

  • First search may be slower (builds cache)
  • Subsequent searches are much faster
  • Reduce maxResults for faster responses

โš™๏ธ Technical Details

  • 10-minute caching to avoid API rate limits
  • 15-second timeouts for reliable performance
  • Smart framework prioritization for faster searches
  • Graceful error handling for robust operation

๐Ÿ“‹ Requirements

  • Node.js: 18.0.0 or higher
  • Memory: ~50MB RAM during operation
  • Network: Internet connection to Apple's documentation API

๐Ÿค Contributing

Found a bug or want to add a feature? Contributions welcome!

  1. Fork the repository
  2. Create a feature branch
  3. Submit a pull request

See CONTRIBUTING.md for detailed guidelines.

MCP Server ยท Populars

MCP Server ยท New