Pushover MCP
A MCP implementation for sending notifications via Pushover
Overview
Pushover MCP is a Model Context Protocol implementation that allows AI agents to send notifications via Pushover.net.
To use Pushover MCP, you need to configure it with your Pushover application token and user key, then run the MCP server using npx or configure it in your project settings.
- Seamless integration with MCP-compatible AI systems. - Ability to send customizable notifications through Pushover. - Supports various notification parameters like title, priority, and sound.
- Sending alerts from AI systems to users.
- Notifying users about important events or updates.
- Integrating with other applications to provide real-time notifications.
Add to your AI client
Use these steps to connect Pushover MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"pushover-mcp-ashiknesin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pushover-mcp-ashiknesin"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"pushover-mcp-ashiknesin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pushover-mcp-ashiknesin"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"pushover-mcp-ashiknesin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pushover-mcp-ashiknesin"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"pushover-mcp-ashiknesin": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pushover-mcp-ashiknesin"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"pushover-mcp-ashiknesin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pushover-mcp-ashiknesin"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"pushover-mcp-ashiknesin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pushover-mcp-ashiknesin"
]
}
}
}FAQ
What do I need to get started with Pushover MCP?
You need an application token and user key from Pushover.net.
Can I customize the notifications?
Yes! You can customize the message, title, priority, and sound of the notifications.
Is there a specific way to run the MCP server?
Yes, you can run it globally using npx or configure it in your project settings.