Skip to main content
Glama

NewzAI News MCP server

get_news_headlines

Read-only

Fetches the latest headlines (title and source only, no summary) for a specified region. Use get_news_by_category or search_news when full article details like summary or source URL are needed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
regionYesRegion from where you request custom news
languageNoOutput language of the news content. Not a filter — news in other languages may be included.en

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / region / enum
      Previous value: -[
      -  "india",
      -  "united-states",
      -  "united-kingdom",
      -  "japan",
      -  "australia",
      -  "canada",
      -  "germany"
      -]New value: +[
      +  "india",
      +  "united-states",
      +  "united-kingdom",
      +  "japan",
      +  "australia",
      +  "canada",
      +  "germany",
      +  "international"
      +]
  2. Changed2 schema fields changed
    • addedOutput schema / properties / result / items / properties / news_id
      Added value: +{
      +  "type": "string"
      +}
    • changedOutput schema / properties / result / items / required
      Previous value: -[
      -  "title",
      -  "source",
      -  "card_url"
      -]New value: +[
      +  "news_id",
      +  "title",
      +  "source",
      +  "card_url"
      +]
  3. Added

TDQS

A4.5/5.0
Behavior4/5

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

Discloses that only title and source are returned (no summary), which adds useful behavioral context beyond the readOnlyHint and destructiveHint 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?

Two concise sentences: first states the main action, second provides usage guidance. No wasted words.

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

Completeness5/5

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

Covers purpose, usage, and basic behavior. Output schema exists, so no need to describe return values. Complete for the tool's simplicity.

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 coverage is 100%, so baseline 3 is appropriate. Description does not add significant meaning beyond the schema's parameter descriptions for region and language.

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?

Clearly states 'Fetches the latest headlines (title and source only, no summary) for a specified region.' Provides specific verb and resource, and distinguishes from sibling tools like get_news_by_category and search_news.

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

Usage Guidelines5/5

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

Explicitly says 'Use get_news_by_category or search_news when full article details like summary or source URL are needed.' Gives clear when-to-use and when-not-to-use guidance.

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