UNPKG

mcp-casual-interview

Version:

MCP server for casual interview preparation workflow management

17 lines 595 B
import { toolParams, workflowResetOutputSchema } from './schema.js'; import { workflowResetHandler } from './handler.js'; import { toolDescription } from './prompts.js'; /** * Workflow Reset Tool * * Completely clears all local JSON storage state and resets the workflow * to the initial state for starting the interview preparation from scratch. */ export const workflowResetTool = { name: 'workflow_reset', description: toolDescription, parameters: toolParams, outputSchema: workflowResetOutputSchema, handler: workflowResetHandler }; //# sourceMappingURL=index.js.map