mcp-decisive
Version:
MCP server for WRAP decision-making framework with structured output
7 lines • 340 B
JavaScript
import { z } from 'zod';
// Input schema for the prompt with optional problem parameter
export const identifyIssuePromptSchema = z.object({
problem: z.string().optional().describe("Problem description provided by the user")
});
export const identifyIssuePromptParams = identifyIssuePromptSchema.shape;
//# sourceMappingURL=schema.js.map