Package Exports
- apple-developer-docs-mcp
- apple-developer-docs-mcp/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (apple-developer-docs-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Apple Developer Docs MCP Server
I despise reading docs on https://developer.apple.com. This MCP server will do that for you.
Features
- Search Apple Developer Documentation - Find APIs, frameworks, guides, samples, and videos
- Fetch Full Documentation Content - Get detailed content from any Apple Developer documentation page
- Download Code Samples - Download and analyze Apple's sample code projects
- AI-Powered Summarization - Search, fetch, and summarize documentation with key insights tailored to your questions
Available Tools
search_apple_docs
Search Apple Developer Documentation for APIs, frameworks, guides, samples, and videos.
get_apple_doc_content
Get detailed content from a specific Apple Developer Documentation page by recursively fetching and parsing its JSON API data.
download_apple_code_sample
Download, unzip, and analyze Apple Developer code samples. Works with documentation URLs from search_apple_docs results or direct ZIP URLs. Extracts sample code to ~/AppleSampleCode/
.
research_apple_docs
Research Apple Developer Documentation and research a direct answer to the user question. Combines search, content fetching, and intelligent summarization to provide actionable information tailored to your specific question. Prefer for simple docs lookups and comprehensive answer based on multiple documentation sources in one go.
Usage
- Launch VS Code
> MCP: Add Server...
- Select npm Package
apple-developer-docs-mcp
.vscode/mcp.json
{
"servers": {
"apple-developer-docs": {
"command": "npx",
"args": [
"apple-developer-docs-mcp"
]
}
}
}