notify-mcp
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., "@notify-mcpSend a high-priority notification: deployment successful on staging."
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.
notify-mcp
Generic push-to-phone notifications for any agent or script. Exposes a send_notification MCP tool (available in every Claude Code session) plus a CLI (notify) for cron jobs, daemons, and other non-agent callers — both backed by one provider-agnostic core.
Why it exists: Claude Code's built-in PushNotification tool suppresses the mobile push whenever the terminal "has focus" or the user typed recently. On a remote setup the terminal always reads as focused, so every push is silently dropped. notify-mcp is an independent path that ignores that gate.
Architecture
caller ─┬─ MCP tool (Claude agents, any session) ─┐
└─ CLI / import (cron, daemons, scripts) ─┴─► sendNotification() ──► provider (ntfy | pushover | telegram) ──► phonesrc/notify.ts— provider-agnostic core: defaults, truncation, retries w/ backoff, logging. Never throws.src/providers/— one file per provider behind a commonProviderinterface.src/mcp.ts— stdio MCP server exposingsend_notification.src/cli.ts— thin CLI wrapper.
Related MCP server: ntfy-mcp
For agents (MCP tool)
Tool: send_notification. Registered globally, so every Claude session/project inherits it.
Param | Required | Notes |
| yes | The alert body. Lead with the actionable fact. |
| no | Bold title; defaults to config |
| no |
|
| no | Labels / ntfy emoji shortcodes, e.g. |
| no | Caller name; rendered as |
| no | URL to open when the notification is tapped. |
When to use it: genuine decision + time-sensitivity — an approval/auth needed, a failure, a long job finished — assuming the user is away. Not routine status updates.
For scripts (CLI)
bun run /Users/doug/dev-local/notify-mcp/src/cli.ts \
--title "Deploy" --priority high --source "ci" --tags "rocket" \
"prod deploy finished in 4m12s"Options: --title/-t, --priority/-p, --tags <a,b,c>, --source/-s, --click/-c, --help/-h. Exit code is 0 on success, nonzero on final failure — safe to use in a pipeline guard (notify "…" || true).
Programmatic use from another Bun/Node project:
import { sendNotification } from "/Users/doug/dev-local/notify-mcp/src/notify.ts";
const result = await sendNotification({ message: "hi", priority: "high" });Config
Lives at ~/.config/notify-mcp/config.json (chmod 600, outside the repo). Override the path with NOTIFY_MCP_CONFIG. Template: config.example.json.
{
"provider": "ntfy",
"defaults": { "title": "Notification", "priority": "default", "maxLength": 512, "retries": 2, "timeoutMs": 5000 },
"ntfy": { "server": "https://ntfy.sh", "topic": "<long-random-topic>" }
}Switch providers by changing provider and filling the matching block:
ntfy—{ server, topic }. On public ntfy.sh the topic is the password — keep it long, random, and out of logs/commits.pushover—{ token, user }. Private by design.telegram—{ botToken, chatId }.
Logs
Every attempt appends a JSONL line to ~/.config/notify-mcp/notify.log (ts, provider, ok, status, attempts, title, message, error). Log-write failures are swallowed so they can't break a caller.
Setup (one-time, user)
Install the ntfy app (iOS/Android) and subscribe to your topic on server
https://ntfy.sh.Copy
config.example.json→~/.config/notify-mcp/config.json, set the topic,chmod 600.The MCP server is registered in
~/.claude.json(global). New Claude sessions pick it up; an already-running session must be restarted to see the tool.
Test
bun run typecheck
bun run src/cli.ts --priority high "test push" # expect: Sent via ntfy (HTTP 200, 1 attempt(s)).This server cannot be installed
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
- AlicenseBqualityDmaintenancePushinator MCP lets you send push notifications to your devices from your LLM-powered workflows.Last updated1MIT
- AlicenseBqualityDmaintenanceEnables 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
- Alicense-qualityBmaintenanceEnables sending push notifications via ntfy with a single tool, allowing Claude agents to send notifications directly without shell access.Last updatedMIT
- Alicense-qualityDmaintenanceSends push notifications from AI assistants to your mobile device. Supports Claude, Cursor, Windsurf, and more.Last updated20MIT
Related MCP Connectors
Let your AI agent notify you by email, Slack, Discord, or webhook. One tool: send_notification.
Push notifications for AI agents - send instant iPhone notifications from any MCP client.
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
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/Jimgitsit/notify-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server