Simple Ntfy MCP Server
Allows sending push notifications via ntfy.sh, supporting customizable messages with titles, priorities, tags, click actions, and action buttons.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Simple Ntfy MCP ServerSend a notification that my task is done"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Simple Ntfy MCP Server
A simple MCP (Model Context Protocol) server for sending push notifications via ntfy.sh. Works seamlessly with Claude Desktop and other MCP-compatible clients.
Features
Zero configuration - Works out of the box with npx
Push notifications - Send notifications to any device via ntfy
Lightweight - Minimal dependencies
Customizable - Support for titles, priorities, tags, click actions, and action buttons
Related MCP server: ntfy-mcp
Installation & Usage
With npx (Recommended)
No installation needed! Just add to your Claude Desktop config (%APPDATA%\Claude\claude_desktop_config.json on Windows or ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"ntfy": {
"command": "npx",
"args": ["-y", "simple-ntfy-mcp"],
"env": {
"NTFY_DEFAULT_TOPIC": "your-topic-name"
}
}
}
}Global Installation
npm install -g simple-ntfy-mcpThen use in your Claude Desktop config:
{
"mcpServers": {
"ntfy": {
"command": "simple-ntfy-mcp",
"env": {
"NTFY_DEFAULT_TOPIC": "your-topic-name"
}
}
}
}Configuration
Environment Variables
Variable | Description | Default |
| Default topic to send notifications to | (required) |
| Base URL of ntfy server |
|
Tool: send_ntfy
Send a push notification to your configured ntfy topic.
Parameters
Parameter | Type | Required | Description |
| string | ✅ | The notification message |
| string | ❌ | Topic to send to (uses default if not specified) |
| string | ❌ | Notification title |
| number | ❌ | Priority level 1-5 (default: 3) |
| string[] | ❌ | Array of tags/emojis |
| string | ❌ | URL to open when notification is clicked |
| object[] | ❌ |
Example Usage
Once configured, you can ask Claude to send you notifications:
"Send me a notification when you're done with this task"
Or be more specific:
"Send a high priority notification with the title 'Build Complete' and message 'Your project has finished building'"
Example Tool Call
{
"message": "Your task is complete!",
"title": "Task Completed",
"priority": 4,
"tags": ["white_check_mark", "rocket"],
"click": "https://example.com"
}What is ntfy?
ntfy is a simple HTTP-based pub-sub notification service. It allows you to send push notifications to your phone or desktop from any script or application. It's free, open source, and you can even self-host it.
To receive notifications:
Subscribe to your chosen topic
Configure this MCP server with the same topic name
License
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.
Latest Blog Posts
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/Aaryan-Kapoor/simple-ntfy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server