memory vs miniflux-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | miniflux-mcp by tssujt | |
|---|---|---|
| Stars | ★ 85,748 | ★ 12 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | ProductivityCommunicationDeveloper Tools |
| Language | TypeScript | Go |
| Last commit | this month | 3 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
miniflux-mcp · Summary
A Go-based MCP server providing 40+ tools for managing Miniflux RSS reader feeds, entries, and categories.
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
miniflux-mcp · Use cases
- AI assistants retrieving and summarizing RSS feeds and articles
- Automating RSS feed management through natural language commands
- Creating workflows that trigger actions based on unread articles
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"]
}
}
}miniflux-mcp · Install
Installation
Using Docker
docker build -t miniflux-mcp .
docker run --env-file .env miniflux-mcpEnvironment Variables
| Variable | Description | Required | |----------|-------------|----------| | MINIFLUX_URL | Your Miniflux instance URL | Yes | | MINIFLUX_API_KEY | API key for authentication | Yes* | | MINIFLUX_USERNAME | Username for basic auth | Yes* | | MINIFLUX_PASSWORD | Password for basic auth | Yes* |
*Either use MINIFLUX_API_KEY OR both MINIFLUX_USERNAME and MINIFLUX_PASSWORD
Claude Desktop Integration
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"miniflux": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"MINIFLUX_URL",
"-e",
"MINIFLUX_API_KEY",
"jwonder/miniflux-mcp:latest"
],
"env": {
"MINIFLUX_URL": "https://your-miniflux-instance.com",
"MINIFLUX_API_KEY": "your_api_key_here"
}
}
}
}