EveryDev.ai
Subscribe
Home
Tools

3,844+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. notifkit
    notifkit icon

    notifkit

    AI Infrastructure

    Self-hosted notification infrastructure that handles email, SMS, push, and webhooks with a single notify() call, including preferences, quiet hours, retries, fallback, scheduling, and workflows.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully self-hosted, MIT-licensed. No plans, no seats, no per-message fee. Run on your own servers.

    Engagement

    Available On

    Web
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    AI InfrastructureMCP ServersWorkflow Automation

    Alternatives

    Forth MCPInsForgeOrch8 Engine
    Developer
    devkitshqdevkitshq builds self-hosted developer infrastructure tools,…

    Listed Sep 2026

    About notifkit

    notifkit is a self-hosted, MIT-licensed notification infrastructure library built by devkitshq. It collapses the entire notification delivery stack — multi-channel routing, preferences, quiet hours, retries, fallback, scheduling, durable workflows, and delivery logs — into a single typed notify() call. The project is written in TypeScript, runs on Node.js 22+, and stores state in PostgreSQL and Redis.

    What It Is

    notifkit is an orchestration engine and typed SDK for product notifications. Rather than replacing a SaaS like Customer.io or SendGrid, it is the durable delivery layer that runs inside your own infrastructure using your own provider accounts. You bring credentials for Resend, Firebase Cloud Messaging, Twilio, Slack, Telegram, Discord, or WhatsApp; notifkit handles everything between your application code and the provider API. The core platform source code is publicly available on GitHub under the MIT License, making it genuinely open source.

    Architecture and Deployment Model

    notifkit runs as an HTTP REST API server alongside a set of background worker pipelines — enricher, decision engine, scheduler, and delivery — all backed by Redis Streams and PostgreSQL:

    • Single-process mode (services: ["all"]): API and all workers in one Node.js process, suitable for small apps and staging.
    • Distributed mode: stateless API servers behind a load balancer with horizontally scaled worker pools consuming from Redis Streams consumer groups.
    • Development: Docker is the only prerequisite; notifkit auto-starts throwaway PostgreSQL and Redis containers via Testcontainers.
    • Production: Node 22+, a real PostgreSQL instance, and a Redis instance; migrations run via drizzle-kit.

    The delivery pipeline processes every notify() call through deduplication, preference checks, quiet-hours evaluation, template rendering, suppression list checks, delivery, and retry/fallback — in that order.

    Reliability and Failure Handling

    The project ships with a dedicated chaos test suite covering crash recovery, infrastructure reconnection, and load scenarios:

    • Crash testing: workers killed with SIGKILL mid-send; Redis Streams consumer group PEL re-claims ensure zero lost messages.
    • Infrastructure recovery: PostgreSQL and Redis connections severed and restored under live traffic.
    • Load testing: bursts of 10,000+ notifications across parallel worker pools, checking queue drain speed and memory stability.
    • Idempotency: 24-hour deduplication via idempotency keys prevents duplicate sends on retries or replays.
    • Fallback chains: ordered multi-channel fallback (e.g., push → email → SMS) with circuit breakers per provider.

    Agent-Operable via MCP

    notifkit ships an MCP server (@notifkit/mcp) that exposes the full REST API surface to AI agents. Compatible with Claude Code, Cursor, Claude Desktop, Gemini, and any MCP-compatible agent, it allows agents to send notifications, run campaigns, inspect delivery logs, manage templates, trigger workflows, and replay dead-letter messages — all through the same API key the application uses. The homepage demonstrates a Claude session queuing a 200-recipient campaign, checking stats, and diagnosing suppressed deliveries without opening a browser dashboard.

    Channel and Provider Coverage

    A single notify() call can fan out across eight channels simultaneously:

    • Email: Resend (@notifkit/provider-resend)
    • Push: Firebase Cloud Messaging (@notifkit/provider-fcm)
    • SMS: Twilio (@notifkit/provider-twilio)
    • Chat: Slack, Telegram, Discord, WhatsApp (Meta Cloud API)
    • Webhooks: any HTTP endpoint

    Any provider not covered by a first-party package can be added by implementing a Transport class with a single send() method.

    Durable Workflows

    Beyond one-off notifications, notifkit supports multi-step stateful workflows using step.wait(), step.waitForEvent(), and step.notify(). A workflow can suspend for days, resume after a matching event arrives, and survive multiple deploys in between — the homepage example shows a cart-recovery workflow that waits 45 minutes, listens for an order.placed event for 24 hours, and only sends a discount nudge if the cart is still abandoned. Workflows are defined in code, reviewed in pull requests, and rolled back with git revert.

    Current Status

    The repository was created in July 2026 and last pushed in September 2026, with 113 stars and 0 open issues as of the latest metadata. The project's author states it runs in production at their own company, according to the README, delivering over 100,000 notifications per day across email, push, and OTPs.

    notifkit - 1

    Community Discussions

    Be the first to start a conversation about notifkit

    Share your experience with notifkit, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully self-hosted, MIT-licensed. No plans, no seats, no per-message fee. Run on your own servers.

    • All channels: email, SMS, push, Slack, WhatsApp, Telegram, Discord, webhook
    • Durable workflows with wait and waitForEvent
    • Multi-channel fallback and circuit breakers
    • Quiet hours, preferences, and suppression
    • MCP server for AI agent operation

    Capabilities

    Key Features

    • Single notify() call for multi-channel delivery
    • Email, SMS, push, Slack, WhatsApp, Telegram, Discord, and webhook channels
    • Ordered multi-channel fallback with circuit breakers
    • Timezone-aware quiet hours with deferral
    • 24-hour idempotency key deduplication
    • Durable multi-step workflows with wait and waitForEvent
    • Redis Streams consumer groups for crash-safe delivery
    • Dead-letter queue with replay
    • Priority queues (low, normal, high, critical)
    • Future scheduling with sendAt and cancellation
    • Per-user channel and topic preferences
    • RFC 8058 one-click unsubscribe and hard-bounce suppression
    • Campaign targeting by user, list, segment, or topic
    • Template interpolation with destination-aware escaping
    • Optional LLM augmentation via Vercel AI SDK
    • MCP server for AI agent operation
    • Prometheus metrics, health, and readiness endpoints
    • Queryable delivery logs and campaign reporting
    • Multi-tenancy with isolated project keys and rate limits
    • Local read-only dashboard included
    • REST API accessible from any language
    • TypeScript typed SDK

    Integrations

    Resend
    Firebase Cloud Messaging (FCM)
    Twilio
    Slack
    WhatsApp (Meta Cloud API)
    Telegram
    Discord
    PostgreSQL
    Redis
    Claude
    ChatGPT
    Gemini
    Cursor
    Vercel AI SDK
    Testcontainers
    Prometheus
    Docker
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate notifkit and help others make informed decisions.

    Developer

    devkitshq

    devkitshq builds self-hosted developer infrastructure tools, with notifkit as its flagship product. The team runs notifkit in production at their own company, delivering over 100,000 notifications per day. They focus on giving developers full ownership of their notification stack — no SaaS lock-in, no per-message fees, and no data leaving your infrastructure.

    Read more about devkitshq
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Forth MCP icon

    Forth MCP

    A hosted relay that puts local, NAT'd, or firewalled MCP servers behind a single secure URL, enabling any MCP-speaking AI client to call your tools from anywhere.

    InsForge icon

    InsForge

    InsForge is an open-source backend platform built for AI coding agents, exposing databases, auth, storage, and functions through a semantic layer agents can understand and operate.

    Orch8 Engine icon

    Orch8 Engine

    A self-hosted, durable workflow orchestration engine built in Rust with a single binary and PostgreSQL or SQLite as the only dependency.

    Browse all tools

    Related Topics

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    381 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    231 tools

    Workflow Automation

    Agents designed to automate complex business and development workflows.

    323 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions