Bluesky MCP Server

by brianellin
Verified

get-liked-posts

Retrieve a user's liked posts from Bluesky/ATProtocol using the MCP server. Specify a limit to fetch up to 100 posts, helping users review and manage their liked content efficiently.

Instructions

Get a list of posts that the authenticated user has liked

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of liked posts to fetch (1-100)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "default": 50, "description": "Maximum number of liked posts to fetch (1-100)", "maximum": 100, "minimum": 1, "type": "number" } }, "type": "object" }
ID: 8paka7dsoe