We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MightyDillah/apple-doc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import type { FrameworkData, SymbolData, Technology, SearchResult } from './apple-client/types/index.js';
export type { PlatformInfo, FrameworkData, SearchResult, SymbolData, Technology, TopicSection, ReferenceData, } from './apple-client/types/index.js';
export declare class AppleDevDocsClient {
extractText: (abstract?: Array<{
text: string;
type: string;
}>) => string;
formatPlatforms: (platforms: import("./apple-client/types/index.js").PlatformInfo[]) => string;
private readonly httpClient;
private readonly fileCache;
constructor();
getFramework(frameworkName: string): Promise<FrameworkData>;
refreshFramework(frameworkName: string): Promise<FrameworkData>;
getSymbol(path: string): Promise<SymbolData>;
getTechnologies(): Promise<Record<string, Technology>>;
refreshTechnologies(): Promise<Record<string, Technology>>;
searchFramework(frameworkName: string, query: string, options?: {
maxResults?: number;
platform?: string;
symbolType?: string;
}): Promise<SearchResult[]>;
}