View as Markdown
Pocket icon

Pocket ACTION

Save To Later

Save articles, videos, images and URLs to your Pocket list. See docs here
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Pocket account once, then configure and run Save To Later from your backend or agent.

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: "pocket-save-to-later",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    pocket: { authProvisionId: "apn_xxxxxxx" },
    url: "URL",
    title: "Title",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Save To Later inputs
Property Type Description
url URL string
The URL of the item you want to save
Required
title Title string
This can be included for cases where an item does not have a title, which is typical for image or PDF URLs
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
pocket-save-to-later
Version
0.0.2
App
Pocket
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes