Skip to main content
Glama

Anyway Possible Paid Agent Utilities

Batch URL Check ($0.01 USDC)

batch_check_urls
Read-only

Check up to ten public URLs in one paid call with isolated results for partial failures.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlsYes
expectedStatusNo

TDQS

A3.5/5.0
Behavior4/5

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

Annotations already establish read-only and non-destructive behavior. The description adds meaningful extra context: the call is paid, and partial failures return isolated results. It does not cover rate limits or output details, but the incremental behavioral disclosure is valuable.

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 dense sentence that covers scope, cost, batching, and failure isolation without filler. It is front-loaded with the verb and object, making it easy to scan.

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?

For a simple two-parameter read-only tool with annotations, the description is mostly functional: it explains the core urls parameter, the batch limit, and the paid nature. However, it leaves expectedStatus meaning, the precise meaning of 'check', and the response shape unspecified, and there is no output schema to fill that gap.

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 parameter meaning. It adds useful context for urls ('public', 'up to ten'), but it completely omits expectedStatus, including its optionality and meaning. An agent would have to infer expectedStatus from the property name and schema constraints.

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 clearly states the action ('Check'), the resource ('up to ten public URLs'), and the batching mode ('in one paid call'). It does not explicitly differentiate from siblings like verify_web_evidence, and 'check' leaves the exact nature of the check somewhat implicit.

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 implies the tool is for checking multiple public URLs in a single paid call, which gives useful context. However, it provides no explicit guidance on when not to use it or which sibling tool to choose instead, so the agent must infer the appropriate usage.

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

B3.4/5.0
Disambiguation4/5

Tools are mostly distinct. batch_check_urls and verify_web_evidence both involve URLs, but one is multi-URL health checking while the other is single-URL evidence verification with receipts. merchant_snapshot and treasury_preflight occupy clearly separate payment-intelligence domains.

Naming Consistency3/5

All names use snake_case, but the pattern is mixed: two are verb-first (batch_check_urls, verify_web_evidence) and two are object-first (merchant_snapshot, treasury_preflight). This is readable but not fully predictable.

Tool Count5/5

Four tools is well-scoped for a paid utility server. Each tool covers a distinct, useful capability without redundancy or bloat.

Completeness4/5

The surface covers batch and single URL checks, evidence verification, merchant diagnostics, and payment preflight. Minor gaps exist, such as no simple single-URL status-only check or merchant follow-up action, but the set feels intentionally scoped.