mcp-decisive
Version:
MCP server for WRAP decision-making framework with structured output
16 lines • 483 B
JavaScript
import { WIDEN_OPTIONS_PROMPT } from './prompt.js';
export const widenOptionsPromptHandler = async (args) => {
return {
description: "A prompt to guide users through the Widen Options phase of the WRAP process",
messages: [
{
role: "user",
content: {
type: "text",
text: WIDEN_OPTIONS_PROMPT
}
}
]
};
};
//# sourceMappingURL=handler.js.map