mcp-decisive
Version:
MCP server for WRAP decision-making framework with structured output
36 lines • 966 B
TypeScript
import { z } from 'zod';
export declare const registerOptionsSchema: z.ZodObject<{
options: z.ZodArray<z.ZodString, "many">;
}, "strip", z.ZodTypeAny, {
options: string[];
}, {
options: string[];
}>;
export declare const registerOptionsOutputSchema: z.ZodObject<{
options: z.ZodArray<z.ZodObject<{
id: z.ZodString;
text: z.ZodString;
}, "strip", z.ZodTypeAny, {
id: string;
text: string;
}, {
id: string;
text: string;
}>, "many">;
}, "strip", z.ZodTypeAny, {
options: {
id: string;
text: string;
}[];
}, {
options: {
id: string;
text: string;
}[];
}>;
export type RegisterOptionsParams = z.infer<typeof registerOptionsSchema>;
export declare const registerOptionsParams: {
options: z.ZodArray<z.ZodString, "many">;
};
export type RegisterOptionsResponse = z.infer<typeof registerOptionsOutputSchema>;
//# sourceMappingURL=schema.d.ts.map