mcp-decisive
Version:
MCP server for WRAP decision-making framework with structured output
46 lines • 1.17 kB
TypeScript
import { z } from 'zod';
export declare const exampleToolSchema: z.ZodObject<{
message: z.ZodString;
count: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
message: string;
count?: number | undefined;
}, {
message: string;
count?: number | undefined;
}>;
export declare const exampleOutputSchema: z.ZodObject<{
processed: z.ZodString;
items: z.ZodArray<z.ZodObject<{
id: z.ZodString;
value: z.ZodString;
}, "strip", z.ZodTypeAny, {
value: string;
id: string;
}, {
value: string;
id: string;
}>, "many">;
timestamp: z.ZodString;
}, "strip", z.ZodTypeAny, {
processed: string;
items: {
value: string;
id: string;
}[];
timestamp: string;
}, {
processed: string;
items: {
value: string;
id: string;
}[];
timestamp: string;
}>;
export type ExampleToolParams = z.infer<typeof exampleToolSchema>;
export declare const exampleParams: {
message: z.ZodString;
count: z.ZodOptional<z.ZodNumber>;
};
export type ExampleResponse = z.infer<typeof exampleOutputSchema>;
//# sourceMappingURL=schema.d.ts.map