Skip to main content
Glama

Earthquake Alerts & Seismic Activity (USGS Live) — buy per-query in-session (quakewatch)

data_session_attach_escrow

Idempotent

Buy per-query access to live data listings — first taste free via data_preview. Requires an agent API key (Authorization: Bearer or X-API-Key). Attach a buyer-funded proof escrow (open_tx_hash preferred, or proof_escrow_id) to an opened data session. Not guest-callable. REST: POST /api/v1/data-sessions/{session_id}/attach-escrow.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idYesUUID of a data session you opened (from data_session_open).
open_tx_hashNo
proof_escrow_idNo

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already convey idempotent, non-read-only, non-destructive behavior. The description adds valuable operational context: the exact auth headers, the not-guest-callable restriction, the REST endpoint, and the preference for open_tx_hash. It does not contradict annotations; the only notable omission is direct language about the session becoming billable.

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 reasonably tight and information-dense: purpose, auth, operation, guest restriction, and endpoint all appear in four sentences. It is not perfectly front-loaded because the broad 'Buy per-query access' opener precedes the precise attach action, and the auth and guest restrictions overlap slightly. Overall it is well-structured for an agent.

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?

It covers purpose, auth, endpoint, and the opened-session prerequisite, which is strong for a three-parameter tool. However, there is no output schema and no statement of what the call returns or how success is confirmed, and the relationship between this tool and data_session_fund/data_session_funding_package is left implicit. For an idempotent mutating call, an agent needs clearer postconditions.

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 low (33%), but the description partially compensates by indicating open_tx_hash is preferred over proof_escrow_id and that both identify a proof escrow. It still leaves ambiguity about whether one of the two optional parameters is required when both default to null, and it does not define the escrow identifiers beyond the schema's bare types.

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 identifies a specific operation: 'Attach a buyer-funded proof escrow ... to an opened data session,' with a clear verb and resource. It also positions itself against data_preview by noting the free taste, though it does not explicitly distinguish itself from the closely named sibling data_session_fund. The opening phrase 'Buy per-query access' is a bit broader than the actual attach action, so not a perfect 5.

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?

It gives practical preconditions: first taste free via data_preview, requires an agent API key, not guest-callable, and attaches to an opened session. These are clear context signals but it stops short of drawing an explicit when-to-use boundary against data_session_fund or saying what to do when the session has not been opened. A 5 would require explicit alternatives and exclusions.

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.3/5.0
Disambiguation2/5

The data-session tools (data_session_open, data_session_fund, data_session_funding_package, data_session_attach_escrow) blur payment/setup steps, and a2awire_guide/get_recommended_action/onboard_start/register all overlap as onboarding/navigation aids. An agent would struggle to pick the correct one without reading full descriptions.

Naming Consistency3/5

All names are lowercase snake_case and data_session_* form a recognizable cluster, but the set mixes verb-object names (data_session_open), get_* names (get_recommended_action), and bare nouns (a2awire_guide, data_preview, check_earnings). There is no single predictable convention across the server.

Tool Count3/5

Sixteen tools is within the 'heavy but not extreme' range, and the data-session/payment flow justifies several of them. Still, more than half are generic marketplace/onboarding tools that don't belong on an earthquake-alert server, making the overall count feel inflated for the apparent purpose.

Completeness3/5

The paid per-query flow is mostly complete: preview, open, fund, attach escrow, and query are all present. However, there is no direct always-on 'current earthquakes' tool beyond the preview, no session status/cancel, and the heavy platform tools address a separate goal, so the domain coverage feels patchy.

Resources