Skip to main content
Glama
isteamhq

Bluesky MCP

by isteamhq

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

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of posts

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

C2.9/5.0
Behavior2/5

Does 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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.