unlike_post
Remove a like from a previously liked post on Bluesky Social MCP by specifying the post's URI. Simplifies post interaction management.
Instructions
Unlike a previously liked post.
Args:
ctx: MCP context
like_uri: URI of the like.
Returns:
Status of the unlike operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
like_uri | Yes |
Input Schema (JSON Schema)
{
"properties": {
"like_uri": {
"title": "Like Uri",
"type": "string"
}
},
"required": [
"like_uri"
],
"title": "unlike_postArguments",
"type": "object"
}