get_post
Retrieve a specific post from Bluesky Social MCP by providing the post's record key, author handle or DID, and optional CID. Easily access detailed post data.
Instructions
Get a specific post.
Args:
ctx: MCP context
post_rkey: The record key of the post
profile_identify: Handle or DID of the post author
cid: Optional CID of the post
Returns:
The requested post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | No | ||
post_rkey | Yes | ||
profile_identify | No |
Input Schema (JSON Schema)
{
"properties": {
"cid": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cid"
},
"post_rkey": {
"title": "Post Rkey",
"type": "string"
},
"profile_identify": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Profile Identify"
}
},
"required": [
"post_rkey"
],
"title": "get_postArguments",
"type": "object"
}