@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
22 lines • 702 B
TypeScript
/**
* URL conversion utilities for Apple Developer Documentation
*/
/**
* Convert a web URL to a JSON API URL
* @param webUrl The web URL to convert
* @returns The corresponding JSON API URL
*/
export declare function convertToJsonApiUrl(webUrl: string): string | null;
/**
* Validate if URL is from Apple Developer domain
* @param url The URL to validate
* @returns True if valid Apple Developer URL
*/
export declare function isValidAppleDeveloperUrl(url: string): boolean;
/**
* Extract API name from URL
* @param url The URL to extract name from
* @returns The API name
*/
export declare function extractApiNameFromUrl(url: string): string;
//# sourceMappingURL=url-converter.d.ts.map