UNPKG

mcp-decisive

Version:

MCP server for WRAP decision-making framework with structured output

12 lines 516 B
import { registerOptionsParams, registerOptionsOutputSchema } from './schema.js'; import { createRegisterOptionsHandler } from './handler.js'; import { TOOL_DESCRIPTION } from './prompt.js'; export const createRegisterOptionsTool = (server) => ({ name: 'register_options', title: 'Register Options', description: TOOL_DESCRIPTION, parameters: registerOptionsParams, outputSchema: registerOptionsOutputSchema, handler: createRegisterOptionsHandler(server) }); //# sourceMappingURL=index.js.map