Skip to main content

Save Mastodon bookmarks to Raindrop automatically

Workflow preview

Workflow preview
100%
Save Mastodon bookmarks to Raindrop automatically preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

️ Note: This workflow uses a custom Mastodon API request. Ensure your server supports bookmark access, and that your access token has the right permissions. OAuth or token based credentials ...

Best for

  • Personal Productivity automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.manualtrigger, n8n-nodes-base.scheduletrigger, n8n-nodes-base.code, n8n-nodes-base.httprequest, n8n-nodes-base.if, n8n-nodes-base.splitout, n8n-nodes-base.raindrop, n8n-nodes-base.stickynote

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Aymeric Besset.

Original n8n.io source

1.1 Workflow description

Title
Save Mastodon bookmarks to Raindrop automatically
Workflow name
Save Mastodon bookmarks to Raindrop automatically

> 🛠️ Note: This workflow uses a custom Mastodon API request. Ensure your server supports bookmark access, and that your access token has the right permissions. OAuth or token-based credentials must be configured.

🧑‍💼 Who is this for?

This workflow is ideal for digital researchers, social media users, and knowledge workers who want to automatically archive Mastodon bookmarks into their Raindrop.io collection for future reference and tagging.

🔧 What problem is this solving?

Mastodon users often bookmark posts they want to read or save for later, but there's no native integration to archive them outside the app. This workflow solves that by syncing bookmarked posts from Mastodon to Raindrop, making them more accessible, organized, and searchable long-term.

⚙️ What this workflow does

  • Triggers on schedule (or manually).
  • Tracks the latest fetched min_id using workflow static data to avoid duplicates.
  • Sends an HTTP GET request to the Mastodon bookmarks API, using bearer token authentication.
  • Validates and processes the bookmarks if new entries exist.
  • Parses pagination metadata (e.g. min_id) from response headers.
  • Splits response array to handle individual bookmarks.
  • Filters out entries with missing data.
  • Saves each post to Raindrop.io, using its title and URL. Use the card URL if exist.
  • Updates the min_id to remember where it left off.

🚀 Setup

  • Create a Mastodon access token with access to bookmarks.
  • Add a credential in n8n of type HTTP Bearer Auth with your token.
  • Create and connect a Raindrop OAuth2 credential.
  • Replace {VOTRE SERVEUR MASTODON} with your Mastodon server's base URL.
  • (Optional) Adjust the scheduling interval under the "Schedule Trigger" node.
  • Make sure the Raindrop collection ID is correct or leave it as default (-1) as this is the index for the Unsorted collection.

🧪 How to customize this workflow

  • To save to a specific Raindrop collection, change the collectionId in both Raindrop nodes.
  • You can extend the Code node to pull additional metadata like author, hashtags, or content excerpts.
  • Add an Email or Slack node after Raindrop to notify you of saved bookmarks.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Allows manual testing of the workflow

Type / Role
n8n-nodes-base.manualTrigger - manualTrigger
Config choices
Version 1

Block 2 - Triggers the workflow on a set interval

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.2

Block 3 - Retrieves the last processed min_id to avoid duplicates

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 4 - Makes authenticated request to Mastodon’s bookmarks API

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 5 - Ensures the response has bookmarks before continuing

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 6 - Extracts pagination data (like next min_id) from HTTP headers

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 7 - Saves the new min_id to workflow static data

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - Splits API response into individual bookmark items

Type / Role
n8n-nodes-base.splitOut - splitOut
Config choices
Version 1

Block 9 - Filters out invalid or incomplete bookmark data

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 10 - Saves valid bookmark using post metadata (e.g., title, card.url)

Type / Role
n8n-nodes-base.raindrop - raindrop
Config choices
Version 1

Block 11 - Saves bookmark using alternate fields if card data is missing

Type / Role
n8n-nodes-base.raindrop - raindrop
Config choices
Version 1

Block 12 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Save Mastodon bookmarks to Raindrop automatically
Complexity intermediate
Nodes 12
Categories Personal Productivity
Author Aymeric Besset
Published 08 Jun 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/4800/4800.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Save Mastodon bookmarks to Raindrop automatically do?

️ Note: This workflow uses a custom Mastodon API request. Ensure your server supports bookmark access, and that your access token has the right permissions. OAuth or token based credentials ...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Personal Productivity use case.