Skip to main content
Glama

get_news_recap

Get an AI-generated news recap/summary for a specific category.

Returns a concise narrative summarizing the most important recent news
for the given category. Great for getting up to speed quickly.

Args:
    category: Category code (required). Use get_categories to see options.
              Popular choices: 'crypto', 'bitcoin', 'ethereum', 'defi', 'ai', 'macro'.
    timeframe: Time window for the recap. Use '1h' for crypto/macro (updated hourly),
               '8h' or '24h' for other categories. Default '12h'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
categoryYes
timeframeNo12h

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that the recap is AI-generated, returns a narrative, and mentions update frequency for certain categories (hourly for crypto/macro). However, it does not disclose potential rate limits, authorization needs, or what happens on invalid input.

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 concise, front-loaded with the purpose, and uses a clear 'Args' section for parameters. Every sentence adds value, with no fluff or redundancy.

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?

Given no output schema, the description covers parameters well and adds behavioral hints (update frequency). It could be improved by explicitly describing the return format (e.g., 'Returns a plain text summary') to compensate for the missing output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description compensates by explaining each parameter in detail: category as required code with examples and a pointer to get_categories, timeframe with recommended durations per category type and default value. This adds significant meaning beyond the raw 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 verb 'Get' and resource 'AI-generated news recap/summary for a specific category.' It distinguishes itself from sibling tools like get_latest_news (individual articles) and search_news (search) by specifying it returns a concise narrative summary.

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 provides a general use case ('Great for getting up to speed quickly') and mentions using get_categories to see options, but does not explicitly state when to use this tool versus its siblings (e.g., when to use get_enriched_news instead). Usage guidance is implied but not explicit.

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.

TDQS

A4.2/5.0
Disambiguation4/5

Most tools have distinct purposes, but get_enriched_news lacks clear parameters, making it ambiguous whether it returns a specific item, the latest, or category-based news. This could cause confusion with get_latest_news or get_news_item.

Naming Consistency5/5

All tool names follow a consistent 'get_<noun>' pattern, making the naming predictable and easy to interpret.

Tool Count5/5

Seven tools is well-scoped for a crypto news API, covering essential operations without being too few or too many.

Completeness5/5

The tool set covers the core workflow: listing categories, fetching latest news, searching, getting details, recaps, and premium enrichments. No obvious gaps for a read-only news service.