get_feed
Pack: bluesky · Endpoint: https://gateway.pipeworx.io/bluesky/mcp
Get posts from a Bluesky feed (e.g., “discover”, “what’s-hot”). Returns recent posts with authors, timestamps, and engagement counts.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
feed_uri | string | no | AT URI of the feed generator (default: whats-hot) |
limit | number | no | Number of posts (1-100, default 20) |
Example call
Arguments
{
"feed_uri": "at://did:plc:z72i7hdynmk6r22z27h6tvvrjmpeevvh/app.bsky.feed.generator/whats-hot"
}
curl
curl -X POST https://gateway.pipeworx.io/bluesky/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_feed","arguments":{"feed_uri":"at://did:plc:z72i7hdynmk6r22z27h6tvvrjmpeevvh/app.bsky.feed.generator/whats-hot"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_feed', {
"feed_uri": "at://did:plc:z72i7hdynmk6r22z27h6tvvrjmpeevvh/app.bsky.feed.generator/whats-hot"
});
More examples
{
"limit": 30
}
Response shape
Always returns: posts
| Field | Type | Description |
|---|---|---|
posts | array | Posts from the feed |
Full JSON Schema
{
"type": "object",
"properties": {
"posts": {
"type": "array",
"description": "Posts from the feed",
"items": {
"type": "object",
"properties": {
"uri": {
"type": "string",
"description": "AT URI of the post"
},
"author": {
"type": "string",
"description": "Author's display name or handle"
},
"handle": {
"type": "string",
"description": "Author's handle"
},
"text": {
"type": "string",
"description": "Post content text"
},
"createdAt": {
"type": "string",
"description": "ISO timestamp of post creation"
},
"likes": {
"type": "number",
"description": "Number of likes"
},
"reposts": {
"type": "number",
"description": "Number of reposts"
},
"replies": {
"type": "number",
"description": "Number of replies"
}
},
"required": [
"uri",
"author",
"handle",
"text",
"createdAt",
"likes",
"reposts",
"replies"
]
}
}
},
"required": [
"posts"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bluesky": {
"url": "https://gateway.pipeworx.io/bluesky/mcp"
}
}
}
See Getting Started for client-specific install steps.