UNPKG

ntfy-mcp-server

Version:

An MCP (Model Context Protocol) server designed to interact with the ntfy push notification service. It enables LLMs and AI agents to send notifications to your devices with extensive customization options.

24 lines (23 loc) 452 B
/** * Environment variable configuration */ export declare const config: { environment: string; logLevel: string; server: { port: number; host: string; }; rateLimit: { windowMs: number; maxRequests: number; }; ntfy: { baseUrl: string; defaultTopic: string; apiKey: string; maxMessageSize: number; maxRetries: number; }; }; export default config;