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.
10 lines (9 loc) • 389 B
TypeScript
import { SendNtfyToolInput, SendNtfyToolResponse } from "./types.js";
/**
* Process and send a notification via ntfy
* Includes rate limiting, message validation, and retry logic
*
* @param params - Parameters for the ntfy message
* @returns Response with notification details
*/
export declare const processNtfyMessage: (params: SendNtfyToolInput) => Promise<SendNtfyToolResponse>;