MCP Catalogs
Home

time vs miniflux-mcp

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

time
by modelcontextprotocol
miniflux-mcp
by tssujt
Stars★ 85,748★ 12
30d uses
Score7742
Official
Categories
ProductivityDeveloper ToolsCommunication
ProductivityCommunicationDeveloper Tools
LanguageTypeScriptGo
Last committhis month3 mo ago

time · Summary

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

miniflux-mcp · Summary

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

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

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

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

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.