apple-developer-docs-mcp
Version:
An MCP server that fetches the right data from Apple's developer documentation site
16 lines • 772 B
TypeScript
/**
* Cache-aware version of fetchAppleDocJson
* @param url The URL of the documentation page
* @param maxDepth Maximum recursion depth (to prevent infinite loops)
* @param useCache Whether to use caching (default: true)
* @returns Formatted documentation content with cache metadata
*/
export declare function fetchAppleDocJsonCached(url: string, maxDepth?: number, useCache?: boolean): Promise<any>;
/**
* Fetch JSON documentation from Apple Developer Documentation
* @param url The URL of the documentation page
* @param maxDepth Maximum recursion depth (to prevent infinite loops)
* @returns Formatted documentation content
*/
export declare function fetchAppleDocJson(url: string, maxDepth?: number): Promise<any>;
//# sourceMappingURL=doc-fetcher.d.ts.map