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

28 lines 1.23 kB
/** * WWDC Video MCP Tool Handlers */ /** * List WWDC videos */ export declare function handleListWWDCVideos(year?: string, topic?: string, hasCode?: boolean, limit?: number): Promise<string>; /** * Search WWDC content */ export declare function handleSearchWWDCContent(query: string, searchIn?: 'transcript' | 'code' | 'both', year?: string, language?: string, limit?: number): Promise<string>; /** * Get WWDC video details */ export declare function handleGetWWDCVideo(year: string, videoId: string, includeTranscript?: boolean, includeCode?: boolean): Promise<string>; /** * Get WWDC code examples */ export declare function handleGetWWDCCodeExamples(framework?: string, topic?: string, year?: string, language?: string, limit?: number): Promise<string>; /** * Browse WWDC topics */ export declare function handleBrowseWWDCTopics(topicId?: string, includeVideos?: boolean, year?: string, limit?: number): Promise<string>; /** * Find related WWDC videos */ export declare function handleFindRelatedWWDCVideos(videoId: string, year: string, includeExplicitRelated?: boolean, includeTopicRelated?: boolean, includeYearRelated?: boolean, limit?: number): Promise<string>; //# sourceMappingURL=wwdc-handlers.d.ts.map