MCP Catalogs
Home

apple-docs-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

apple-docs-mcp
by kimsungwhee
filesystem
by modelcontextprotocol
Stars★ 1,259★ 85,748
30d uses
Score5677
Official
Categories
Developer ToolsAI / LLM ToolsSearch
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

apple-docs-mcp · Summary

Apple Developer Documentation MCP server providing searchable access to official docs, APIs, WWDC videos, and code examples across Apple platforms.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

apple-docs-mcp · Use cases

  • Quickly search Apple documentation for specific APIs, classes, or methods while coding
  • Access SwiftUI and UIKit documentation with related API suggestions
  • Search and watch WWDC sessions directly from AI assistants to learn new technologies
  • Get code examples and implementation guidance for Apple frameworks
  • Track documentation updates and beta features for new iOS/macOS releases

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

apple-docs-mcp · Install

Claude Desktop (Recommended)

Add this to your Claude Desktop configuration: **macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "apple-docs": {
      "command": "npx",
      "args": ["-y", "@kimsungwhee/apple-docs-mcp"]
    }
  }
}

Restart Claude Desktop and start asking about Apple APIs!

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "apple-docs": {
      "command": "npx",
      "args": ["-y", "@kimsungwhee/apple-docs-mcp"]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.