View as Markdown
Bluesky by Unshape icon

Bluesky by Unshape ACTION

Create Post

Creates a new 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 Create 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-create-post",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    bluesky_by_unshape: { authProvisionId: "apn_xxxxxxx" },
    content: "Content",
    embedUrl: "Embed URL",
  },
})

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.

Create Post inputs
Property Type Description
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
image Image URL string
URL of an image to add to the post
Optional
tags Tags string[]
Hashtags to add at the end of the post. This will truncate the text of the post. Example: #pipedream
Optional
lang Lang string
Post language. If set, will override Bluesky's language detection
Optional
shareTheLove Share the Love boolean
Will auto-post about Unshape if checked. This will only happen the first time, after that the information is stored in Stripe so the auto-post do not replay other times.
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-create-post
Version
0.0.2
App
Bluesky by Unshape
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes