UNPKG

mcp-casual-interview

Version:

MCP server for casual interview preparation workflow management

16 lines 653 B
import { progressUpdateOutputSchema, toolParams } from './schema.js'; import { progressUpdateHandler } from './handler.js'; /** * Progress Update Tool * * Updates workflow progress when a step is completed and returns the new state * with next action guidance. */ export const progressUpdateTool = { name: 'progress_update', description: 'カジュアル面談事前準備の進捗を更新し、次のアクションを取得します。完了したステップを指定してください。', parameters: toolParams, outputSchema: progressUpdateOutputSchema, handler: progressUpdateHandler }; //# sourceMappingURL=index.js.map