notify-mcp
Allows sending push notifications to Telegram via an Apprise gateway, enabling AI agents to push short messages to a user's phone or chat.
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 notification to my phone: 'build completed'"
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.
page-user — proactive push-notification MCP
English | 简体中文
An MCP server that gives any MCP client (Claude Code, Codex CLI, …) a page_user
tool. The AI calls it to proactively push a short message to your phone via
Telegram — when a long task finishes, a run fails, it needs a decision, or you
asked for periodic progress. Each message carries the machine name, which
CLI sent it, a session label, and optional tables (rendered aligned).
Claude Code / Codex ── page_user(message, title?, host?, session?, agent?, table?, tag?) ──►
(just a URL + token in config) │
▼
Cloudflare Worker (remote MCP) ──► TelegramThere are two flavors. The Cloudflare remote MCP is recommended; the original self-hosted Apprise gateway is kept as a legacy alternative (see the end).
Recommended: remote MCP on Cloudflare
The whole server is one Cloudflare Worker in cloudflare/ —
stateless MCP over Streamable HTTP, bearer auth, pushes straight to Telegram.
Nothing runs on your machines; you update every client at once by redeploying.
Deploy the Worker and set its secrets — full step-by-step in
cloudflare/README.md. You end up with an endpoint likehttps://<name>.<subdomain>.workers.dev/mcpand a bearerAUTH_TOKEN.Register with your CLIs on each machine:
PAGE_USER_TOKEN=<AUTH_TOKEN> ./scripts/install_page_user.shThis removes any old
notifyserver and addspage-userto Claude Code (user scope) and Codex (~/.codex/config.toml), baking in the machine's hostname (X-Host) and the CLI name (X-Agent). Override the endpoint withPAGE_USER_URLif you deployed under a different name.Verify:
claude mcp list(should showpage-user … ✔ Connected) andcodex mcp list.
Egress: clients must be able to reach
*.workers.dev(the default Worker domain is commonly blocked on direct connections — a working HTTP(S) proxy in the environment is enough; the CLIs inheritHTTPS_PROXY). If a machine can't reach*.workers.devat all, bind a custom domain to the Worker instead.
The tool
page_user(message, title?, host?, session?, agent?, table?, tag?) — pushes a
formatted notification. Only message is required; host/agent default to the
X-Host/X-Agent headers set at registration, tag selects a recipient group
(TARGETS secret), and table is rows of strings rendered as an aligned
monospace table. The model learns all of this from the tool's MCP schema — it
does not read this README. To change the tool or its guidance, edit
cloudflare/worker.js and npx wrangler deploy; all clients pick it up.
Manual registration
# Claude Code (user scope):
claude mcp add --transport http page-user https://<name>.<subdomain>.workers.dev/mcp \
-H "Authorization: Bearer <AUTH_TOKEN>" -H "X-Host: $(hostname)" -H "X-Agent: claude-code" -s user
# Codex — add to ~/.codex/config.toml:
# [mcp_servers.page-user]
# url = "https://<name>.<subdomain>.workers.dev/mcp"
# http_headers = { "Authorization" = "Bearer <AUTH_TOKEN>", "X-Host" = "<host>", "X-Agent" = "codex" }Related MCP server: MCP-Pushover Bridge
Legacy: self-hosted Apprise gateway
The original design is a thin Python MCP wrapper (notify_mcp.py, tool
send_notification) that POSTs to a self-hosted Apprise gateway (server.py),
which forwards to Telegram/Feishu/etc. Use this if you can't or don't want to use
Cloudflare. It is managed with uv:
uv sync --extra gateway # wrapper + apprise
./scripts/start_gateway.sh # run the gateway (needs ./token and ./targets.json)
./scripts/install_mcp.sh # register the `notify` MCP with Claude Code + CodexDetails:
docs/NOTIFY_GATEWAY.md— example gateway deployment (systemd, proxy, Telegram/Feishu).docs/MCP_INTROSPECTION.md— how a client discovers the server's identity and tool.docs/ABOUT.txt— short, human-friendly intro (中文).
Unit tests (legacy Python code)
uv run pytest -q # no network needed
uv run pre-commit run --all-files # ruff format/lintMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
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
- 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
- Alicense-qualityBmaintenanceEnables sending push notifications via ntfy with a single tool, allowing Claude agents to send notifications directly without shell access.Last updatedMIT
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.
Create, test, publish, and manage Dreamlit notification workflows from AI clients.
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/slchenchn/page-user'
If you have feedback or need assistance with the MCP directory API, please join our Discord server