Skip to main content
Glama

Get Feed

get_feed
Read-onlyIdempotent

Get posts from a Bluesky feed (e.g., "discover", "what's-hot"). Returns recent posts with authors, timestamps, and engagement counts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of posts (1-100, default 20)
feed_uriNoAT URI of the feed generator (default: whats-hot)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
postsYesPosts from the feed

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "feed_uri": "at://did:plc:z72i7hdynmk6r22z27h6tvvrjmpeevvh/app.bsky.feed.generator/whats-hot"
      -  },
      -  {
      -    "limit": 30
      -  }
      -]New value: +[
      +  {
      +    "feed_uri": "whatshot"
      +  },
      +  {
      +    "limit": 30
      +  }
      +]
  2. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "posts": {
      +      "description": "Posts from the feed",
      +      "items": {
      +        "properties": {
      +          "author": {
      +            "description": "Author's display name or handle",
      +            "type": "string"
      +          },
      +          "createdAt": {
      +            "description": "ISO timestamp of post creation",
      +            "type": "string"
      +          },
      +          "handle": {
      +            "description": "Author's handle",
      +            "type": "string"
      +          },
      +          "likes": {
      +            "description": "Number of likes",
      +            "type": "number"
      +          },
      +          "replies": {
      +            "description": "Number of replies",
      +            "type": "number"
      +          },
      +          "reposts": {
      +            "description": "Number of reposts",
      +            "type": "number"
      +          },
      +          "text": {
      +            "description": "Post content text",
      +            "type": "string"
      +          },
      +          "uri": {
      +            "description": "AT URI of the post",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "uri",
      +          "author",
      +          "handle",
      +          "text",
      +          "createdAt",
      +          "likes",
      +          "reposts",
      +          "replies"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "posts"
      +  ],
      +  "type": "object"
      +}
  3. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "feed_uri": "at://did:plc:z72i7hdynmk6r22z27h6tvvrjmpeevvh/app.bsky.feed.generator/whats-hot"
      +  },
      +  {
      +    "limit": 30
      +  }
      +]
  4. First observed

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false. The description adds return content details (authors, timestamps, engagement counts) and feed examples, but does not disclose other behavioral aspects like pagination or error handling. This adds moderate value beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loaded with the main purpose and followed by return content. No unnecessary words or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With simple tool semantics, complete annotations, and an output schema, the description is mostly complete. It covers purpose, return content, and feed examples, though it lacks explicit error cases or behavior for invalid feeds. The minor inconsistency in the example feed_uri is a small gap.

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?

Schema covers both parameters (limit, feed_uri) with descriptions, so baseline is 3. The description adds example feed_uri values, though with slight inconsistency (e.g., 'whatshot' vs 'whats-hot'). It does not significantly clarify parameter semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool gets posts from a Bluesky feed, with specific examples like 'discover' and 'what's-hot'. It distinguishes from sibling tools like get_posts by specifying the feed context.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for retrieving feed content but does not explicitly mention alternatives or when not to use it. It lacks comparison with similar tools like get_posts or search_posts, leaving the agent to infer the appropriate context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.