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

15 lines 531 B
import type { SearchResult } from './search-result-parser.js'; /** * Formats search results for display */ export declare function formatSearchResults(results: SearchResult[], query: string, filterType: string, searchUrl: string): string; /** * Parse search results with reduced complexity */ export declare function parseSearchResults(html: string, query: string, searchUrl: string, filterType?: string): { content: Array<{ type: string; text: string; }>; }; //# sourceMappingURL=search-parser.d.ts.map