Bluesky MCP Server

by brianellin
Verified

get-feed-posts

Retrieve posts from a specified Bluesky feed by defining the feed URI, count, and type (posts or hours). Use this tool to access and analyze feed content.

Instructions

Fetch posts from a specified feed

Input Schema

NameRequiredDescriptionDefault
countYesNumber of posts to fetch or hours to look back
feedYesThe URI of the feed to fetch posts from (e.g., at://did:plc:abcdef/app.bsky.feed.generator/whats-hot)
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" }, "feed": { "description": "The URI of the feed to fetch posts from (e.g., at://did:plc:abcdef/app.bsky.feed.generator/whats-hot)", "type": "string" }, "type": { "description": "Whether count represents number of posts or hours to look back", "enum": [ "posts", "hours" ], "type": "string" } }, "required": [ "feed", "count", "type" ], "type": "object" }
ID: 8paka7dsoe