ntfy-mcp
v0.1.0
Published
Standalone MCP server for sending ntfy.sh notifications
Maintainers
Readme
ntfy-mcp
Standalone MCP server for sending notifications to ntfy.sh or any self-hosted ntfy instance.
This server is reusable across MCP clients. It exposes tools for sending notifications, while keeping the ntfy URL and topic locked at server startup so agents cannot override them per call.
Features
stdioMCP server for broad client compatibility- locked
ntfybase URL and topic - startup config via flags or environment variables
- bearer token or basic auth support
ntfy_publishtool for general notificationsntfy_pingtool for simple "finished working" notifications
Install
Local development
npm install
npm run buildPublished CLI
After publishing, clients can run the server directly with npx:
npx -y ntfy-mcp --ntfy-url https://ntfy.sh --ntfy-topic my-topicSmoke test
You can run a local MCP-level smoke test after building:
node scripts/smoke-test.mjs dist/index.js \
--ntfy-url https://ntfy.sh \
--ntfy-topic my-test-topicConfiguration
Flags take priority over environment variables.
Flags
node dist/index.js \
--ntfy-url https://ntfy.sh \
--ntfy-topic my-topic \
--ntfy-token tk_your_tokenEnvironment variables
export NTFY_URL="https://ntfy.sh"
export NTFY_TOPIC="my-topic"
export NTFY_TOKEN="tk_your_token"
node dist/index.jsSupported variables:
NTFY_URLNTFY_TOPICNTFY_TOKENNTFY_USERNAMENTFY_PASSWORD
If both token auth and basic auth are configured, token auth wins.
Tool reference
ntfy_publish
Sends a notification to the configured topic.
Input:
{
"message": "Deployment complete",
"title": "Deploy",
"priority": "high",
"tags": ["rocket", "white_check_mark"],
"markdown": false,
"click": "https://example.com/deploys/123",
"icon": "https://example.com/icon.png",
"delay": "10m"
}ntfy_ping
Convenience tool for simple pings.
Input:
{
"message": "Agent finished working.",
"title": "Agent finished",
"priority": "default",
"tags": ["robot_face", "white_check_mark"]
}npm publish
This package is set up to publish as a public npm CLI.
npm login
npm publishQuick checks before publishing:
npm run build
npm pack --dry-runOpenCode
Register the server in opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"ntfy": {
"type": "local",
"command": [
"npx",
"-y",
"ntfy-mcp",
"--ntfy-url",
"https://ntfy.sh",
"--ntfy-topic",
"my-topic"
]
}
}
}This only makes the tool available. To send a ping after the agent finishes working, OpenCode still needs a plugin, hook, or workflow that calls ntfy_ping when the session becomes idle or reaches your chosen completion event.
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"ntfy": {
"command": "npx",
"args": [
"-y",
"ntfy-mcp",
"--ntfy-url",
"https://ntfy.sh",
"--ntfy-topic",
"my-topic"
]
}
}
}Cursor
Add to .cursor/mcp.json or ~/.cursor/mcp.json:
{
"mcpServers": {
"ntfy": {
"command": "npx",
"args": [
"-y",
"ntfy-mcp",
"--ntfy-url",
"https://ntfy.sh",
"--ntfy-topic",
"my-topic"
]
}
}
}Notes
- The server publishes with HTTP
POSTtohttps://<ntfy-host>/<topic>. - ntfy URL and topic are intentionally locked at startup.
- Per-call overrides for URL or topic are not supported.
- Use
console.errorfor logs because stdout is reserved for MCP protocol traffic.
