MCP Catalogs
Home

everything vs miniflux-mcp

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

everything
by modelcontextprotocol
miniflux-mcp
by tssujt
Stars★ 85,748★ 12
30d uses
Score7742
Official
Categories
Developer ToolsAI / LLM ToolsOther
ProductivityCommunicationDeveloper Tools
LanguageTypeScriptGo
Last committhis month3 mo ago

everything · Summary

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

miniflux-mcp · Summary

A Go-based MCP server providing 40+ tools for managing Miniflux RSS reader feeds, entries, and categories.

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

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

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

miniflux-mcp · Install

Installation

Using Docker

docker build -t miniflux-mcp .
docker run --env-file .env miniflux-mcp

Environment 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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.