blipr-mcp
The @blipr/mcp server lets AI agents send push notifications and engage in human-in-the-loop workflows via the Blipr iOS app.
Send push alerts (
send_alert): Push a notification to your phone with a message, optional title, priority (1=silent to 5=critical), emoji tags, and a tap-to-open URL — useful for task completions, build failures, or status updates.Send critical pages (
send_critical): Fire a priority-5 urgent alert that bypasses Focus/silent modes — reserved for genuinely time-sensitive situations like production outages.Ask yes/no questions and block for answer (
ask): Pose a binary question to your phone and block execution until you tap Yes or No — acts as an approval gate before consequential actions (e.g., dropping a table, force-pushing, spending money).Request acknowledgement and block (
request_ack): Send a message requiring explicit acknowledgement and block until the user taps "Acknowledge" — useful for checkpoints or confirming the human has seen something before the agent proceeds.Check replies to earlier prompts (
check_reply): Non-blockingly poll for a reply to an earlierask/request_ackthat timed out or was cancelled — replies are retained ~30 minutes, so the agent can resume without re-asking.Per-project topic routing: Direct alerts to specific topics (via tool argument,
.blipr-topicfile, orBLIPR_TOPICenv var) so notifications from different projects land in separate channels on your phone.
Sends push notifications to iOS devices via the Blipr service, supporting standard alerts, critical alerts, and human-in-the-loop approval questions that block until the user responds.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@blipr-mcpNotify me if the database migration fails."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@blipr/mcp
Previously published as
@applogico/blipr-mcp. That package is deprecated; new releases ship as@blipr/mcp. Update your MCP config tonpx -y @blipr/mcp.
An MCP server that lets AI agents send Blipr push alerts to your phone. Your agent finishes a long task, breaks a build, needs approval, or gets stuck — and it pages you. It can also ask you a question and block until you answer, for human-in-the-loop approval gates.
It's a thin stdio client: your MCP host (Claude Code, Cursor, …) launches it,
the agent calls a tool, and this process makes one outbound HTTPS POST to your
Blipr server. No inbound socket, nothing to host.
Claude Code ──stdio──► @blipr/mcp ──POST /blip/<topic>──► blipr.dev ──APNs──► 📱Setup
No install needed — npx fetches it on demand. Point it at a Blipr server
(blipr.dev or your own self-hosted instance).
Claude Code
claude mcp add blipr \
--env BLIPR_URL=https://blipr.dev \
-- npx -y @blipr/mcpCursor / Claude Desktop / any MCP host (JSON)
{
"mcpServers": {
"blipr": {
"command": "npx",
"args": ["-y", "@blipr/mcp"],
"env": {
"BLIPR_URL": "https://blipr.dev"
}
}
}
}Pick a topic (per project, not global)
Every blip goes to a topic, and each project should use its own, so alerts from different projects land separately on your phone. The topic for a call is resolved in this order:
topictool argument — the agent passes it on the call. Always wins..blipr-topicfile — per-project default. Put the topic name on the first line of a.blipr-topicfile in the project root; the server picks up the nearest one from its launch directory upward (#lines are comments).BLIPR_TOPICenv var — global fallback, kept for backward compatibility. Avoid it when one machine hosts several projects: a global default makes every project ping the same topic.
echo my-project-alerts > .blipr-topicThen subscribe to the same topic (my-project-alerts) in the Blipr iOS app,
and you'll get the agent's pushes on your phone.
Related MCP server: MCP-Pushover Bridge
Configuration
Setting | Default | Description |
|
| Base URL of your Blipr server (hosted or self-hosted). |
| (none) | Per-project default topic, nearest file from the launch directory upward. |
| (none) | Global fallback topic; lowest precedence (see "Pick a topic" above). |
Tools
send_alert
Send a push notification. Parameters:
message(required) — the alert body.title— short bold title.topic— topic to publish to; pass it explicitly (falls back to.blipr-topic, thenBLIPR_TOPIC).priority—1silent ·2low ·3default ·4time-sensitive (breaks Focus) ·5critical.tags— emoji shortcodes, e.g.["warning"].click— URL opened when the notification is tapped.
send_critical
A priority-5 page for things that genuinely can't wait. Bypasses silent/Focus when the Blipr app has Apple's Critical Alerts entitlement enabled; otherwise it's delivered as time-sensitive.
ask — human-in-the-loop yes/no (blocks)
Send a yes/no question to your phone and block until you tap an answer, then return it. This is an approval gate: the agent calls it before doing something consequential or irreversible and waits for your decision instead of guessing.
message(required) — the yes/no question.title— short bold title.topic— topic to publish to; pass it explicitly (falls back to.blipr-topic, thenBLIPR_TOPIC).priority— defaults to4(time-sensitive) since it needs an answer.tags— emoji shortcodes, e.g.["question"].timeout_seconds— how long to wait for your answer (default120).
Returns { responded, approved, value, message_id, topic }. Branch on
approved — it is true only when you tapped Yes, and false on No, a
timeout, or an error, so a refusal or non-answer can never be misread as a
go-ahead. On a timeout you get
{ responded: false, approved: false, reason: "timeout", message_id, topic }. If
it times out (or your MCP client cancels the call), you can still answer for
~30 min — pass the returned message_id to check_reply to resume.
Under the hood it publishes with reply: "binary", captures the message id
from the publish response, then long-polls
GET /blip/<topic>/<id>/reply?wait=… until you answer or the timeout
budget runs out.
request_ack — require acknowledgement (blocks)
Send a message that you must acknowledge, and block until you tap
"Acknowledge". Use it when the human has to see and confirm something before
the agent continues. Same parameters as ask; publishes with reply: "ack".
Returns { responded, message_id, topic } plus replied_at when acked, or
{ responded: false, reason: "timeout", … }. As with ask, on a timeout you can
resume later with check_reply and the returned message_id.
check_reply — resume / poll an earlier ask or request_ack
Look up whether you've replied to an earlier ask/request_ack — handy if the
blocking call timed out or your MCP client cancelled it. Pass the message_id
(and topic) it returned; non-blocking by default, or set wait_seconds to
briefly long-poll. Returns { responded, value?, replied_at? } (value is
"yes" / "no" / "ack"). Replies are kept ~30 minutes after the original
message was sent.
Example prompts
"Run the migration, and
send_alertme when it's done — priority 4 if it fails."
"If the nightly backup fails,
send_criticalme with the error — that one can't wait."
"Before you
DROPthe production table,askme to approve it — only proceed if I answer yes."
A concrete approval-gate flow:
Agent: about to delete the prod `events` table → calls
ask("Delete prod `events` table (12M rows)? This cannot be undone.")
… blocks; your phone buzzes …
You: tap "No"
Agent: ask returns { responded: true, approved: false, value: "no" } → aborts the deletion.Develop
npm install
npm run build # → dist/index.js
npm test # vitest: unit (publish, config) + in-memory MCP integration
BLIPR_URL=https://blipr.dev BLIPR_TOPIC=demo node dist/index.js # stdioLicense
MIT © Applogico LLC. This is the open client adapter; the Blipr server is distributed as a container image.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceEnables AI assistants to send push notifications through the kweenkl service. Allows users to receive contextual notifications from their AI when tasks are complete or important events occur.Last updated125MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to send push notifications to mobile devices via Pushover, allowing users to receive instant alerts for task completions, errors, reminders, and custom messages through their AI conversations.Last updated1312MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to send push notifications and interactive alerts to iPhone and Mac devices via the BotBell app. It allows AI to receive user replies and manage notification bots for tasks like alerts, reminders, and remote approvals.Last updated2401MIT
- AlicenseBqualityCmaintenanceEnables AI agents to send push notifications to your phone through ntfy, with built-in security controls to prevent data exfiltration. It exposes a single tool notify_user for notifying when tasks complete or need attention.Last updated1MIT
Related MCP Connectors
Push notifications for AI agents - send instant iPhone notifications from any MCP client.
Let your AI agent notify you by email, Slack, Discord, or webhook. One tool: send_notification.
Zero-setup WhatsApp notifications + human-in-the-loop for AI agents — text 'join', send in 60s.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/applogico/blipr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server