mcp-casual-interview
Version:
MCP server for casual interview preparation workflow management
22 lines (19 loc) • 778 B
JavaScript
import { toolParams, outputSchema } from './schema.js';
import { promptsHandler } from './handler.js';
const toolDescription = `
プロンプトを取得するためのツールです。
利用可能なプロンプト:
- init_attract: カジュアル面談の事前準備を行うための初期化プロンプト
変数の置換をサポートしており、プロンプト内の {variable_name} を指定した値で置き換えることができます。
例:
- name: "init_attract"
- variables: { "candidate_background": "候補者の経歴情報..." }
`.trim();
export const promptsTool = {
name: 'prompts',
description: toolDescription,
parameters: toolParams,
outputSchema: outputSchema,
handler: promptsHandler
};
//# sourceMappingURL=index.js.map