UNPKG

systemprompt-mcp-gmail

Version:

A specialized Model Context Protocol (MCP) server that enables you to search, read, delete and send emails from your Gmail account, leveraging an AI Agent to help with each operation.

17 lines 551 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); } async function sendNotification(notification) { await server.notification(notification); } //# sourceMappingURL=notifications.js.map