get_posts
Retrieve multiple posts by their URIs on Bluesky Social MCP. Input a list of URIs to receive the corresponding posts as output.
Instructions
Get multiple posts by their URIs.
Args:
ctx: MCP context
uris: List of post URIs to retrieve
Returns:
List of requested posts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uris | Yes |
Input Schema (JSON Schema)
{
"properties": {
"uris": {
"items": {
"type": "string"
},
"title": "Uris",
"type": "array"
}
},
"required": [
"uris"
],
"title": "get_postsArguments",
"type": "object"
}