# Pushover Mcp

> A MCP implementation for sending notifications via Pushover

- **Type:** MCP server
- **Install:** `agentstack add mcp-ashiknesin-pushover-mcp`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [AshikNesin](https://agentstack.voostack.com/s/ashiknesin)
- **Installs:** 0
- **Category:** [Integrations](https://agentstack.voostack.com/c/integrations)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [AshikNesin](https://github.com/AshikNesin)
- **Source:** https://github.com/AshikNesin/pushover-mcp
- **Website:** https://www.npmjs.com/package/pushover-mcp

## Install

```sh
agentstack add mcp-ashiknesin-pushover-mcp
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Pushover MCP
[](https://smithery.ai/server/@AshikNesin/pushover-mcp)

A [Model Context Protocol](https://modelcontextprotocol.io/introduction) implementation for sending notifications via [Pushover.net](https://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](https://pushover.net/dashboard).

## Tool Schema

The MCP provides a single tool:

### `send`

Sends a notification via Pushover.

```typescript
{
  message: string;          // Required: The message to send
  title?: string;          // Optional: Message title
  priority?: number;       // Optional: -2 to 2 (-2: lowest, 2: emergency)
  sound?: string;         // Optional: Notification sound
  url?: string;          // Optional: URL to include
  url_title?: string;   // Optional: Title for the URL
  device?: string;     // Optional: Target specific device
}
```

### Example MCP Tool Call

```json
{
  "name": "send",
  "params": {
    "message": "Hello from AI",
    "title": "AI Notification",
    "priority": 1
  }
}
```

## Installing

## Using with Cursor

### Method 1: Install Globally

Run the MCP server using npx:

```bash
npx -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:

```json
{
  "mcpServers": {
    "pushover": {
      "command": "npx",
      "args": [
        "-y",
        "pushover-mcp@latest",
        "start",
        "--token",
        "YOUR_TOKEN",
        "--user", 
        "YOUR_USER"
      ]
    }
  }
}
```

### 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.

## 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.

```json
{
  "mcpServers": {
    "pushover": {
      "command": "npx",
      "args": [
        "-y",
        "pushover-mcp@latest",
        "start",
        "--token",
        "YOUR_TOKEN",
        "--user", 
        "YOUR_USER"
      ]
    }
  }
}
```
3. 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](https://smithery.ai/server/@AshikNesin/pushover-mcp):

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

## Development

```bash
# Install dependencies
pnpm install

# Build
pnpm build

# Run tests
pnpm test
```

## License

MIT

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [AshikNesin](https://github.com/AshikNesin)
- **Source:** [AshikNesin/pushover-mcp](https://github.com/AshikNesin/pushover-mcp)
- **License:** MIT
- **Homepage:** https://www.npmjs.com/package/pushover-mcp

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-ashiknesin-pushover-mcp
- Seller: https://agentstack.voostack.com/s/ashiknesin
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
