UNPKG

mcp-wayback-machine

Version:

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

16 lines 527 B
/** * Health check tool — returns server status without hitting external APIs. * Useful for connectivity tests, health checks, and as a lightweight * way for clients to verify the server is responding. */ import * as z from "zod"; export declare const Health: z.ZodObject<{}, z.core.$strip>; export type Health = z.output<typeof Health>; interface HealthResult { status: string; version: string; server: string; } export declare function health(): HealthResult; export {}; //# sourceMappingURL=health.d.ts.map