get_timeline
Retrieve your Bluesky home timeline posts. Set a limit (1-50) to control how many updates to fetch.
Instructions
Get your home timeline
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of posts |
Retrieve your Bluesky home timeline posts. Set a limit (1-50) to control how many updates to fetch.
Get your home timeline
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of posts |
Changes observed during successful MCP inspections.
v1.0.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure, but it only restates the purpose. It does not mention authentication requirements, that results are posts from followed users, ordering/pagination behavior, or the response shape.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It is appropriately concise for a one-parameter read operation, though it omits some useful context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter read tool, the description plus schema is minimally workable: an agent can infer that no arguments are required and that 'limit' is optional. However, without an output schema, pagination/auth details, or any differentiation from get_user_feed, the definition is not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema fully documents the only parameter 'limit', including its default, minimum, maximum, and meaning ('Number of posts'). The description adds no additional parameter-level meaning, but since schema coverage is 100%, the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb ('get') and resource ('your home timeline'), so an agent can understand the operation. It does not explicitly differentiate from the sibling tool get_user_feed, though 'your' signals the authenticated user's own timeline.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided about when to choose this tool over get_user_feed, search_posts, or other timeline-related tools. The description simply states what it does, leaving selection logic entirely to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.