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 | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | CommunicationDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this 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-mcpmemory · 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"]
}
}
}