Skip to main content
Glama

Hottub News

Get new items since a cursor

sync_news
Read-onlyIdempotent

Incremental feed: returns items added after after, oldest first, plus a new cursor. Call again with that cursor to get only what is new.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoComma-separated: article, press_release, official, community, research, sponsored
langNoComma-separated ISO 639-1 codes, e.g. "en,es"
afterYesThe cursor returned by your previous sync_news call; 0 to start from the oldest retained item
limitNo
sinceNoOnly items published at/after this: RFC 3339, a date, or an age like "6h", "2d"
topicNoComma-separated topics, e.g. "space,science"
untilNoOnly items published at/before this
formatNomd: readable with summaries; lines: tab-separated, fewest tokens; ndjson/json: full recordsmd
sourceNoComma-separated source ids (see list_sources) or publisher domains
countryNoComma-separated ISO 3166-1 alpha-2 codes of the publisher's country, e.g. "US,GB"
categoryNoComma-separated IPTC top-level categories: arts-culture-entertainment, conflict-war, crime-law, disaster-accident, economy-business, education, environment, health, human-interest, labour, lifestyle-leisure, politics, religion, science-technology, society, sport, weather
tone_maxNo
tone_minNoOnly items with tone ≥ this (-1 most negative … 1 most positive)
politicalNotrue: political stories only (political score ≥ 0.5); false: non-political only
sentimentNoComma-separated: negative, neutral, positive
sponsoredNoPaid press releases are labeled; exclude to omit theminclude

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already cover the safety profile (readOnly, idempotent, non-destructive, openWorld), so the bar is lower. The description still adds genuine behavior the annotations cannot: result ordering (oldest first) and the cursor-chaining contract. It omits whether cursors expire or how the 500-item cap interacts with polling.

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?

Two sentences, zero padding, and the core contract (incremental, ordered, returns cursor, reuse cursor) is front-loaded. Nothing could be cut without losing meaning.

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 16 params, no output schema, and a rich schema, the description covers the essential sync loop and gives a workable return summary (items plus cursor). It does not explain how the many filters compose or how `limit` interacts with the cursor, but that is largely carried by the schema.

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 88%, so the schema already documents nearly all 16 parameters, including the cursor meaning of `after`. The description reinforces the cursor semantics but adds no syntax or combining rules for the many filter parameters. Baseline 3 applies.

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?

States a specific mechanism: an incremental feed returning items added after `after`, oldest first, plus a new cursor. 'Incremental feed' clearly separates it from search_news and list_stories, though no sibling is named explicitly.

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?

'Call again with that cursor to get only what is new' communicates the intended polling loop, which is real usage guidance. However, it never says when NOT to use it (e.g., historical/filtered lookup belongs to search_news) or how it relates to the seven sibling tools.

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.

Resources