UNPKG

mcp-wayback-machine

Version:

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

23 lines 551 B
/** * Save URL tool - Archives a URL to the Wayback Machine */ import { z } from 'zod'; export declare const SaveUrlSchema: z.ZodObject<{ url: z.ZodString; }, "strip", z.ZodTypeAny, { url: string; }, { url: string; }>; export type SaveUrlInput = z.infer<typeof SaveUrlSchema>; /** * Save a URL to the Wayback Machine */ export declare function saveUrl(input: SaveUrlInput): Promise<{ success: boolean; message: string; jobId?: string; archivedUrl?: string; timestamp?: string; }>; //# sourceMappingURL=save.d.ts.map