HomeSearch & Research › FreshRSS

FreshRSS

MCP server for FreshRSS, the self-hosted RSS feed aggregator

TypeScript Local macOSWindowsLinux
★ 1 stars Last pushed 2026-09-22 License: MIT

Topics: Search & Data Extraction

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (npm 0.3.2)

npx -y @ni-c/[email protected]

Or add to your MCP client config:

{
  "mcpServers": {
    "freshrss-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@ni-c/[email protected]"
      ],
      "env": {
        "FRESHRSS_URL": "<YOUR_VALUE>",
        "FRESHRSS_USER": "<YOUR_VALUE>",
        "FRESHRSS_API_PASSWORD": "<YOUR_VALUE>",
        "FRESHRSS_READ_ONLY": "<YOUR_VALUE>",
        "FRESHRSS_INSECURE_TLS": "<YOUR_VALUE>",
        "FRESHRSS_ALLOW_TOOLS": "<YOUR_VALUE>",
        "FRESHRSS_DENY_TOOLS": "<YOUR_VALUE>"
      }
    }
  }
}
  • FRESHRSS_URL required — Root URL of the FreshRSS instance, e.g. https://rss.example.com
  • FRESHRSS_USER required — FreshRSS user name
  • FRESHRSS_API_PASSWORD required secret — API password from Settings -> Profile -> API management, not the web login password
  • FRESHRSS_READ_ONLY — Set to true to register only the read tools
  • FRESHRSS_INSECURE_TLS — Set to true to accept a self-signed certificate for this connection only
  • FRESHRSS_ALLOW_TOOLS — Comma-separated tool names or list_* prefixes to register; 'essential' selects a curated preset (default: all tools)
  • FRESHRSS_DENY_TOOLS — Comma-separated tool names or list_* prefixes to remove from whatever FRESHRSS_ALLOW_TOOLS left

Package (oci)

docker run -i --rm ghcr.io/ni-c/freshrss-mcp:0.3.2

Or add to your MCP client config:

{
  "mcpServers": {
    "freshrss-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ni-c/freshrss-mcp:0.3.2"
      ],
      "env": {
        "FRESHRSS_URL": "<YOUR_VALUE>",
        "FRESHRSS_USER": "<YOUR_VALUE>",
        "FRESHRSS_API_PASSWORD": "<YOUR_VALUE>",
        "FRESHRSS_READ_ONLY": "<YOUR_VALUE>",
        "FRESHRSS_INSECURE_TLS": "<YOUR_VALUE>",
        "FRESHRSS_ALLOW_TOOLS": "<YOUR_VALUE>",
        "FRESHRSS_DENY_TOOLS": "<YOUR_VALUE>"
      }
    }
  }
}
  • FRESHRSS_URL required — Root URL of the FreshRSS instance, e.g. https://rss.example.com
  • FRESHRSS_USER required — FreshRSS user name
  • FRESHRSS_API_PASSWORD required secret — API password from Settings -> Profile -> API management, not the web login password
  • FRESHRSS_READ_ONLY — Set to true to register only the read tools
  • FRESHRSS_INSECURE_TLS — Set to true to accept a self-signed certificate for this connection only
  • FRESHRSS_ALLOW_TOOLS — Comma-separated tool names or list_* prefixes to register; 'essential' selects a curated preset (default: all tools)
  • FRESHRSS_DENY_TOOLS — Comma-separated tool names or list_* prefixes to remove from whatever FRESHRSS_ALLOW_TOOLS left

Related servers

Listed in punkpeye/awesome-mcp-servers (MIT)

Data from the Official MCP Registry