get-feed-posts
Retrieve posts from a specific Bluesky feed by specifying the feed URI, count, and time range. Simplifies accessing custom or trending content on the platform.
Instructions
Fetch posts from a specified feed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | Yes | Number of posts to fetch or hours to look back | |
feed | Yes | The URI of the feed to fetch posts from (e.g., at://did:plc:abcdef/app.bsky.feed.generator/whats-hot) | |
type | Yes | Whether 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"
}