mcp-wayback-machine
Version:
MCP server and CLI tool for interacting with the Wayback Machine without API keys
17 lines • 532 B
JavaScript
/**
* 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";
import pkg from "../../package.json" with { type: "json" };
const VERSION = pkg.version;
export const Health = z.object({});
export function health() {
return {
status: "ok",
version: VERSION,
server: "mcp-wayback-machine",
};
}
//# sourceMappingURL=health.js.map