get_posts
Pack: bluesky · Endpoint: https://gateway.pipeworx.io/bluesky/mcp
Fetch recent posts from a Bluesky user’s timeline. Returns post text, timestamps, likes, reposts, reply counts, and threaded replies.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
handle | string | yes | Bluesky handle |
limit | number | no | Number of posts (1-100, default 20) |
Example call
Arguments
{
"handle": "alice.bsky.social"
}
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_posts","arguments":{"handle":"alice.bsky.social"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_posts', {
"handle": "alice.bsky.social"
});
More examples
{
"handle": "jack.bsky.social",
"limit": 50
}
Response shape
Always returns: posts
| Field | Type | Description |
|---|---|---|
posts | array | List of posts from user’s timeline |
Full JSON Schema
{
"type": "object",
"properties": {
"posts": {
"type": "array",
"description": "List of posts from user's timeline",
"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.