View as Markdown
Bluesky by Unshape icon

Bluesky by Unshape ACTION

Reply to a Post

Allows you to reply to a post in Bluesky. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Bluesky by Unshape account once, then configure and run Reply to a Post 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: "bluesky_by_unshape-reply-post",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    bluesky_by_unshape: { authProvisionId: "apn_xxxxxxx" },
    url: "URL",
    content: "Content",
  },
})

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.

Reply to a Post inputs
Property Type Description
url URL string
The post's URL
Required
content Content string
The body of the post
Required
embedUrl Embed URL string
URL which will have an embed in the post if provided
Optional
tags Tags string[]
Hashtags to add at the end of the post. This will truncate the text of the post. Example: #pipedream
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
bluesky_by_unshape-reply-post
Version
0.0.2
App
Bluesky by Unshape
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes