Pushover MCP

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Integrations

  • Used to install and run the MCP server globally or as a project dependency through npx commands.

  • Used for package management in the development of the MCP server, handling dependencies and providing build and test commands.

  • Used to define the schema for the notification tool, providing type definitions for the parameters accepted by the Pushover service.

Pushover MCP

通过Pushover.net发送通知的模型上下文协议实现。

概述

该 MCP 使 AI 代理能够通过 Pushover.net 发送通知。它实现了 MCP 规范,可与兼容 MCP 的 AI 系统无缝集成。

配置

你需要:

  1. Pushover.net 的应用程序令牌
  2. 您从 Pushover.net 获取的用户密钥

从您的Pushover.net 仪表板获取这些。

工具架构

MCP 提供了一个单一工具:

send

通过 Pushover 发送通知。

{ 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 }

MCP 工具调用示例

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

安装

与游标一起使用

方法 1:全局安装

使用 npx 运行 MCP 服务器:

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

在你的 Cursor IDE 中

  1. 前往Cursor Settings > MCP
  2. 点击+ Add New MCP Server
  3. 填写表格:
    • 名称: Pushover Notification (或您喜欢的任何名称)
    • 类型: command
    • 命令: npx -y pushover-mcp@latest start --token YOUR_TOKEN --user YOUR_USER

方法二:项目特定配置

.cursor/mcp.json文件添加到您的项目:

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

使用工具

配置完成后,Pushover 通知工具将自动供 Cursor AI Agent 使用。您可以:

  1. 该工具将在 MCP 设置中的Available Tools下列出
  2. 代理将在相关时自动使用它
  3. 您可以明确要求代理发送通知

默认情况下,代理会在发送通知前征求您的批准。请在设置中启用“Yolo 模式”以允许自动发送通知。

与 Roo 代码一起使用

通过单击 Roo Code 设置中的“编辑 MCP 设置”或使用 VS Code 命令面板中的“Roo Code:打开 MCP 配置”命令来访问 MCP 设置。

{ "mcpServers": { "pushover": { "command": "npx", "args": [ "-y", "pushover-mcp@latest", "start", "--token", "YOUR_TOKEN", "--user", "YOUR_USER" ] } } }
  1. Pushover 通知工具将提供给 Roo Code 的 AI 代理

**注意:**用您的 Pushover 凭证替换YOUR_TOKENYOUR_USER

通过 Smithery 安装

要通过Smithery自动为 Claude Desktop 安装 Pushover 通知:

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

发展

# Install dependencies pnpm install # Build pnpm build # Run tests pnpm test

执照

麻省理工学院

-
security - not tested
A
license - permissive license
-
quality - not tested

模型上下文协议实现,使 AI 代理能够通过 Pushover.net 发送通知,支持使用优先级、声音和 URL 等各种参数进行消息定制。

  1. Overview
    1. Configuration
      1. Tool Schema
        1. send
        2. Example MCP Tool Call
      2. Installing
        1. Using with Cursor
          1. Method 1: Install Globally
          2. Method 2: Project-specific Configuration
          3. Using the Tool
        2. Using with Roo Code
          1. Installing via Smithery
            1. Development
              1. License
                ID: pe4vw5q95c