UNPKG

mcp-wayback-machine

Version:

MCP server and CLI tool for interacting with the Wayback Machine without API keys

28 lines (24 loc) 605 B
/** * * Cache Management tool — clears the response cache. */ import * as z from "zod"; export declare const ClearCache: z.ZodObject<{}, z.core.$strip>; export type ClearCache = z.output<typeof ClearCache>; interface ClearCacheResult { success: boolean; message: string; } /** * * Clear all cached API responses. */ export declare function clearCache(): Promise<ClearCacheResult>; /** * * Get cache status information. */ export declare function getCacheStatus(): { success: boolean; message: string; memoryEntries: number; }; export {}; //# sourceMappingURL=cache.d.ts.map