A small app to let you connect your mastodon bookmarks to your RSS reader. https://bookmark-rss.woodland.cafe/
  • Rust 54.4%
  • JavaScript 25.2%
  • HTML 11.9%
  • Dockerfile 7%
  • CSS 1.5%
Find a file
Markus Unterwaditzer bec92fc1c8
All checks were successful
Build container image / build-image (push) Successful in 4m53s
Rust / Build and test (push) Successful in 7m20s
nodocker
2025-09-18 13:18:29 +02:00
.forgejo/workflows nodocker 2025-09-18 13:18:29 +02:00
docs replace github links 2025-09-13 17:07:50 +02:00
src replace github links 2025-09-13 17:07:50 +02:00
.dockerignore fix dockerfile 2023-02-02 08:02:59 +01:00
.gitignore fix docker build 2023-01-20 21:27:07 +01:00
buildscript.js remove svelte 2024-10-14 12:47:41 +02:00
Cargo.lock bump tower-governor 2024-10-22 12:13:41 +02:00
Cargo.toml replace github links 2025-09-13 17:07:50 +02:00
Dockerfile move to npm 2023-10-23 18:18:03 +02:00
fly.toml split out deployment docs 2023-03-12 20:53:32 +01:00
LICENSE license 2023-01-05 02:35:15 +01:00
package-lock.json move to npm 2023-10-23 18:18:03 +02:00
package.json replace github links 2025-09-13 17:07:50 +02:00
README.md Update README.md re. feed limit (#6) 2024-04-03 12:50:49 +02:00

mastodon-bookmark-rss

A small web service to let you connect your mastodon bookmarks to your RSS reader.

Save interesting posts found on Mastodon into your read-it-later list by using Mastodon's bookmark function.

Use the instance at woodland.cafe or explore the options for self-hosting below.

Linking behavior

Normally the generated RSS feed links to the respective bookmarked Mastodon post. However, if the Mastodon post itself contains a link to another website, the RSS item will use the link and title from that website, or rather from Mastodon's link preview.

The purpose of this is to allow automatic prefetching and saving of article content, which is a feature found in a few RSS readers such as Inoreader. In those cases Mastodon (and Twitter) is just being used as a glorified link aggregator.

The original Mastodon post URL and content is still stored in the RSS <content:encoded> tag, so that additional context can be recovered.

Feed limits

This tool is limited by design to fetch 20 bookmarks. It is mainly intended to automate adding new bookmarks to a reading list, not to provide a complete historical archive within an RSS reader. More could be added, but since there is no state management or caching in place, it could become inconsiderate towards the target Mastodon server to pull many items on every fetch of the feed.

Operating it yourself

Please see docs/deploy.md.

Running it locally

  1. Clone this repository
  2. Have Rust, Node and Yarn installed. I recommend rustup for Rust and Volta for installing both Node and Yarn.
  3. Install entr
  4. Run npm install && npm run dev to get a devserver at localhost:3000

To get a standalone release binary, run npm install && npm run build && cargo build --release.

License

MIT, see LICENSE.