like-post
Like a specific post on Bluesky using its URI. Part of the Bluesky MCP Server, enabling AI assistants to interact with social features on the ATProtocol platform.
Instructions
Like a post on Bluesky
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uri | Yes | The URI of the post to like |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"uri": {
"description": "The URI of the post to like",
"type": "string"
}
},
"required": [
"uri"
],
"type": "object"
}