Skip to main content
Glama

Agent402.Tools: pay-per-call web tools

News search

web.news
Read-onlyIdempotent

[wallet-required, $0.02/call] Live news search: ranked recent articles (title, URL, snippet, age, source, breaking flag) from an independent search index as clean JSON. Same freshness filter as web search (pd/pw/pm/py). Optimized for current-events queries where the web index lags. Returns { query, count, results }. This hosted connector holds no wallet: pay it here over MPP, or run npx agent402-mcp with a funded wallet (AGENT_KEY) or prepaid card credits (AGENT402_CREDITS_KEY), or any x402 client.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qYesSearch query (max 400 chars)
countNoResults to return, 1-50 (default 10)
countryNoOptional 2-letter country code (default US)
freshnessNoOptional: pd, pw, pm, or py (past day/week/month/year)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo
queryYes
resultsYes

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already cover readOnlyHint, idempotentHint, and destructiveHint, so the bar is lower. The description adds value beyond annotations: it discloses the per-call cost ($0.02/call), the wallet-required payment mechanism (MPP / npx agent-index or prepaid credits), and that the hosted connector holds no wallet — auth/payment context annotations never provide. This meaningfully enriches the behavioral profile.

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 core function and output shape are front-loaded in the first clause, and the operational/payment details are gated to the end. The auth block is long but earns its place because agents must know how to fund the call. Slightly verbose overall, but each sentence carries information.

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?

For a 4-param, read-only search tool with a provided output schema, the description covers the essentials: expected return shape ({ query, count, results }), freshness semantics, the web-index-lags selection cue, and the required payment path. Nothing an agent needs to call it successfully (besides what structured fields already carry) is missing.

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 baseline is 3. The description contributes minor param value by mapping freshness to the same filter codes as web search (pd/pw/pm/py), but the input schema already encodes those exact values and the count range, so the description mostly reinforces rather than adds new meaning. A 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?

States a specific verb and resource ('Live news search') and enumerates exact output fields (title, URL, snippet, age, source, breaking flag). It distinguishes itself from the sibling web.search by noting it is 'optimized for current-events queries where the web index lags', which an agent can use to pick between tools without opening either schema.

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?

Gives a clear when-to-use signal: current-events queries where the web index lags, and discloses it shares the web search freshness filter. It does not name the exact siblings (web.search / web.answer) or state an explicit when-not condition, so the guidance is useful but stops short of a direct alternative-selection rule.

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.4/5.0
Disambiguation4/5

Tools are grouped by clear domain prefixes (web, memory, catalog, market) and mostly have distinct behaviors. web.search and web.news overlap somewhat as both return ranked live results, and catalog.find vs catalog.search require careful reading, but the descriptions do enough to disambiguate them.

Naming Consistency5/5

Every tool follows the same dotted domain.action pattern with lowercase snake_case, e.g. web.search, memory.read, catalog.find. This is highly predictable and lets an agent infer the general behavior of an unfamiliar tool from its name alone.

Tool Count4/5

Fifteen tools is at the upper edge of the well-scoped range, but each represents a distinct capability or meta-function like payment info and catalog discovery. The count feels reasonable for a pay-per-call marketplace front-end, though a few auxiliary tools (sellers.list, demand.request) are slightly peripheral.

Completeness4/5

The flagship set covers the main workflows: web search/news/answer, rendering, transcription, market quotes, memory read/write, and catalog lookup. Some referenced tools like extract and screenshot are not included as first-class tools, but the catalog.call/search/find trio and demand.request make those gaps addressable rather than dead ends.