get-post-thread
Retrieve the entire conversation thread for a specific Bluesky post, including all replies and contextual interactions, by providing the post's URI.
Instructions
Get a full conversation thread for a specific post, showing replies and context
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uri | Yes | URI of the post to fetch the thread for (e.g., at://did:plc:abcdef/app.bsky.feed.post/123) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"uri": {
"description": "URI of the post to fetch the thread for (e.g., at://did:plc:abcdef/app.bsky.feed.post/123)",
"type": "string"
}
},
"required": [
"uri"
],
"type": "object"
}