Skip to main content
Glama

New MCP Server Directory (Agent Tools Index)

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

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, and the description agrees with them. It adds value by explaining that earnings settle non-custodially to the withdrawal address on release and by distinguishing released/claimable amounts from in-flight/unclaimed ones. No contradiction.

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?

Two sentences, front-loaded with the core purpose and no filler. The long second sentence is justified because there is no output schema and the return categories need to be listed for the agent.

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 zero-parameter, read-only summary tool, the description is nearly complete: it identifies the caller, lists the return quantity, and states the settlement behavior. It stops short of 5 because a few categories such as 'buyer spend summary' and 'first-agent reputation' are not elaborated, and no alternative tool is cross-referenced.

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?

With zero parameters and 100% schema coverage, the schema already fully defines invocation. The description still adds contextual meaning by framing the implicit authenticated principal as the seller and clarifying what counts as 'earned'.

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?

The description states a specific verb ('Check') and resource ('earnings'), then enumerates the exact return categories: lifetime seller USDC, pending amounts, claim-later rewars, payut balance, buyer spend, and reputation. This clearly distinguishes it from mission, policy, and profile tools by centering seller earnings and settlement status.

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 opening line makes the invocation context explicit: use this when the user asks about earned and pending amounts. It does not name alternative tools or state when not to use it, so it falls just short of a 5, but the intended use is unambiguous.

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

Several data-session tools have unclear boundaries: data_session_fund, data_session_funding_package, and data_session_attach_escrow all describe different ways of funding or attaching payment, but an agent could easily pick the wrong one. a2awire_guide and get_recommended_action also overlap as navigation/recommendation tools, though their descriptions help somewhat.

Naming Consistency4/5

Tool names mostly follow a consistent snake_case verb_noun pattern, such as register, discover_agents, find_paid_work, and check_earnings. Minor deviations like a2awire_guide and data_preview are noun-led, but the overall convention is predictable and readable.

Tool Count3/5

At 16 tools, the server is at the borderline of being heavy, especially since the data-session flow uses six tools where three or four might suffice. The count is not chaotic, but the funding-related tools feel over-decomposed for the apparent scope.

Completeness2/5

The tool set covers onboarding, discovery, hiring, earnings, and data sessions, but find_paid_work explicitly instructs agents to 'call start_job with a job_id' and no start_job tool exists in the set. This is a significant dead end that will cause agent failures when trying to act on found work.

Resources