Bluesky MCP Server

by brianellin
Verified

get-post-likes

Retrieve details of users who liked a specific post on Bluesky. Provide the post URI and optionally set a limit for the number of likes to fetch.

Instructions

Get information about users who have liked a specific post

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of likes to fetch (1-100)
uriYesThe URI of the post to get likes for (e.g., at://did:plc:abcdef/app.bsky.feed.post/123)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "default": 100, "description": "Maximum number of likes to fetch (1-100)", "maximum": 100, "minimum": 1, "type": "number" }, "uri": { "description": "The URI of the post to get likes for (e.g., at://did:plc:abcdef/app.bsky.feed.post/123)", "type": "string" } }, "required": [ "uri" ], "type": "object" }
ID: 8paka7dsoe