Copyright (c) 2026 Piethein Strengholt, piethein@strengholt-online.nl
RSSMonster is a self-hosted, intelligent RSS reader designed to help you cut through information overload and focus on what actually matters.
Learn more about RSSMonster in the complete documentation.
Traditional RSS readers are primarily organized around feeds, folders, and chronological article streams. RSSMonster adds a semantic and ranking layer on top: it groups articles covering the same event, evaluates signals such as quality, freshness, originality, and source trust, explains why stories rank highly, and lets you create declarative Smart Folders for the views that matter to you.
At its core, RSSMonster treats your feeds as a stream of signals rather than a pile of unread items. New articles are enriched with quality, freshness, originality, trust, attention, and semantic relationship metadata. That extra context lets the application answer better questions: is this worth reading now?, is this just syndicated copy?, which sources are covering the same event?, and which broader storyline does this belong to?
A conventional reader effectively sees:
Article
Article
Article
Article
Article
Article
RSSMonster can increasingly interpret that as:
Topic
│
Nintendo / Zelda
│
┌────────┴─────────┐
│ │
Event Related
│ content
┌───┼───┐
A B C
│
duplicates
RSSMonster combines advanced search expressions, semantic clustering, quality analysis, and importance-based ranking into a system where views are declarative, not hard-coded. Instead of fixed tabs and opaque algorithms, you define what matters using composable queries that power dynamic Smart Folders such as:
- Top Stories Today — importance-ranked, deduplicated coverage
- Worth Your Time — high-quality, original long-form content
- Quick Scan — summary-first daily overview
- Low Noise Mode — maximum signal, minimal volume
Ranking decisions are explainable and views are customizable. The result is a reader that can behave like a quick daily briefing, a research inbox, a low-noise monitoring tool, or a classic feed reader depending on the view you choose.
- Semantic event discovery: RSSMonster groups reporting about the same real-world story into one expandable event, so several headlines from different sources become one event with multiple articles.
- Importance- and quality-aware ranking: Freshness, personal interest, article quality, breadth of coverage, source diversity, corroboration, and source trust help surface worthwhile stories without hiding the underlying signals.
- Declarative Smart Folders: Composable search expressions turn your own definition of “important” into reusable, dynamic reading views.
- Simple self-hosting: Run RSSMonster with SQLite as a single-container personal installation, or use MySQL for larger and higher-concurrency deployments.
- Self-hosted and transparent: Your feeds and reading data stay under your control, and ranking dimensions remain inspectable instead of disappearing inside an opaque recommendation system.
SQLite is the recommended database for simple, personal RSSMonster installations. It requires no separate database server and keeps the deployment to a single application container.
git clone https://github.com/pietheinstrengholt/rssmonster.git
cd rssmonsterCreate a .env file in the repository root:
JWT_SECRET=replace-with-a-long-random-secret
FEVER_CREDENTIAL_SECRET=replace-with-a-long-random-secretGenerate secure values with:
openssl rand -hex 32Run the command twice and use a different value for each secret.
docker compose up -dThe default docker-compose.yml uses SQLite and stores the database in a persistent Docker volume.
On first startup RSSMonster automatically:
- creates the SQLite database file;
- applies pending Sequelize database migrations;
- starts the application.
Open:
http://localhost:3000
and create your first account.
Check the deployment:
docker compose psFollow the application logs:
docker compose logs -f rssmonsterPull the latest image and recreate the container:
docker compose pull
docker compose up -dPending database migrations are applied automatically when the container starts.
SQLite data is stored in the persistent Docker volume mounted inside the container at:
/app/data
The SQLite files can include:
rssmonster.sqlite
rssmonster.sqlite-wal
rssmonster.sqlite-shm
Do not remove the Docker volume unless you intentionally want to delete your RSSMonster database.
To stop RSSMonster without deleting its data:
docker compose downAvoid:
docker compose down -vunless you deliberately want to remove the persistent database volume.
MySQL remains supported and is recommended for installations that need higher write concurrency, multiple active users, or more demanding workloads.
Use the separate MySQL Compose configuration:
docker compose -f docker-compose.mysql.yml up -dConfigure the required database credentials and application secrets before starting the MySQL deployment. MySQL is expected to be running and reachable before the RSSMonster container starts.
- Flexible reading modes: Use Reader Mode for summaries beside a details panel, List Mode for fast headline scanning, or Expanded Mode for distraction-free full articles. Keyboard shortcuts, drag-and-drop organization, dark mode, and mobile swipe gestures support efficient reading.
- Semantic event discovery: Group related reporting, compare sources, identify duplicate coverage, and connect events to broader topics and personal interest islands.
- Smart Folders: Build reusable views with queries such as
@today unread:true sort:recommended,unread:true quality:>0.7 sort:quality, orevent:true island:true eventCount:>=3 sort:recommended. - Advanced search: Combine article state, dates, tags, text, semantic filters, score thresholds, and sorting. See the search guide for the supported operators.
- Transparent ranking signals: Recommended ordering considers freshness, interest, quality, event coverage, publisher diversity, corroboration, rule tags, and optional feed-trust preference. Quality, uniqueness, attention, and feed trust remain visible signals with dedicated sorting or filtering where supported.
- PWA and mobile support: Install RSSMonster on supported devices for an app-like experience with offline support and responsive controls.
- OPML and generated RSS: Import or export subscriptions through OPML, and create filtered RSS feeds from stored articles through the
/rssendpoint. - Third-party client compatibility: Connect Fever clients such as Reeder or Google Reader clients including News+, FeedMe, Reeder, Vienna RSS, and ReadKit.
- Automated actions: Use regular-expression rules to delete, star, mark as read, flag as advertising, or mark matching articles as low quality.
- Multi-user support: Keep accounts, subscriptions, reading state, preferences, and assistant interactions user-scoped.
- Optional AI assistant: Enable natural-language search, summarization, classification, tagging, and feed interactions through the Model Context Protocol (MCP).
RSSMonster's newer architecture adds a semantic layer between feed crawling and the article list. Rather than storing articles as isolated feed entries, the system enriches them with vectors, scores, cluster membership, topic membership, and engagement signals. Those derived signals are then used by search expressions, Smart Folders, ranking, and the UI.
The semantic pipeline works in stages:
- Article enrichment: crawled articles are normalized, summarized where applicable, scored for quality, and embedded into vectors that capture meaning beyond exact keyword overlap.
- Event clustering: each article is compared with recent candidate events using semantic similarity, headline overlap, named-entity overlap, and time proximity. Strong matches update an existing event; otherwise RSSMonster can create a new event cluster.
- Topic grouping: events are assigned to broader topics using ranked membership. An event can have a primary topic while still retaining secondary topic relationships, which keeps broad storylines stable without forcing every article into a single rigid category.
- Signal aggregation: event size, source diversity, topic density, freshness, quality, uniqueness, trust, and engagement are aggregated into ranking signals. This allows larger corroborated stories to surface without letting repetitive coverage drown out more original work.
- Declarative retrieval: Smart Folders and searches consume supported signals through visible query operators such as
quality:>0.7,freshness:>=0.5,event:true,island:true,hot:true,tag:security, andsort:recommended.
This design keeps the intelligence of the reader inspectable. RSSMonster does not only decide what to show; it exposes the dimensions behind that decision so you can build views for different reading modes. A morning scan might prefer fresh event clusters with multiple sources, while deeper research might expand the full cluster, inspect related topic groups, and compare how different feeds covered the same story.
Historical semantic rebuilding is available through npm run semantic:all. It rebuilds event, topic, and interest-island assignments for existing articles and is intended for explicit repair or migration workflows after large imports, algorithm changes, or embedding updates.
- Recommended / importance ranking: Combines freshness, personal interest, article quality, event coverage, publisher diversity, and cross-source corroboration. Meaningful multi-article events and user-defined rule tags can add small boosts; prioritizing high-trust feeds is an explicit preference. The result favors timely, relevant, well-supported stories while keeping its inputs inspectable.
- Attention: Reflects how people interact with an article. A quick skim gives a small boost; reads, deep reads, and highly engaged sessions boost more. Re-opens and outbound clicks add a modest extra lift. No interaction means no attention boost.
- Quality: Evaluates tone, writing, and promotional content. Sentiment, writing quality, and advertisement detection combine into a single 0–1 score, which feed-quality evidence can gently adjust.
- Uniqueness: Describes how standalone an article is. Articles in larger event clusters receive a lower uniqueness signal, helping the interface identify redundant coverage without removing access to the underlying articles.
For the recommended Docker deployment:
- Docker Engine or Docker Desktop
- Docker Compose
No separate MySQL installation is required when using the default SQLite deployment.
For running RSSMonster directly from source:
- Node.js: Version 22.x or higher
- npm: Comes bundled with Node.js
- Git: For cloning the repository
- SQLite: Recommended for simple local and personal installations
- MySQL: Optional; recommended for higher-concurrency installations
git clone https://github.com/pietheinstrengholt/rssmonster.git
cd rssmonster# Install server dependencies
cd server
npm install
# Install client dependencies
cd ../client
npm install
cd ..Copy the .env.example files to .env:
cp server/.env.example server/.env
cp client/.env.example client/.envFor a simple local installation, configure server/.env with:
NODE_ENV=development
DB_DIALECT=sqlite
DB_STORAGE=./data/rssmonster.sqliteRSSMonster creates the SQLite parent data directory when required.
SQLite installations use conservative crawl concurrency settings automatically to reduce write contention.
To use MySQL instead, configure:
NODE_ENV=development
DB_DIALECT=mysql
DB_DATABASE=rssmonster
DB_USERNAME=rssmonster
DB_PASSWORD=your_database_password
DB_HOSTNAME=localhost
DB_PORT=3306Configure client/.env:
VITE_APP_HOSTNAME=http://localhost:3000
VITE_ENABLE_AGENT=falseSet VITE_ENABLE_AGENT=true if you want to enable the optional AI assistant.
Run the canonical database migrations:
cd server
npm run dbThe same migration baseline supports both SQLite and MySQL.
If you explicitly need the project seeders:
./node_modules/.bin/sequelize db:seed:allThis section applies only to MySQL installations.
When processing or querying large numbers of articles, increasing MySQL sort memory can reduce sort-related bottlenecks.
Add the following to your MySQL configuration, for example in my.cnf:
[mysqld]
sort_buffer_size = 4MRun a crawl manually with:
cd server
DISABLE_LISTENER=true npm run crawlThis runs a crawl of active feeds and prints the crawl and semantic-processing results to the console.
Production installations can run the dedicated crawl worker using the process-management approach appropriate to the deployment environment.
If you need to rebuild article clusters from scratch:
cd server
npm run semantic:allThis command rebuilds historical event assignments, topics, interest islands, and interest scores for every user.
Use:
npm run semantic:all -- --userId=3to limit the rebuild to one user.
When to use this:
- after bulk importing articles;
- when cluster quality degrades over time;
- after changing clustering algorithms or parameters;
- to repair cluster assignment inconsistencies.
This is an explicit historical rebuild workflow. Normal post-crawl semantic processing only considers newly created, unfiltered articles.
Taxonomy-vector generation is not required for a normal SQLite installation or Docker Quick Start.
If you explicitly need to generate or regenerate taxonomy vectors:
cd server
npm run taxonomy:vectors
npm run seed:island-taxonomynpm run taxonomy:vectors requires an OpenAI API key:
OPENAI_API_KEY=your-openai-api-key-hereFeed trust scores help identify high-quality sources based on originality, article quality, and user engagement:
cd server
npm run feedtrustThis command calculates trust scores from 0.0 to 1.0 for active feeds using:
- Originality (35%): How often the feed publishes original content versus syndicated articles
- Quality (25%): Average quality score of articles from the feed
- Engagement (20%): User interaction such as favorites and clicks
- Consistency (20%): Placeholder for future enhancements
When to use this:
- periodically to update feed rankings;
- after significant changes in reading patterns;
- to identify low-quality or noisy feeds.
The trust score uses an exponential moving average (EMA) to adapt over time while remaining resistant to short-term fluctuations.
RSSMonster can expose an AI-powered assistant for natural-language interactions with your RSS feeds. It is optional and complements the core semantic pipeline rather than replacing event discovery, ranking, topics, or Smart Folders.
Example requests include:
- "Show me technology articles from the last week"
- "What are my favorite articles?"
- "Find unread posts about JavaScript"
To enable the AI assistant and other agentic features, configure the following environment variables:
Server (server/.env):
OPENAI_API_KEY=your-openai-api-key-here
OPENAI_MODEL_AGENT=gpt-5.1
OPENAI_MODEL_CRAWL=gpt-4o-miniAfter configuration, restart the client and server.
The assistant provides:
- natural-language search across articles;
- time-based filtering;
- article summarization;
- classification and tagging;
- favorite and trending article discovery;
- Smart recommendations based on reading interests.
RSSMonster automatically tracks article interactions and can use AI to classify content with three quality metrics:
- advertisementScore — promotional or advertising-content detection;
- sentimentScore — emotional-tone analysis;
- qualityScore — content depth and writing-quality analysis.
These scores provide additional inspectable signals for filtering and ranking.
Note: All interactions are user-scoped, ensuring privacy and data isolation in multi-user environments.
Note for Developers: The MCP server is available at /mcp for programmatic integration. Authentication requires a valid JWT token passed through the Authorization: Bearer <token> header. Obtain a token by authenticating through /api/auth/login.
Client with hot reload:
cd client
npm run devServer with hot reload:
cd server
npm run devTo attach a debugger:
npm run debugNode exposes its inspector on port 9229.
The client will typically run on:
http://localhost:8080
and the server on:
http://localhost:3000
For most self-hosted installations, use the SQLite Docker deployment described in Docker Quick Start:
docker compose up -dSQLite is the recommended default for personal installations because it requires no separate database server and keeps persistent application data in a Docker volume.
Update an existing Docker deployment with:
docker compose pull
docker compose up -dFor installations requiring MySQL:
docker compose -f docker-compose.mysql.yml up -dFor environments where RSSMonster runs directly on the host rather than through Docker:
SQLite:
NODE_ENV=production
DB_DIALECT=sqlite
DB_STORAGE=/path/to/persistent/rssmonster.sqliteOr MySQL:
NODE_ENV=production
DB_DIALECT=mysql
DB_HOSTNAME=localhost
DB_PORT=3306
DB_DATABASE=rssmonster
DB_USERNAME=rssmonster
DB_PASSWORD=your_database_passwordcd server
npm ci
npm run dbcd ../client
npm ci
npm run buildrm -rf ../server/dist
cp -R dist ../server/distcd ../server
npm run startUse a suitable process manager or service manager for long-running production installations.
For production environments, use Let's Encrypt with Certbot for SSL/TLS certificates.
certbot certonly --standalone -d yourdomain.com --agree-tos -qFor example, create a weekly cron job:
0 0 * * 0 certbot renew --quiet && cp /etc/letsencrypt/live/yourdomain.com/* /path/to/rssmonster/cert/Add the following to server/.env:
ENABLE_HTTPS=trueRSSMonster will use certificates from:
cert/fullchain.pem
cert/privkey.pem
Restart the server after updating the configuration.
RSSMonster is compatible with the Fever API, enabling integration with third-party RSS clients.
- Fever API Endpoint:
http://your-rssmonster-url/api/fever - Authentication: Any valid RSSMonster username and password
- Reeder (iOS): Configure by adding a Fever account with the endpoint above
RSSMonster supports the Google Reader API, providing compatibility with a wide range of RSS clients.
See the Google Reader API compatibility matrix for the exact endpoint contract, authentication examples, client checklist, identifier formats, and unsupported behavior.
- API Endpoint:
http://your-rssmonster-url/api/greader - Authentication: Use your RSSMonster username and password
| App | Platform | Notes |
|---|---|---|
| News+ | Android | With Google Reader extension |
| FeedMe | Android | Full sync support |
| Reeder | iOS/macOS | Classic version |
| Vienna RSS | macOS | Open source |
| ReadKit | macOS | Multi-service reader |
- Authentication: ClientLogin with username/password
- Subscriptions: List, add, edit, remove feeds
- Tags/Categories: List, rename, delete categories
- Articles: Fetch by stream, feed, or category with pagination
- Mark as read/unread: Individual articles or mark all as read
- Star/unstar: Favorite articles
- Unread counts: Per feed, category, and total
Contributions are welcome.
To contribute:
-
Fork the repository.
-
Create a feature branch:
git switch -c feature/amazing-feature
-
Commit your changes:
git commit -m "Add amazing feature" -
Push the branch:
git push origin feature/amazing-feature
-
Open a Pull Request.
Please ensure your code follows the existing style and includes appropriate tests.
RSSMonster is built with the following frameworks and libraries:
- Node.js — JavaScript runtime
- Express — Web framework
- Vue.js 3 — Frontend framework
- Bootstrap Icons — Icon library
- Sequelize — ORM and database abstraction
- SQLite — Default database for simple self-hosted installations
- MySQL — Supported database for higher-concurrency installations
- feedsmith — RSS/Atom feed parsing
This project is licensed under the MIT License. See LICENSE.md for details.



