mcp-decisive
Version:
MCP server for WRAP decision-making framework with structured output
16 lines • 529 B
TypeScript
import { z } from 'zod';
export declare const resetSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
export declare const resetOutputSchema: z.ZodObject<{
success: z.ZodBoolean;
message: z.ZodString;
}, "strip", z.ZodTypeAny, {
message: string;
success: boolean;
}, {
message: string;
success: boolean;
}>;
export declare const resetParams: {};
export type ResetParams = z.infer<typeof resetSchema>;
export type ResetResponse = z.infer<typeof resetOutputSchema>;
//# sourceMappingURL=schema.d.ts.map