systemprompt-mcp-interview
Version:
A specialized Model Context Protocol (MCP) server that enables AI-powered interview roleplay scenarios
14 lines (13 loc) • 513 B
TypeScript
import { CreateMessageResult } from "@modelcontextprotocol/sdk/types.js";
/**
* Handles sending an email via SystemPrompt API
* @param result The LLM result
* @returns The tool response
*/
export declare function handleConfigureInterviewCallback(result: CreateMessageResult): Promise<string>;
/**
* Handles saving the CV summary to SystemPrompt
* @param result The LLM result
* @returns The tool response
*/
export declare function handleSummarizeCVCallback(result: CreateMessageResult): Promise<string>;