Bluesky MCP Server

by brianellin
Verified

get-list-posts

Fetch posts from users in a specified list on Bluesky by providing the list URI, count of posts or hours to look back, and type of count.

Instructions

Fetch posts from users in a specified list

Input Schema

NameRequiredDescriptionDefault
countYesNumber of posts to fetch or hours to look back
listYesThe URI of the list (e.g., at://did:plc:abcdef/app.bsky.graph.list/listname)
typeYesWhether count represents number of posts or hours to look back

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "count": { "description": "Number of posts to fetch or hours to look back", "maximum": 500, "minimum": 1, "type": "number" }, "list": { "description": "The URI of the list (e.g., at://did:plc:abcdef/app.bsky.graph.list/listname)", "type": "string" }, "type": { "description": "Whether count represents number of posts or hours to look back", "enum": [ "posts", "hours" ], "type": "string" } }, "required": [ "list", "count", "type" ], "type": "object" }
ID: 8paka7dsoe