Bluesky MCP Server

by brianellin
Verified

get-timeline-posts

Fetch posts from your Bluesky home timeline in reverse chronological order. Specify the number of posts or hours to retrieve for personalized timeline access.

Instructions

Fetch your home timeline from Bluesky, which includes posts from all of the people you follow in reverse chronological order

Input Schema

NameRequiredDescriptionDefault
countYesNumber of posts to fetch or hours to look back
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" }, "type": { "description": "Whether count represents number of posts or hours to look back", "enum": [ "posts", "hours" ], "type": "string" } }, "required": [ "count", "type" ], "type": "object" }
ID: 8paka7dsoe