Skip to main content
Glama

get_post

Retrieve a specific Bluesky post using its record key and author identifier to access content directly.

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

TableJSON Schema
NameRequiredDescriptionDefault
post_rkeyYes
profile_identifyNo
cidNo

Implementation Reference

  • The main handler function for the 'get_post' tool. It is registered via the @mcp.tool() decorator and implements the logic to fetch a specific Bluesky post by record key, author identifier, and optional CID using the atproto Client. Returns success with post data or error.
    @mcp.tool()
    def get_post(
        ctx: Context,
        post_rkey: str,
        profile_identify: Optional[str] = None,
        cid: Optional[str] = None,
    ) -> Dict:
        """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
        """
        try:
            bluesky_client = get_authenticated_client(ctx)
    
            post_response = bluesky_client.get_post(post_rkey, profile_identify, cid)
    
            # Convert the response to a dictionary
            if hasattr(post_response, "model_dump"):
                post_data = post_response.model_dump()
            else:
                post_data = post_response
    
            return {"status": "success", "post": post_data}
        except Exception as e:
            error_msg = f"Failed to get post: {str(e)}"
            return {"status": "error", "message": error_msg}

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/gwbischof/bluesky-social-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server