Token导航 LogoToken导航TokenDH.com
Pushover MCP logo
AI代理stdio官方级别未说明来源级核验

Pushover MCP

MCP Server

pushover-mcp@latest

Pushover MCP 是一个基于 Model Context Protocol 的通知服务,允许 AI 代理通过 Pushover.net 发送通知。

工具数

0

提示词数

0

GitHub Stars

37

资源数

0
TypeScriptClaudeAI代理ClaudeCursorVS Code

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

AshikNesin

提供方

AshikNesin

最后核验

2026/5/17 20:56

运行时

Node.js

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

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

详细介绍

推送MCP

](https://smithery.ai/server/@AshikNesin/pushover-mcp)

A. 模型上下文协议 通过以下方式发送通知的实现 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

方法2:项目特定配置

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

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

使用工具

配置后,Pushover通知工具将自动对Cursor AI Agent可用。你可以:

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

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

Cursor Agent

使用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. Roo Code的人工智能代理将可以使用Pushover通知工具
注: 替换 YOUR_TOKEN & YOUR_USER 凭你的Pushover证书。

通过Smithery安装

通过以下方式自动安装克劳德桌面推送通知 史密瑟里:

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

发展

# Install dependencies
pnpm install

# Build
pnpm build

# Run tests
pnpm test

许可证

麻省理工学院

目录标签

目录标签

TypeScriptClaudeAI代理通知服务本地部署AI集成PushoverMCP协议

支持客户端

ClaudeCursorVS Code

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

token

运行时(runtime,运行环境)

Node.js

部署方式(deploymentType,部署类型)

remote-capable

来源包(packageName,安装包名)

pushover-mcp@latest

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdiotokenremote-capable

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP