Skip to main content
Glama

feed_items

What a feed selects, newest first. Page with before_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latNoQuery center latitude; requires long
bboxNowest,south,east,north; west > east crosses the antimeridian
feedYesFeed slug
longNoQuery center longitude; requires lat
sortNo
unitNoDefault km
limitNoDefault 30, max 200
offsetNoDistance pagination offset
radiusNoDefault 10; maximum 1000 km
before_idNoKeyset cursor; cannot combine with distance sorting

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed8 schema fields changed
    • addedInput schema / properties / bbox
      Added value: +{
      +  "description": "west,south,east,north; west > east crosses the antimeridian",
      +  "type": "string"
      +}
    • changedInput schema / properties / before_id / description
      Previous value: -"Keyset cursor"New value: +"Keyset cursor; cannot combine with distance sorting"
    • addedInput schema / properties / lat
      Added value: +{
      +  "description": "Query center latitude; requires long",
      +  "maximum": 90,
      +  "minimum": -90,
      +  "type": "number"
      +}
    • addedInput schema / properties / long
      Added value: +{
      +  "description": "Query center longitude; requires lat",
      +  "maximum": 180,
      +  "minimum": -180,
      +  "type": "number"
      +}
    • addedInput schema / properties / offset
      Added value: +{
      +  "description": "Distance pagination offset",
      +  "type": "integer"
      +}
    • addedInput schema / properties / radius
      Added value: +{
      +  "description": "Default 10; maximum 1000 km",
      +  "exclusiveMinimum": 0,
      +  "type": "number"
      +}
    • addedInput schema / properties / sort
      Added value: +{
      +  "enum": [
      +    "id",
      +    "published",
      +    "updated",
      +    "distance"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / unit
      Added value: +{
      +  "description": "Default km",
      +  "enum": [
      +    "km",
      +    "mi"
      +  ],
      +  "type": "string"
      +}
  2. First observed

TDQS

C2.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It discloses the default ordering ('newest first') and the paging cursor, which is useful, but omits auth requirements, rate limits, whether distance sorting changes results, and what the response contains for a 10-parameter listing endpoint.

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?

Two short fragments with zero filler, and the ordering caveat is front-loaded. It is efficient, though arguably so terse that it tips into under-specification rather than true conciseness.

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

Completeness2/5

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

For a 10-parameter, 1-required listing tool with no annotations and no output schema, the description is far too thin. It should at minimum name the action, the feed-slug requirement, and how it differs from the other item-retrieval siblings.

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 description coverage is 90%, so the schema already documents lat/long pairing, bbox antimeridian behavior, unit, limit, radius, and the before_id cursor constraint. The description's 'Page with before_id' adds no syntax or semantics beyond the schema's own 'Keyset cursor; cannot combine with distance sorting', so the baseline 3 applies.

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

Purpose3/5

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

The description conveys the resource ('what a feed selects') and a default ordering ('newest first'), but never states an explicit verb such as list or return, so the agent must infer that this is a listing tool. It also gives no differentiation from siblings like recent_items, search_items, or get_item, which is a notable omission in a 21-tool namespace.

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?

'Page with before_id' gives a pagination mechanic but says nothing about when to use this tool versus recent_items, search_items, or get_item. There is no when/when-not guidance and no mention of prerequisites such as needing a valid feed slug.

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.