like_post
Enable users to like posts on Bluesky Social by specifying the post URI and CID. Simplify engagement and interaction with content on the platform.
Instructions
Like a post.
Args:
ctx: MCP context
uri: URI of the post to like
cid: CID of the post to like
Returns:
Status of the like operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | Yes | ||
uri | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cid": {
"title": "Cid",
"type": "string"
},
"uri": {
"title": "Uri",
"type": "string"
}
},
"required": [
"uri",
"cid"
],
"title": "like_postArguments",
"type": "object"
}