Skip to main content
Glama

Pushover MCP

by AshikNesin

押しつけがましい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

カーソル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 エージェントで自動的に利用できるようになります。以下のことが可能です。

  1. ツールはMCP設定のAvailable Toolsの下に表示されます。
  2. エージェントは関連する場合に自動的にそれを使用します
  3. エージェントに通知を送信するよう明示的に指示することができます

デフォルトでは、エージェントは通知を送信する前に承認を求めます。自動送信を許可するには、設定で「Yoloモード」を有効にしてください。

カーソルエージェント

Roo Code での使用

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エージェントで利用可能になります

注: YOUR_TOKENYOUR_USER Pushover の資格情報に置き換えてください。

Smithery経由でインストール

Smithery経由で Claude Desktop 用の Pushover Notification を自動的にインストールするには:

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

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.

AI エージェントが Pushover.net を介して通知を送信できるようにし、優先度、サウンド、URL などのさまざまなパラメータを使用してメッセージをカスタマイズできるようにするモデル コンテキスト プロトコルの実装。

  1. 概要
    1. 構成
      1. ツールスキーマ
        1. send
        2. MCPツール呼び出しの例
      2. インストール
        1. カーソルを使用する
          1. 方法1: グローバルにインストールする
          2. 方法2: プロジェクト固有の構成
          3. ツールの使用
        2. Roo Code での使用
          1. Smithery経由でインストール
            1. 発達
              1. ライセンス

                Related MCP Servers

                • A
                  security
                  A
                  license
                  A
                  quality
                  Enables AI models to interact with messages from various messaging platforms (Mobile, Mail, WhatsApp, LinkedIn, Slack, Twitter, Telegram, Instagram, Messenger) through a standardized interface.
                  Last updated -
                  3
                  8
                  Python
                  MIT License
                  • Linux
                • -
                  security
                  A
                  license
                  -
                  quality
                  A Model Context Protocol service that sends desktop notifications and alert sounds when AI agent tasks are completed, integrating with various LLM clients like Claude Desktop and Cursor.
                  Last updated -
                  13
                  Python
                  MIT License
                  • Apple
                  • Linux
                • -
                  security
                  A
                  license
                  -
                  quality
                  A Model Context Protocol server that enables AI assistants to interact with Telegram, allowing them to search channels, list available channels, retrieve messages, and filter messages by regex patterns.
                  Last updated -
                  7
                  13
                  JavaScript
                  MIT License
                  • Apple
                • -
                  security
                  A
                  license
                  -
                  quality
                  A Model Context Protocol server enabling AI systems to send real-time notifications to phones, desktops, and other devices through the ntfy publish/subscribe service.
                  Last updated -
                  10
                  8
                  TypeScript
                  Apache 2.0
                  • Apple

                View all related MCP servers

                MCP directory API

                We provide all the information about MCP servers via our MCP API.

                curl -X GET 'https://glama.ai/api/mcp/v1/servers/AshikNesin/pushover-mcp'

                If you have feedback or need assistance with the MCP directory API, please join our Discord server