MCP Catalogs
Home

ntfy-me-mcp vs memory

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

ntfy-me-mcp
by gitmotion
memory
by modelcontextprotocol
Stars★ 59★ 85,748
30d uses
Score4677
Official
Categories
CommunicationDeveloper ToolsProductivity
Knowledge GraphAI / LLM ToolsProductivity
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.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

ntfy-me-mcp · Use cases

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

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

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

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

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

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

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

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.