drio
Open app

ntfy-mcp-server

Source

Catalog onlyCatalog onlySTDIO

Overview

ntfy-mcp-server is a server application designed to facilitate message communication using the ntfy protocol.

To use ntfy-mcp-server, follow these steps:

  1. Install the necessary dependencies using npm.
  2. Compile the TypeScript code to JavaScript.
  3. Point to the compiled server file to start the server.
  • Built with TypeScript for type safety and better development experience. - Easy installation and setup process. - Supports the ntfy messaging protocol for efficient communication.
  1. Building real-time messaging applications.
  2. Integrating with other services that require message notifications.
  3. Developing custom applications that utilize the ntfy protocol for communication.

Add to your AI client

Use these steps to connect ntfy-mcp-server 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": {
    "ntfy-mcp-server-mounta11n": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ntfy-mcp-server-mounta11n"
      ]
    }
  }
}

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": {
    "ntfy-mcp-server-mounta11n": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ntfy-mcp-server-mounta11n"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "ntfy-mcp-server-mounta11n": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ntfy-mcp-server-mounta11n"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "ntfy-mcp-server-mounta11n": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ntfy-mcp-server-mounta11n"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "ntfy-mcp-server-mounta11n": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ntfy-mcp-server-mounta11n"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "ntfy-mcp-server-mounta11n": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ntfy-mcp-server-mounta11n"
      ]
    }
  }
}

FAQ

What programming language is ntfy-mcp-server written in?

ntfy-mcp-server is written in TypeScript, which compiles to JavaScript.

Is ntfy-mcp-server open source?

Yes! ntfy-mcp-server is open source and available on GitHub under the MIT license.

How can I contribute to ntfy-mcp-server?

You can contribute by submitting issues or pull requests on the GitHub repository.