Pushover MCP
MCP fácil de manipular
Una implementación del Protocolo de Contexto Modelo para enviar notificaciones a través de Pushover.net .
Descripción general
Este MCP permite a los agentes de IA enviar notificaciones a través de Pushover.net. Implementa la especificación MCP, lo que permite una integración fluida con sistemas de IA compatibles con MCP.
Related MCP server: kweenkl MCP Server
Configuración
Necesitarás:
Un token de aplicación de Pushover.net
Su clave de usuario de Pushover.net
Obtén estos desde tu panel de control de Pushover.net .
Esquema de herramientas
El MCP proporciona una única herramienta:
send
Envía una notificación a través de 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
}Ejemplo de llamada a la herramienta MCP
{
"name": "send",
"params": {
"message": "Hello from AI",
"title": "AI Notification",
"priority": 1
}
}Instalación
Uso con cursor
Método 1: Instalar globalmente
Ejecute el servidor MCP usando npx:
npx -y pushover-mcp@latest start --token YOUR_TOKEN --user YOUR_USEREn su IDE de cursor
Vaya a
Cursor Settings>MCPHaga clic en
+ Add New MCP ServerRellene el formulario:
Nombre:
Pushover Notification(o cualquier nombre que prefieras)Tipo:
commandComando:
npx -y pushover-mcp@latest start --token YOUR_TOKEN --user YOUR_USER
Método 2: Configuración específica del proyecto
Agregue un archivo .cursor/mcp.json a su proyecto:
{
"mcpServers": {
"pushover": {
"command": "npx",
"args": [
"-y",
"pushover-mcp@latest",
"start",
"--token",
"YOUR_TOKEN",
"--user",
"YOUR_USER"
]
}
}
}Uso de la herramienta
Una vez configurada, la herramienta de notificaciones Pushover estará disponible automáticamente para el agente de Cursor AI. Puedes:
La herramienta aparecerá en
Available Toolsen la configuración de MCPEl agente lo utilizará automáticamente cuando sea relevante.
Puedes pedirle explícitamente al Agente que envíe notificaciones
De forma predeterminada, el Agente solicitará aprobación antes de enviar notificaciones. Habilite el "Modo Yolo" en la configuración para permitir el envío automático.

Uso con código Roo
Acceda a la configuración de MCP haciendo clic en “Editar configuración de MCP” en la configuración de Roo Code o utilizando el comando “Roo Code: Abrir configuración de MCP” en la paleta de comandos de VS Code.
{
"mcpServers": {
"pushover": {
"command": "npx",
"args": [
"-y",
"pushover-mcp@latest",
"start",
"--token",
"YOUR_TOKEN",
"--user",
"YOUR_USER"
]
}
}
}La herramienta de notificación Pushover estará disponible para los agentes de IA de Roo Code
Nota: Reemplace
YOUR_TOKENyYOUR_USERcon sus credenciales de Pushover.
Instalación mediante herrería
Para instalar Pushover Notification para Claude Desktop automáticamente a través de Smithery :
npx -y @smithery/cli install @AshikNesin/pushover-mcp --client claudeDesarrollo
# Install dependencies
pnpm install
# Build
pnpm build
# Run tests
pnpm testLicencia
Instituto Tecnológico de Massachusetts (MIT)
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceA 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.154MIT
- AlicenseBqualityCmaintenanceEnables AI assistants to send push notifications through the kweenkl service. Allows users to receive contextual notifications from their AI when tasks are complete or important events occur.19MIT
- AlicenseAqualityDmaintenanceEnables sending push notifications to your devices via Pushover, allowing you to receive alerts and messages with customizable titles, URLs, priorities, and sounds.12MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to send push notifications to mobile devices via Pushover, allowing users to receive instant alerts for task completions, errors, reminders, and custom messages through their AI conversations.1202MIT
Related MCP Connectors
Push notifications for AI agents - send instant iPhone notifications from any MCP client.
Let your AI agent notify you by email, Slack, Discord, or webhook. One tool: send_notification.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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