pushover-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., "@pushover-mcpSend a push notification 'Deploy finished' with high priority to my phone"
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.
pushover-mcp
A tiny MCP server that sends push notifications through Pushover.
It exposes one tool:
send_notification— send amessagewith optionaltitle,priority,sound,url,url_title, anddevice.
Two parameters are designed to read well to an LLM:
priorityuses names instead of numbers:lowest,low,normal(default),high,emergency(repeats until acknowledged).soundis an allowlist fetched live from Pushover's sounds API once at startup and cached for the process. If that fetch fails (offline, or no token), it falls back to a baked-in list so the server still starts.
Setup
Get your user key from your Pushover dashboard and create an application to get an API token at https://pushover.net/apps/build.
Install dependencies:
uv sync
Related MCP server: ntfy-mcp
Run
The server reads PUSHOVER_TOKEN and PUSHOVER_USER from the environment.
With 1Password (recommended)
.env holds secret references (op://…), not the secrets themselves.
Launch through op run to resolve them at runtime:
op run --env-file=.env -- uv run pushover_mcp.pyWith plain env vars
PUSHOVER_TOKEN=... PUSHOVER_USER=... uv run pushover_mcp.pyUse with Claude Code / Claude Desktop
Launching via op run keeps secrets out of the MCP config entirely:
claude mcp add pushover -- \
op run --env-file=/Users/charlesbine/Documents/prog/mcp/pushover/.env -- \
uv run --directory /Users/charlesbine/Documents/prog/mcp/pushover pushover_mcp.pyOr as JSON (e.g. claude_desktop_config.json):
{
"mcpServers": {
"pushover": {
"command": "op",
"args": [
"run", "--env-file=/Users/charlesbine/Documents/prog/mcp/pushover/.env", "--",
"uv", "run", "--directory", "/Users/charlesbine/Documents/prog/mcp/pushover", "pushover_mcp.py"
]
}
}
}Tests
uv run pytestTests mock the network and use no real credentials, so they run offline.
Run them with plain uv run pytest (not via op run) so the import-time sound
fetch falls back instead of calling the live API. GitHub Actions runs the suite
on every push and pull request across Python 3.10–3.13 (see
.github/workflows/ci.yml).
License
MIT © Charles Bine
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
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/metaember/pushover-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server