mcp-wayback-machine
Version:
MCP server and CLI tool for interacting with the Wayback Machine without API keys
26 lines • 715 B
TypeScript
/**
* Get Archived URL tool - Retrieves archived versions of URLs
*/
import { z } from 'zod';
export declare const GetArchivedUrlSchema: z.ZodObject<{
url: z.ZodString;
timestamp: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
url: string;
timestamp?: string | undefined;
}, {
url: string;
timestamp?: string | undefined;
}>;
export type GetArchivedUrlInput = z.infer<typeof GetArchivedUrlSchema>;
/**
* Get an archived version of a URL
*/
export declare function getArchivedUrl(input: GetArchivedUrlInput): Promise<{
success: boolean;
message: string;
archivedUrl?: string;
timestamp?: string;
available?: boolean;
}>;
//# sourceMappingURL=retrieve.d.ts.map