mcp-decisive
Version:
MCP server for WRAP decision-making framework with structured output
14 lines • 776 B
TypeScript
import type { RequestedOption } from '../../../domain/term/option.js';
export declare const ELICITATION_MESSAGES: {
readonly MAIN_MESSAGE: (totalCount: number, reduceCount: number, options: RequestedOption[]) => string;
readonly VALIDATION_ERROR: (selected: number, required: number) => string;
readonly PARSE_ERROR: (input: string) => string;
readonly RANGE_ERROR: (invalidNumbers: number[], max: number) => string;
readonly CONFIRMATION_MESSAGE: (removedOptions: string[], remainingOptions: string[]) => string;
};
export declare const parseElicitationResponse: (response: any, originalOptions: RequestedOption[]) => {
success: boolean;
filteredOptions?: RequestedOption[];
error?: string;
};
//# sourceMappingURL=elicitation-prompts.d.ts.map