EveryDev.ai
Subscribe
Home
Tools

3,804+ 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. Boop
    Boop icon

    Boop

    Monitoring Tools

    A tiny, self-hosted notification inbox for developers that pushes app events straight to your iPhone via Apple's APNs — one Go binary, one SQLite file, no relay or account system.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT license. Self-host on your own infrastructure.

    Engagement

    Available On

    Windows
    macOS
    Linux
    iOS
    Web

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Monitoring ToolsDevOps InfrastructureMCP Servers

    Alternatives

    xyOpsOpenObserveSentry MCP
    Developer
    Chris GregoriChris Gregori builds open-source developer tools, with Boop…

    Listed Sep 2026

    About Boop

    Boop is a self-hosted developer notification tool built by Chris Gregori and released under the MIT license. It lets your server-side apps POST events to a single Go binary, which stores them in SQLite and pushes them directly to your iPhone through Apple's APNs — with no hosted relay, no account system, and no telemetry. The project reached v1.3.0 in August 2026 and has attracted over 600 GitHub stars since its initial release.

    What It Is

    Boop is a lightweight, privacy-first alternative to hosted notification services for developers who want to know when something happens in their apps — a backup completed, a payment arrived, a cron job failed — without routing that data through a third-party cloud. You self-host the Go server, build and sign the iOS app yourself, and connect the two with a QR-code pairing flow. The embedded web UI manages projects, devices, and settings. There is no SaaS component; everything runs on your own infrastructure.

    Architecture and Deployment Model

    The server is a single static binary (or Docker container) with the Svelte web UI embedded. It stores all events in a SQLite file using WAL mode and pushes notifications directly to Apple's APNs using your own .p8 key. The push payload carries only the title, body, and event ID; the iOS app fetches the full event from your server using its own device credential. This design means sensitive event data never leaves your server unencrypted and is never stored by a third party.

    Deployment options include:

    • Docker Compose — docker compose up -d --build, data in ./data/boop.db
    • Pre-built binary — static, dependency-free binaries for Linux, macOS, and Windows (amd64 and arm64) attached to each GitHub release
    • Dokploy / Traefik — a dedicated docker-compose.dokploy.yml handles named volumes and proxy networking

    Integrations and Client Libraries

    Boop exposes a single REST endpoint (POST /api/v1/events) that any HTTP client can call. Official and community client libraries include:

    • Elixir — boop_ex (~> 1.1) with sync/async send, exception helpers, and an ErrorTracker plugin (boop_error_tracker)
    • Node.js — @boop/node (TypeScript, ESM + CJS, zero runtime dependencies, Node 18+)
    • Laravel — laravel-boop (community, maintained by Solution Forest, PHP 8.1+, Laravel 10–13)
    • Sentry SDK drop-in — Boop implements the Sentry envelope ingest protocol, so any server-side Sentry SDK can report to Boop by pointing its DSN at the Boop host with a project API key as the public key
    • curl / shell scripts / GitHub Actions — documented as first-class clients in the README

    An integration-llms.md prompt is included so an LLM can generate a conformant client for any other language.

    MCP Support for AI Agents

    Boop exposes a read-only Model Context Protocol (MCP) endpoint at /mcp using Streamable HTTP transport. Agents can query it with tools like list_events, search_events, get_event, and get_event_group to answer questions such as "what errors happened overnight?" or "what started failing after 14:00?". There is no LLM inside Boop; it serves structured event context to whatever agent or assistant you already use. The iOS app also offers a "Copy as Markdown" share action that formats an event — exception, stack trace, context, breadcrumbs — ready to paste into Claude, ChatGPT, or similar tools.

    Update: v1.3.0

    The latest release is v1.3.0, published on 2026-08-30. The project uses a vX.Y.Z tag scheme where the server, web UI, and iOS app share the same version number. Pushing a tag runs the full test suite and, if it passes, attaches pre-built binaries to the GitHub release automatically. The changelog is maintained in CHANGELOG.md in the repository. With 607 stars and 29 forks shortly after its August 2026 creation, the project has seen rapid early adoption in the developer self-hosting community.

    Boop - 1

    Community Discussions

    Be the first to start a conversation about Boop

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

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT license. Self-host on your own infrastructure.

    • Single Go binary with embedded web UI
    • SQLite storage
    • Direct APNs push notifications
    • Unlimited projects and events
    • MCP endpoint for AI agents

    Capabilities

    Key Features

    • Self-hosted notification inbox for developers
    • Direct APNs push notifications to iPhone
    • Single Go binary with embedded Svelte web UI
    • SQLite storage with WAL mode
    • QR-code device pairing flow
    • Event levels: info, success, warning, error, critical
    • Rich event data with exception, stacktrace, tags, context, breadcrumbs
    • Notification actions — up to 3 buttons per event
    • Event grouping by fingerprint
    • Silence rules to suppress pushes for known issues
    • Sensitive key redaction before storage
    • Sentry SDK drop-in DSN compatibility
    • Read-only MCP endpoint for AI agents
    • Copy event as Markdown for AI assistants
    • Admin auth with session-based login
    • Configurable data retention
    • Docker, binary, and Dokploy deployment options
    • GitHub Actions integration example
    • No hosted relay, no account system, no telemetry

    Integrations

    Apple APNs
    Elixir (boop_ex)
    Elixir ErrorTracker (boop_error_tracker)
    Node.js (@boop/node)
    Laravel (laravel-boop)
    Sentry SDKs (Python, Node, Go, Ruby, PHP)
    GitHub Actions
    Docker
    Dokploy
    Traefik
    Claude
    ChatGPT
    Model Context Protocol (MCP)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

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

    Developer

    Chris Gregori

    Chris Gregori builds open-source developer tools, with Boop as the flagship project — a self-hosted notification inbox that pushes app events directly to an iPhone via Apple's APNs. The project is written in Go with a Svelte web UI and is released under the MIT license. Gregori maintains the core server and iOS app while welcoming community client libraries from contributors.

    Read more about Chris Gregori
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    xyOps icon

    xyOps

    Open-source platform combining job scheduling, workflow automation, server monitoring, alerting, and incident response into a single cohesive system.

    OpenObserve icon

    OpenObserve

    Open source, petabyte-scale observability platform unifying logs, metrics, and traces with 140x lower storage costs than Elasticsearch.

    Sentry MCP icon

    Sentry MCP

    An MCP server that connects Sentry's error monitoring API directly to LLMs and coding agents, enabling natural language debugging of production issues, stack traces, and application performance data.

    Browse all tools

    Related Topics

    Monitoring Tools

    AI-enhanced monitoring solutions that provide real-time visibility into system performance, anomaly detection, and predictive alerting for proactive issue resolution.

    99 tools

    DevOps Infrastructure

    Platforms and tools for CI/CD pipelines and DevOps practices.

    78 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

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