Sends a notification via Pushover with customizable message, title, priority, sound, URL, and device targeting
Pushover Notifications is a Model Context Protocol implementation that enables AI agents to send notifications to your devices through Pushover.net. This integration allows AI assistants to notify you about important events, task completions, or any information that requires your attention. With this MCP, AI agents can send customized notifications with different priority levels, sounds, and even include URLs. It's perfect for staying informed about AI-driven processes without having to constantly check in on them.
Pushover Notifications MCP allows AI agents to send notifications to your devices through the Pushover.net service. This is useful for getting alerts about completed tasks, important information, or any updates that require your attention.
Before using this MCP, you'll need:
You can obtain these credentials from your Pushover.net dashboard.
You can run the MCP server using npx:
npx -y pushover-mcp@latest start --token YOUR_TOKEN --user YOUR_USER
Then in Cursor IDE:
Cursor Settings
> MCP
+ Add New MCP Server
Pushover Notifications
(or any name you prefer)command
npx -y pushover-mcp@latest start --token YOUR_TOKEN --user YOUR_USER
Add an .cursor/mcp.json
file to your project with the following configuration:
{
"mcpServers": {
"pushover": {
"command": "npx",
"args": [
"-y",
"pushover-mcp@latest",
"start",
"--token",
"YOUR_TOKEN",
"--user",
"YOUR_USER"
]
}
}
}
Access the MCP settings by clicking "Edit MCP Settings" in Roo Code settings or using the "Roo Code: Open MCP Config" command in VS Code's command palette. Add the following configuration:
{
"mcpServers": {
"pushover": {
"command": "npx",
"args": [
"-y",
"pushover-mcp@latest",
"start",
"--token",
"YOUR_TOKEN",
"--user",
"YOUR_USER"
]
}
}
}
To install Pushover Notifications for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @AshikNesin/pushover-mcp --client claude
Once configured, the Pushover notification tool will be automatically available to AI agents. The agent can send notifications with various parameters:
By default, AI agents will ask for approval before sending notifications. You can enable "Yolo mode" in settings to allow automatic sending without confirmation.
You can ask the AI agent to send you notifications like:
The agent will use the Pushover MCP to deliver these notifications to your devices.