MCP Catalogs
Home

ntfy-mcp-server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

ntfy-mcp-server
by cyanheads
everything
by modelcontextprotocol
Stars★ 16★ 85,748
30d uses
Score4277
Official
Categories
CommunicationProductivityDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

ntfy-mcp-server · Summary

A robust MCP server for sending, managing and replaying ntfy push notifications via STDIO or HTTP transport.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

ntfy-mcp-server · Use cases

  • Receiving and responding to critical system alerts through MCP clients
  • Managing notification workflows across multiple ntfy topics
  • Archiving and replaying past notifications for audit purposes

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

ntfy-mcp-server · Install

Installation can be done via NPM or Docker:

bunx ntfy-mcp-server@latest

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "ntfy": {
      "type": "stdio",
      "command": "bunx",
      "args": ["ntfy-mcp-server@latest"],
      "env": {
        "MCP_TRANSPORT_TYPE": "stdio",
        "MCP_LOG_LEVEL": "info",
        "NTFY_DEFAULT_TOPIC": "your-topic-name"
      }
    }
  }
}

With Docker:

{
  "mcpServers": {
    "ntfy": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "MCP_TRANSPORT_TYPE=stdio",
        "-e", "NTFY_DEFAULT_TOPIC=your-topic-name",
        "ghcr.io/cyanheads/ntfy-mcp-server:latest"
      ]
    }
  }
}

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.