get-liked-posts
Retrieve a list of posts liked by the authenticated user, with a customizable limit of 1 to 100 posts, using the Bluesky MCP Server's API.
Instructions
Get a list of posts that the authenticated user has liked
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of liked posts to fetch (1-100) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 50,
"description": "Maximum number of liked posts to fetch (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}