UNPKG

systemprompt-mcp-interview

Version:

A specialized Model Context Protocol (MCP) server that enables AI-powered interview roleplay scenarios

29 lines 888 B
import { server } from "../server.js"; export async function sendOperationNotification(operation, message) { const notification = { method: "notifications/message", params: { _meta: {}, message: `Operation ${operation}: ${message}`, level: "info", timestamp: new Date().toISOString(), }, }; await sendNotification(notification); } export async function sendJsonResultNotification(message) { const notification = { method: "notifications/message", params: { _meta: {}, message: message, level: "info", timestamp: new Date().toISOString(), }, }; await sendNotification(notification); } async function sendNotification(notification) { await server.notification(notification); } //# sourceMappingURL=notifications.js.map