mcp-windows-notify
Version:
Windows notification MCP server for AI development tools - Get desktop notifications when AI tasks complete
24 lines • 740 B
TypeScript
import { NotificationConfig, NotificationResult } from './types.js';
export declare class WindowsNotifier {
/**
* 发送Windows系统通知
*/
sendNotification(options: NotificationConfig): Promise<NotificationResult>;
/**
* 获取图标路径
*/
private getIconPath;
/**
* 发送任务完成通知
*/
notifyTaskComplete(taskName: string, details?: string): Promise<NotificationResult>;
/**
* 发送错误通知
*/
notifyError(errorMessage: string, details?: string): Promise<NotificationResult>;
/**
* 发送提醒通知
*/
notifyReminder(message: string, subtitle?: string): Promise<NotificationResult>;
}
//# sourceMappingURL=notification.d.ts.map