get_author_feed
Retrieve posts from a specific user on Bluesky Social MCP, with options to filter post types, paginate results, and include pinned posts for tailored content delivery.
Instructions
Get posts from a specific user.
Args:
ctx: MCP context
actor: Handle or DID of the user
cursor: Optional pagination cursor
filter: Optional filter for post types
limit: Maximum number of results to return
include_pins: Whether to include pinned posts
Returns:
Feed with posts from the specified user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actor | Yes | ||
cursor | No | ||
filter | No | ||
include_pins | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"actor": {
"title": "Actor",
"type": "string"
},
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cursor"
},
"filter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Filter"
},
"include_pins": {
"default": false,
"title": "Include Pins",
"type": "boolean"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
}
},
"required": [
"actor"
],
"title": "get_author_feedArguments",
"type": "object"
}