MCP Catalogs
Home

ntfy-mcp-server vs time

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

ntfy-mcp-server
by cyanheads
time
by modelcontextprotocol
Stars★ 16★ 85,748
30d uses
Score4277
Official
Categories
CommunicationProductivityDeveloper Tools
ProductivityDeveloper ToolsCommunication
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.

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

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

time · Use cases

  • Assisting with international meeting scheduling across time zones
  • Providing real-time time information for location-based queries
  • Enabling time conversion for travel planning and itineraries

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"
      ]
    }
  }
}

time · Install

Installation Options

**Using uv (recommended):**

uvx mcp-server-time

**Using PIP:**

pip install mcp-server-time
python -m mcp_server_time

**Configure for Claude Desktop:**

{
  "mcpServers": {
    "time": {
      "command": "uvx",
      "args": ["mcp-server-time"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.