/** * Schema definition for ops tool * * Defines parameters for MCP server diagnostic operations. */ import { z } from 'zod'; export declare const opsToolSchema: z.ZodObject<{ operation: z.ZodEnum<["ping", "status"]>; message: z.ZodOptional; details: z.ZodOptional; }, "strip", z.ZodTypeAny, { operation: "status" | "ping"; message?: string | undefined; details?: boolean | undefined; }, { operation: "status" | "ping"; message?: string | undefined; details?: boolean | undefined; }>; export type OpsToolParams = z.infer; //# sourceMappingURL=schema.d.ts.map