get_timeline
Retrieve posts from your home timeline on Bluesky Social MCP. Customize results using algorithm, cursor, or limit parameters for tailored feed access.
Instructions
Get posts from your home timeline.
Args:
ctx: MCP context
algorithm: Optional algorithm to use for timeline
cursor: Optional pagination cursor
limit: Maximum number of results to return
Returns:
Timeline feed with posts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
algorithm | No | ||
cursor | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"algorithm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Algorithm"
},
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cursor"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
}
},
"title": "get_timelineArguments",
"type": "object"
}