Skip to main content
Glama

Anyway Possible Paid Agent Utilities

Base Payment Preflight ($0.02 USDC)

treasury_preflight
Read-only

Check Base ETH and USDC funding, gas, chain intent, destination type, and common payment hazards before signing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYes
expectedChainIdNo
minGasReserveEthNo
plannedSpendUsdcNo
destinationAddressNo

TDQS

B3.4/5.0
Behavior3/5

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

The description adds meaningful detail about what is checked (funding, gas, chain intent, destination type, hazards) beyond the readOnly and destructive annotations. However, it does not disclose output format, error behavior, or whether results are merely advisory, so behavioral transparency remains partial.

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 focused sentence, front-loaded with the verb and resource, and every listed item adds meaning. There is no repetition or unnecessary prose.

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 output schema and no return-value description, the tool's actual result is left unspecified, which is critical for a preflight/decision-support tool. The optional parameters also lack usage guidance, so an agent knows roughly what the tool does but not exactly what to send or what the response means.

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-level detail. It only vaguely maps to the fields (funding/gas ≈ mintGasReserveEtth and plannedSpendUsdc, chain intent ≈ expectedChainId), but it never explains string formats, units, decimal precision, or the relationship between 'address' and 'destinationAddress'.

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?

States a specific verb ('Check') and a clear resource: Base ETH/USDC funding, gas, chain intent, destination type, and payment hazards. It clearly conveys what the tool does, though it does not explicitly distinguish itself from the sibling tools.

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?

Provides useful timing context with 'before signing', which tells an agent when to invoke this preflight check. It does not list exclusions or name alternative tools, but the sibling names are distinct enough that the intended use case is reasonably clear.

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.