UNPKG

claude-code-emacs-mcp-server

Version:

MCP server for Claude Code Emacs integration

15 lines 677 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sendNotificationOutputSchema = exports.sendNotificationInputSchema = void 0; const zod_1 = require("zod"); // Input schema for sendNotification tool exports.sendNotificationInputSchema = zod_1.z.object({ title: zod_1.z.string().describe('Title of the notification'), message: zod_1.z.string().describe('Message content of the notification') }); // Output schema for sendNotification tool exports.sendNotificationOutputSchema = zod_1.z.object({ status: zod_1.z.enum(['success', 'error']), message: zod_1.z.string().optional() }); //# sourceMappingURL=notification-schema.js.map