MCP Catalogs
Home

ntfy-me-mcp vs everything

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

ntfy-me-mcp
by gitmotion
everything
by modelcontextprotocol
Stars★ 59★ 85,748
30d uses
Score4677
Official
Categories
CommunicationDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

ntfy-me-mcp · Summary

A MCP server for AI agents to send and fetch notifications via ntfy service with token authentication.

everything · Summary

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

ntfy-me-mcp · Use cases

  • AI task completion notifications
  • Error alerting from automated processes
  • Real-time milestone updates from AI workflows

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-me-mcp · Install

Installation

Using NPM/NPX (Recommended)

Add to your MCP configuration:

{
  "ntfy-me-mcp": {
    "command": "npx",
    "args": ["-y", "ntfy-me-mcp"],
    "env": {
      "NTFY_TOPIC": "your-ntfy-topic",
      "NTFY_URL": "https://ntfy.sh",
      // "NTFY_TOKEN": "add-your-ntfy-token"
    }
  }
}

Using Docker

{
  "ntfy-me-mcp": {
    "command": "docker",
    "args": [
      "run",
      "-i",
      "--rm",
      "-e", "NTFY_TOPIC",
      "-e", "NTFY_URL",
      "-e", "NTFY_TOKEN",
      "gitmotion/ntfy-me-mcp:latest"
    ],
    "env": {
      "NTFY_TOPIC": "your-ntfy-topic",
      "NTFY_URL": "https://ntfy.sh",
      // "NTFY_TOKEN": "add-your-ntfy-token"
    }
  }
}

Global Installation

npm install -g ntfy-me-mcp

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.