UNPKG

@kimsungwhee/apple-docs-mcp

Version:

MCP server for Apple Developer Documentation - Search iOS/macOS/SwiftUI/UIKit docs, WWDC videos, Swift/Objective-C APIs & code examples in Claude, Cursor & AI assistants

19 lines 710 B
/** * Enhanced analysis options */ interface EnhancedAnalysisOptions { includeRelatedApis?: boolean; includeReferences?: boolean; includeSimilarApis?: boolean; includePlatformAnalysis?: boolean; } /** * Fetch JSON documentation from Apple Developer Documentation with optional enhanced analysis * @param url The URL of the documentation page * @param options Enhanced analysis options * @param maxDepth Maximum recursion depth (to prevent infinite loops) * @returns Formatted documentation content */ export declare function fetchAppleDocJson(url: string, options?: EnhancedAnalysisOptions | number, maxDepth?: number): Promise<any>; export {}; //# sourceMappingURL=doc-fetcher.d.ts.map