paging-mcp
Allows sending page/alert notifications via Discord webhooks.
Allows sending page/alert notifications via Matrix.
Allows sending page/alert notifications via ntfy.sh topics.
Allows sending page/alert notifications via Signal.
Allows sending page/alert notifications via Slack incoming webhooks.
Allows sending page/alert notifications via Telegram bots.
Allows sending page/alert notifications via Twilio SMS.
Allows sending page/alert notifications via WhatsApp Business (Whapi).
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., "@paging-mcpsend a critical alert about prod database outage to all channels"
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.
paging-mcp
FastMCP server that pages on-call via 100+ notification channels. Built on top of Apprise, which speaks WhatsApp, ntfy, Pushover, Telegram, Discord, Slack, Signal, Matrix, Gotify, mailto, Twilio SMS, AWS SNS, and dozens more.
The point is provider independence. Wire one MCP, configure as many channels as you want, get redundant paging without rewriting integration code every time you swap a vendor.
Why this exists
If you're building anything that needs to wake a human up — a synthetic monitor on a B2B pipeline, a long-running batch job, a security alert — you want:
Multiple channels in parallel so a single provider outage doesn't lose the page.
Channels that actually fit your operator (WhatsApp for LatAm on-calls, ntfy for self-hosters, Pushover for personal phones, Twilio SMS for the cases where it still fits).
Credentials redacted in tool responses so an agent reading the output doesn't leak them back into a transcript.
One MCP your agent can call from anywhere (Claude Code, Codex, Cursor, etc.) without having to ship a new MCP per channel.
Apprise solves channels 1-2 in Python. This server makes it MCP-callable with redaction and channel filtering on top.
Related MCP server: mcp-server-splunk-oncall
Install
Open Claude Code, paste:
/plugin marketplace add adelaidasofia/paging-mcp
/plugin install paging-mcp@paging-mcpgit clone https://github.com/adelaidasofia/paging-mcp ~/.claude/paging-mcp
cd ~/.claude/paging-mcp
python3 -m venv .venv
.venv/bin/pip install -r requirements.txtConfigure
Set APPRISE_URLS to one or more Apprise URLs. Newline, semicolon, or comma separated:
export APPRISE_URLS="
ntfys://ntfy.sh/<your-secret-topic>
whapi+https://gate.whapi.cloud/messages/text?token=<TOKEN>&to=+57...
pover://<USER_KEY>@<APP_TOKEN>
mailto://user:pass@smtp.example.com/?to=alerts@example.com
"Apprise URL examples by provider:
Provider | URL pattern |
WhatsApp Business (Whapi) |
|
ntfy |
|
Pushover |
|
Telegram bot |
|
Twilio SMS |
|
Signal CLI |
|
Slack incoming webhook |
|
Discord webhook |
|
SMTP email |
|
AWS SNS |
|
Full list: https://github.com/caronc/apprise/wiki
Register with Claude Code
Project-scoped (<vault>/.mcp.json):
{
"mcpServers": {
"paging": {
"command": "/Users/<you>/.claude/paging-mcp/.venv/bin/python",
"args": ["/Users/<you>/.claude/paging-mcp/server.py"],
"env": {
"APPRISE_URLS": "ntfys://ntfy.sh/<your-secret-topic>"
}
}
}
}User-scoped:
claude mcp add -s user paging \
/Users/<you>/.claude/paging-mcp/.venv/bin/python \
/Users/<you>/.claude/paging-mcp/server.py \
--env APPRISE_URLS="ntfys://ntfy.sh/<your-secret-topic>"Restart Claude Code. Verify with claude mcp list.
Tools
Tool | What it does |
| Server self-check + Apprise version + configured channel count. |
| Lists the channels paging-mcp will dispatch to, credentials redacted. |
| Sends a notification to all configured channels (or a subset filter on redacted URL). Returns per-channel results. |
| Sends to a single ad-hoc Apprise URL (not persisted). |
| Shows what |
severity is one of info, success, warning, failure. Channels that color or icon-tag use it.
Tests
.venv/bin/pip install -e ".[dev]"
.venv/bin/python -m pytest tests/ -v16 unit + integration tests covering URL redaction, multi-channel dispatch, partial failure, channel filtering, and end-to-end paging flow with credentials in URLs.
Security notes
Credentials are never echoed in tool responses. Path-as-secret schemes (ntfy, pushbullet, pover) get their last path segment masked too.
notify_oneaccepts an ad-hoc URL; agents passing literal credentials are still responsible for not echoing them in conversation. PreferAPPRISE_URLSconfigured at server start.The server does not persist channels or messages; everything is in-process.
Telemetry
This plugin sends a single anonymous install signal to myceliumai.co the first time it loads in a Claude Code session on a given machine.
What is sent:
Plugin name (e.g.
slack-mcp)Plugin version (e.g.
0.1.0)
What is NOT sent:
No user identifiers, names, emails, tokens, or API keys
No file paths, message content, or anything from your work
No IP address is stored after dedup processing
Why: Helps the maintainer know which plugins people actually install, so attention goes to the ones that get used.
Opt out: Set the environment variable MYCELIUM_NO_PING=1 before launching Claude Code. The hook will skip the network call entirely. Already-pinged installs leave a sentinel at ~/.mycelium/onboarded-<plugin> — delete it if you want to reset state.
License
MIT — see LICENSE.
Built by Mycelium AI. Full install or team version at diazroa.com.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/adelaidasofia/paging-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server