mcp-wayback-machine
Version:
MCP server and CLI tool for interacting with the Wayback Machine without API keys
25 lines • 714 B
TypeScript
/**
* Check Archive Status tool - Check if a URL has been archived
*/
import { z } from 'zod';
export declare const CheckArchiveStatusSchema: z.ZodObject<{
url: z.ZodString;
}, "strip", z.ZodTypeAny, {
url: string;
}, {
url: string;
}>;
export type CheckArchiveStatusInput = z.infer<typeof CheckArchiveStatusSchema>;
/**
* Check if a URL has been archived and get statistics
*/
export declare function checkArchiveStatus(input: CheckArchiveStatusInput): Promise<{
success: boolean;
message: string;
isArchived: boolean;
firstCapture?: string;
lastCapture?: string;
totalCaptures?: number;
yearlyCaptures?: Record<string, number>;
}>;
//# sourceMappingURL=status.d.ts.map