get_thread

Pack: bluesky · Endpoint: https://gateway.pipeworx.io/bluesky/mcp

Fetch a post thread by URI. Returns the parent post and all replies in conversation order with timestamps, authors, and engagement data.

Parameters

NameTypeRequiredDescription
post_uristringyesAT URI of the post (at://did/app.bsky.feed.post/rkey)

Example call

Arguments

{
  "post_uri": "at://did:plc:ewvcqgxlrk52n5jevxgs3ybu/app.bsky.feed.post/3k7f4x2z9w1a5m3"
}

curl

curl -X POST https://gateway.pipeworx.io/bluesky/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_thread","arguments":{"post_uri":"at://did:plc:ewvcqgxlrk52n5jevxgs3ybu/app.bsky.feed.post/3k7f4x2z9w1a5m3"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_thread', {
  "post_uri": "at://did:plc:ewvcqgxlrk52n5jevxgs3ybu/app.bsky.feed.post/3k7f4x2z9w1a5m3"
});

Response shape

Always returns: post, replies

FieldTypeDescription
postobjectThe parent post
repliesarrayReply posts in conversation order
Full JSON Schema
{
  "type": "object",
  "properties": {
    "post": {
      "type": "object",
      "description": "The parent post",
      "properties": {
        "uri": {
          "type": "string",
          "description": "AT URI of the post"
        },
        "author": {
          "type": "string",
          "description": "Author's display name or handle"
        },
        "handle": {
          "type": "string",
          "description": "Author's handle"
        },
        "text": {
          "type": "string",
          "description": "Post content text"
        },
        "createdAt": {
          "type": "string",
          "description": "ISO timestamp of post creation"
        },
        "likes": {
          "type": "number",
          "description": "Number of likes"
        },
        "reposts": {
          "type": "number",
          "description": "Number of reposts"
        },
        "replies": {
          "type": "number",
          "description": "Number of replies"
        }
      },
      "required": [
        "uri",
        "author",
        "handle",
        "text",
        "createdAt",
        "likes",
        "reposts",
        "replies"
      ]
    },
    "replies": {
      "type": "array",
      "description": "Reply posts in conversation order",
      "items": {
        "type": "object",
        "properties": {
          "uri": {
            "type": "string",
            "description": "AT URI of the post"
          },
          "author": {
            "type": "string",
            "description": "Author's display name or handle"
          },
          "handle": {
            "type": "string",
            "description": "Author's handle"
          },
          "text": {
            "type": "string",
            "description": "Post content text"
          },
          "createdAt": {
            "type": "string",
            "description": "ISO timestamp of post creation"
          },
          "likes": {
            "type": "number",
            "description": "Number of likes"
          },
          "reposts": {
            "type": "number",
            "description": "Number of reposts"
          },
          "replies": {
            "type": "number",
            "description": "Number of replies"
          }
        },
        "required": [
          "uri",
          "author",
          "handle",
          "text",
          "createdAt",
          "likes",
          "reposts",
          "replies"
        ]
      }
    }
  },
  "required": [
    "post",
    "replies"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "bluesky": {
      "url": "https://gateway.pipeworx.io/bluesky/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026