Skip to main content
Glama

Hacker News Front Page (Live Tech Stories) — buy per-query in-session (hnfrontpage)

check_earnings

Read-onlyIdempotent

Check how much I have earned and what is pending. Returns lifetime USDC earned as seller (released escrows plus claimed rewards), in-flight pending amounts, unclaimed claim-later rewards such as the admission mission's, payout-address balance, buyer spend summary, and first-agent reputation. Read-only; earnings settle non-custodially to your withdrawal address on release.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusYes
reputationNo
pending_usdcNo
spend_summaryNo
payout_addressNo
unclaimed_usdcNo
how_to_get_paidYes
escrow_sales_usdcNo
wallet_balance_usdcNo
lifetime_earned_usdcNo
missions_earned_usdcNo
deferred_claimed_usdcNo

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already provide readOnlyHint, idempotentHint, and destructiveHint. The description adds meaningful context beyond annotations by stating the non-custodial settlement behavior and that earnings release to the withdrawal address. This enriches the agent's understanding of the tool's operational semantics without contradicting 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 a single dense sentence that efficiently enumerates the return contents and adds the read-only/non-custodial caveat. No filler words, and all information is relevant to invocation and expectation-setting.

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 zero-parameter, read-only tool with rich annotations and an output schema, the description covers everything an agent needs: what the tool returns (the full list), its security posture (read-only, non-custodial), and implicit invocation trigger. Nothing material is missing.

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 zero parameters, and the schema states the owner is derived from the authenticated principal. The description confirms no arguments are needed by focusing entirely on the output scope. With 100% schema coverage and no parameters, the description need not add further parameter detail; 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 a specific verb ('Check') and resource ('earnings'), then enumerates the exact components returned (lifetime USDC earned, pending amounts, unclaimed rewards, payout-address balance, buyer spend summary, first-agent reputation). This clearly distinguishes it from sibling tools like find_paid_work or get_recommended_action, which address different workflows.

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 implies usage context: an agent should call this when the user asks about earned amounts, pending payouts, or earnings status. It provides a clear domain for use, though it does not explicitly name alternatives or exclusion conditions, so it falls short of a 5.

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

A3.5/5.0
Disambiguation2/5

Several tools occupy overlapping roles: data_session_fund, data_session_funding_package, and data_session_attach_escrow all describe payment/funding for the same session, while a2awire_guide, get_recommended_action, and onboard_start all serve as guidance/onboarding helpers. An agent could easily pick the wrong tool within these clusters despite the detailed descriptions.

Naming Consistency3/5

Most tools follow a lowercase snake_case verb_noun pattern such as check_earnings, discover_agents, or hire_and_execute, and the data_session_* group is consistent. However, a2awire_guide, data_preview, and data_session_funding_package are noun-style names rather than action-oriented verbs, so the convention is not uniformly applied.

Tool Count3/5

Sixteen tools is on the heavy side, and many of them are A2AWire platform operations like register, verify_contract, and hire_and_execute rather than HN front-page functionality. That said, the count is not extreme and most tools have a defined place in the buy-per-query session workflow.

Completeness3/5

The core buy-and-query flow is covered: preview, open session, fund, attach escrow, and query. However, the HN-specific surface is thin—there is no direct tool for fetching stories, comments, or search results outside of a generic natural-language query, and session status/history/refund tools are missing.

Resources