Skip to main content
Glama

count_news

Count recent news items from subscribed RSS feeds within a set number of hours. Filter by category or specific feeds to measure news volume and track publishing activity.

Instructions

Count recent news items across subscribed feeds.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
categoryNo
feedUrlsNo
pastHoursYes
includeConsumedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits itself. It does not mention that counting is a read-only operation, what 'recent' means, whether consumed items are excluded by default, or how optional filters affect the count.

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?

The description is a single focused sentence with no wasted words. It is front-loaded with the core action and resource, though it could use additional sentences to explain parameters and behavior without becoming verbose.

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?

With no annotations and no output schema, the description is expected to carry more context. It is incomplete for a four-parameter tool, failing to clarify the time window, filter behavior, inclusive/exclusive consumption state, or return shape.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for the four parameters. It provides only weak hints ('recent' suggests pastHours, 'subscribed feeds' suggests the default scope) and says nothing about category, feedUrls, or includeConsumed semantics.

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?

The description uses a specific verb ('count') and a clear resource ('recent news items across subscribed feeds'), which makes the core operation understandable. It is distinguishable from siblings like fetch_news or consume_news by its focus on counting, though it does not explicitly name or contrast any sibling.

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?

No guidance is given about when to use this tool versus alternatives such as fetch_news or sync_news. The description only states what the tool does, leaving the agent to infer appropriate usage from the tool name and sibling list.

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