MCP Now
Pushover

Pushover

by AshikNesin
GitHub

Send instant notifications to your devices usingPushover.net

notification
tool
pushover
agent
optional

Pushover MCP

smithery badge

A Model Context Protocol implementation for sending notifications via Pushover.net.

Overview

This MCP enables AI agents to send notifications through Pushover.net. It implements the MCP specification, allowing seamless integration with MCP-compatible AI systems.

Configuration

You'll need:

  1. An application token from Pushover.net
  2. Your user key from Pushover.net

Get these from your Pushover.net dashboard.

Tool Schema

The MCP provides a single tool:

send

Sends a notification via Pushover.

1{ 2 message: string; // Required: The message to send 3 title?: string; // Optional: Message title 4 priority?: number; // Optional: -2 to 2 (-2: lowest, 2: emergency) 5 sound?: string; // Optional: Notification sound 6 url?: string; // Optional: URL to include 7 url_title?: string; // Optional: Title for the URL 8 device?: string; // Optional: Target specific device 9}

Example MCP Tool Call

1{ 2 "name": "send", 3 "params": { 4 "message": "Hello from AI", 5 "title": "AI Notification", 6 "priority": 1 7 } 8}

Installing

Using with Cursor

Method 1: Install Globally

Run the MCP server using npx:

1npx -y pushover-mcp@latest start --token YOUR_TOKEN --user YOUR_USER

In your Cursor IDE

  1. Go to Cursor Settings > MCP
  2. Click + Add New MCP Server
  3. Fill in the form:
    • Name: Pushover Notification (or any name you prefer)
    • Type: command
    • Command: npx -y pushover-mcp@latest start --token YOUR_TOKEN --user YOUR_USER

Method 2: Project-specific Configuration

Add an .cursor/mcp.json file to your project:

1{ 2 "mcpServers": { 3 "pushover": { 4 "command": "npx", 5 "args": [ 6 "-y", 7 "pushover-mcp@latest", 8 "start", 9 "--token", 10 "YOUR_TOKEN", 11 "--user", 12 "YOUR_USER" 13 ] 14 } 15 } 16}

Using the Tool

Once configured, the Pushover notification tool will be automatically available to the Cursor AI Agent. You can:

  1. The tool will be listed under Available Tools in MCP settings
  2. Agent will automatically use it when relevant
  3. You can explicitly ask Agent to send notifications

By default, Agent will ask for approval before sending notifications. Enable "Yolo mode" in settings to allow automatic sending.

Cursor Agent

Using with Roo Code

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.

1{ 2 "mcpServers": { 3 "pushover": { 4 "command": "npx", 5 "args": [ 6 "-y", 7 "pushover-mcp@latest", 8 "start", 9 "--token", 10 "YOUR_TOKEN", 11 "--user", 12 "YOUR_USER" 13 ] 14 } 15 } 16}
  1. The Pushover notification tool will be available to Roo Code's AI agents

Note: Replace YOUR_TOKEN & YOUR_USER with your Pushover credentials.

Installing via Smithery

To install Pushover Notification for Claude Desktop automatically via Smithery:

1npx -y @smithery/cli install @AshikNesin/pushover-mcp --client claude

Development

1# Install dependencies 2pnpm install 3 4# Build 5pnpm build 6 7# Run tests 8pnpm test

License

MIT