Skip to main content
Glama

newsflash

Server Details

5 years of corroborated news events, queryable by agents. Free tier, no key.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
zatmonkey/newsflash
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct resource: corpus stats, single event, multiple events, sources list, and raw articles. Descriptions clearly differentiate between deduped events and raw articles, with get_events marked as primary. No ambiguity.

Naming Consistency3/5

Naming conventions are mixed: 'corpus_stats' uses noun_noun, while others use verb_noun (get_, list_, search_). However, all use underscores and verbs are meaningful. The inconsistency is minor but noticeable.

Tool Count5/5

5 tools is well-scoped for a news aggregation server. Each covers a core operation (stats, single event, event list, sources, raw articles) without redundancy or missing essentials.

Completeness4/5

The tool set covers reading/querying operations comprehensively: single event, filtered events, raw articles, source list, and corpus stats. Missing potential features like article-by-ID retrieval or source-specific filtering, but the primary workflow is complete.

Available Tools

5 tools
corpus_statsAInspect

Corpus size and freshness: source / article / event counts and the latest article timestamp.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the output content but does not mention performance, caching, or any side effects. Given the simple nature of a read-only stats tool, the transparency is adequate but not detailed.

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?

Single sentence, front-loaded with the key output dimensions, no filler. Every word serves a purpose.

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 zero parameters and no output schema, the description covers the essential information. It could optionally mention whether counts are real-time, but not necessary for a simple stats tool.

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

Parameters4/5

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

The tool has 0 parameters, so the default baseline is 4. The description adds no parameter info since none are needed, but it does explain the output, which is helpful for understanding the tool's value.

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 tool returns 'source / article / event counts and the latest article timestamp', which is a specific verb+resource. It distinguishes from siblings like get_event and search_articles by providing aggregate corpus stats.

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?

No explicit when-to-use or when-not-to-use guidance, but the purpose is clear enough that an agent can infer usage for obtaining corpus-level statistics. No alternatives are mentioned.

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

get_eventAInspect

Fetch a single event by id, including every corroborating article (source, url, timestamp).

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesEvent id from get_events
Behavior3/5

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

With no annotations, the description must disclose behaviors. It mentions including articles in the response, which is a behavioral detail. However, it does not disclose any potential side effects, auth requirements, or rate limits. Adequate for a simple fetch operation.

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 a single, well-structured sentence that efficiently conveys the core functionality without unnecessary 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?

For a simple fetch tool with one parameter and no output schema, the description fully covers the purpose and return value. No additional information is needed for an agent to correctly invoke this tool.

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?

The input schema covers 100% of parameters with a description for the 'id' parameter. The tool description does not add significant meaning beyond what the schema provides, so a baseline score of 3 is appropriate.

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 'Fetch' and the resource 'a single event by id', and specifies the return content (corroborating articles). It distinguishes from sibling tools like get_events (plural) and search_articles.

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

Usage Guidelines4/5

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

The description indicates when to use this tool (when needing a single event by ID) but does not explicitly state when not to use it or alternatives. However, the context from siblings makes the use case fairly obvious.

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

get_eventsAInspect

Query the deduped news event graph by theme, source, category and time window. Returns events (many articles about one happening collapsed into one), each with a corroboration count and confidence score. This is the primary tool — prefer it over raw articles. The corpus spans 260+ global outlets and a five-year archive (history visible depends on tier).

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoFree-text theme/keyword to match on headline + summary
toNoOnly events active on/before this date. ISO 8601 date/time, e.g. 2026-07-01 or 2026-07-01T00:00:00Z
fromNoOnly events active on/after this date. ISO 8601 date/time, e.g. 2026-07-01 or 2026-07-01T00:00:00Z
limitNoMax events (default 25)
sourceNoSource slug, e.g. 'coindesk' (see list_sources)
categoryNoSource category
semanticNoRank by meaning (embedding similarity) instead of keyword match — requires q; better for concepts ('monetary easing') than exact strings
Behavior4/5

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

Without annotations, the description discloses that events are deduped with corroboration counts and confidence scores, and mentions corpus scope. It lacks details on pagination, sorting, or error behavior, but is fairly transparent for a read tool.

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?

Three sentences, front-loaded with purpose, then key details, then guidance. No redundant words; every sentence adds value.

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 explains the output shape (deduped events with corroboration and confidence). It covers key aspects but could mention sorting defaults or error cases.

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 the schema already describes parameters. The description summarizes usage by theme, source, category, and time window, but adds no new semantic value beyond the 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 tool queries a deduped news event graph by theme, source, category, and time window. It distinguishes itself from siblings by noting it is the primary tool and prefers deduped events over raw articles.

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

Usage Guidelines4/5

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

The description advises preferring this tool over raw articles, indicating when to use it. However, it does not explicitly state when not to use it or mention alternatives like get_event or corpus_stats.

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

list_sourcesAInspect

List all news sources Newsflash tracks, with categories and live article counts.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

No annotations provided, so description carries the burden. It adds that the tool returns categories and live article counts, which is useful behavioral context. However, it does not mention ordering, whether all sources are returned (no pagination hints), or any side effects.

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?

Single sentence, no unnecessary words, front-loaded with action and resource.

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 zero parameters, no output schema, and simple purpose, the description is sufficiently complete. Could optionally mention the output format (e.g., array), but not required.

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

Parameters4/5

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

No parameters in the schema (schema coverage 100% trivially). Description does not need to add parameter meaning. Baseline 4 is appropriate.

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?

Description uses verb 'list' with specific resource 'all news sources' and includes what is returned ('with categories and live article counts'). Clearly distinguishes from sibling tools like corpus_stats (overall stats), search_articles (searches articles), and get_event/events (event retrieval).

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?

Implied usage: use when you need a list of sources with counts and categories. No explicit when-not-to-use or alternative recommendations, but for a simple list tool this is acceptable.

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

search_articlesAInspect

Search raw articles (not collapsed into events). Use when you want the underlying items or need per-outlet coverage rather than deduped happenings.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoFree-text keyword on headline + summary
toNoISO 8601 date/time, e.g. 2026-07-01 or 2026-07-01T00:00:00Z
fromNoISO 8601 date/time, e.g. 2026-07-01 or 2026-07-01T00:00:00Z
limitNoMax articles (default 25)
sourceNoSource slug
categoryNoSource category
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 burden. It fails to disclose behavioral traits such as read-only nature, pagination, authentication requirements, or rate limits. The description only states the search operation without any safety or side-effect context, which is a significant gap given the lack of 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?

The description is extremely concise, with two sentences that convey purpose and usage without any redundant or superfluous information. The key differentiation is front-loaded, making it efficient for an agent to parse.

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

Completeness3/5

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

Given the tool has 6 parameters, no output schema, and no annotations, the description is only partially complete. It addresses purpose and usage but omits behavioral aspects like return format, pagination, or error conditions. This is acceptable for a simple search tool but leaves gaps for an agent to infer.

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 100% with each parameter described in the schema. The description adds no additional parameter semantics beyond the schema. The baseline of 3 is appropriate as the tool does not need extra param info in the description.

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 identifies the tool's action as searching raw articles, explicitly distinguishing it from event-collapsed results. The verb 'Search' and resource 'raw articles' are specific, and the contrast with 'deduped happenings' differentiates it from sibling tools like get_events.

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?

The description provides explicit guidance on when to use this tool: when needing underlying items or per-outlet coverage rather than deduped events. This directly helps an agent choose between search_articles and sibling tools like get_events or get_event.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.