# Raindrop — Pipedream Connect

> Raindrop.io is the best place to keep all your favorite books, songs, articles or whatever else you come across while browsing.

- API slug: `raindrop` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Productivity
- Website: https://raindrop.io
- This page (HTML): https://pipedream.com/apps/raindrop
- Tools: 11 actions · 2 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: raindrop`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "raindrop",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create New Collection:
const result = await mcp.callTool({
  name: "raindrop-create-collection",
  arguments: {
    title: "Title",
    sort: 10,
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Raindrop endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.raindrop.io/rest/v1/user

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkucmFpbmRyb3AuaW8vcmVzdC92MS91c2Vy?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "raindrop-create-collection",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    raindrop: { authProvisionId: "apn_xxxxxxx" },
    title: "Title",
    sort: 10,
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (11)

### `raindrop-create-collection` — Create New Collection (Write)

Creates an additional collection. See the docs here

Full schema: https://pipedream.com/apps/raindrop/actions/create-collection.md

### `raindrop-delete-bookmark` — Delete Bookmark (Write)

Delete a bookmark. See the docs here

Full schema: https://pipedream.com/apps/raindrop/actions/delete-bookmark.md

### `raindrop-delete-collection` — Delete Collection (Write)

Delete a collection. See the docs here

Full schema: https://pipedream.com/apps/raindrop/actions/delete-collection.md

### `raindrop-get-bookmark` — Get Bookmark (Read-only)

Retrieve bookmark detailed information by given ID. See the docs here

Full schema: https://pipedream.com/apps/raindrop/actions/get-bookmark.md

### `raindrop-get-collection` — Get Collection (Read-only)

Get collection. See the docs here

Full schema: https://pipedream.com/apps/raindrop/actions/get-collection.md

### `raindrop-parse-bookmark-file` — Parse HTML Bookmark File (Write)

Convert an HTML bookmark file to JSON. Supports Nestcape, Pocket and Instapaper file formats. See the documentation

Full schema: https://pipedream.com/apps/raindrop/actions/parse-bookmark-file.md

### `raindrop-list-collections` — Retrieve All Collections (Read-only)

Retrieves all collections. See the docs here

Full schema: https://pipedream.com/apps/raindrop/actions/list-collections.md

### `raindrop-retrieve-bookmarks` — Retrieve Bookmarks from Collection (Read-only)

Retrieves all bookmarks from the specified collection. See docs

Full schema: https://pipedream.com/apps/raindrop/actions/retrieve-bookmarks.md

### `raindrop-save` — Save to Raindrop Collection (Write)

Receive a link and save it into a specified collection. See docs

Full schema: https://pipedream.com/apps/raindrop/actions/save.md

### `raindrop-update-bookmark` — Update Bookmark (Write)

Update an existing bookmark. See the docs here

Full schema: https://pipedream.com/apps/raindrop/actions/update-bookmark.md

### `raindrop-update-collection` — Update Collection (Write)

Update an existing collection. See the docs here

Full schema: https://pipedream.com/apps/raindrop/actions/update-collection.md

## Triggers (2)

### `raindrop-new-bookmark` — New Bookmark (Polling)

Emit new event when a bookmark is added

Full schema: https://pipedream.com/apps/raindrop/triggers/new-bookmark.md

### `raindrop-new-tag-added-to-bookmark` — New Tag Added to Bookmark (Polling)

Emit new event when a tag is added to a bookmark

Full schema: https://pipedream.com/apps/raindrop/triggers/new-tag-added-to-bookmark.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
