mcp-windows-notify
Version:
Windows notification MCP server for AI development tools - Get desktop notifications when AI tasks complete
25 lines • 601 B
TypeScript
export interface NotificationConfig {
title?: string;
message: string;
sound?: boolean;
timeout?: number;
icon?: 'info' | 'warning' | 'error' | 'success';
subtitle?: string;
actions?: string[];
}
export interface NotificationResult {
success: boolean;
message: string;
timestamp: string;
}
export interface ServerConfig {
name: string;
version: string;
notificationDefaults: {
title: string;
sound: boolean;
timeout: number;
icon: 'info' | 'warning' | 'error' | 'success';
};
}
//# sourceMappingURL=types.d.ts.map