get_likes
Retrieve likes for a specific post on Bluesky Social MCP by providing the post URI, with optional filters for limit and pagination.
Instructions
Get likes for a post.
Args:
ctx: MCP context
uri: URI of the post to get likes for
cid: Optional CID of the post (not strictly required)
limit: Maximum number of results to return (1-100)
cursor: Optional pagination cursor
Returns:
List of likes for the post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | No | ||
cursor | No | ||
limit | No | ||
uri | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cid": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cid"
},
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cursor"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"default": 50,
"title": "Limit"
},
"uri": {
"title": "Uri",
"type": "string"
}
},
"required": [
"uri"
],
"title": "get_likesArguments",
"type": "object"
}