Skip to main content
Glama

Rate Counterparty

rate_wallet

Leave a 1–5 star peer rating for a counterparty after a completed escrow.

Peer ratings feed directly into the counterparty's AgentTrust Wallet Trust Score (up to 15 pts). One rating per escrow per rater. Ratings are permanent and public.

Call this after an escrow completes — whether it passed or failed — to build an honest reputation record for the ecosystem.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ratingYesStar rating from 1 (poor) to 5 (excellent).
commentNoOptional short comment about the counterparty.
escrow_idYesThe escrow ID for the completed transaction. One rating allowed per escrow per rater.
rater_roleYesYour role in the escrow: 'buyer' or 'worker'.
rater_addressYesYour XRPL wallet address (r...) — the rater.
wallet_addressYesThe XRPL wallet address (r...) of the counterparty you are rating.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.2/5.0
Behavior4/5

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

The annotations provide 'readOnlyHint=false' and 'destructiveHint=false', so the user already knows this is a write but non-destructive action. The description adds helpful behavioral context: ratings are 'permanent and public,' feed into a trust score ('up to 15 pts'), and are allowed after both passed and failed escrows. This is valuable beyond the 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 three short, well-structured sentences. The first sentence states the core action, the second sentence adds key behavioral implications (trust score impact permanence), and the third sentence provides usage timing. Every sentence earns its place without redundancy or fluff.

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?

Given the tool's moderate complexity (6 params), rich input schema, output schema presence, and the annotations, the description provides a complete enough picture: purpose, trigger condition, invariants (one-rating rule permanence public), and ecosystem effect. Minor gaps: it doesn't describe the output format or errors (though output schema handles that), and the 1-5 star scale is already in the schema. A 4 acknowledges strong coverage but slight room to add a note about idempotency or duplicate handling.

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?

The input schema covers all 6 parameters with descriptions, achieving 100% schema_description_coverage. The description adds general purpose context but does not significantly elaborate on the meaning of individual parameters beyond what the schema already provides. For example, it doesn't explain what happens if 'comment' is omitted or how 'rater_role' affects the rating. However, since schema coverage is complete, a baseline of 3 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?

The description explicitly states the action ('leave a 1–5 star peer rating'), the target ('counterparty'), and the required trigger context ('after a completed escrow'). This clearly distinguishes it from sibling tools like 'get_wallet_trust_score' (which reads a score) or 'evaluate_escrow_work' (which might be work-specific).

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 provides clear context on when to call the tool ('after an escrow completes') and the purpose ('to build an honest reputation record'). It mentions the constraint of 'one rating per escrow per rater.' However, it does not explicitly state when NOT to use it (e.g., if escrow is still active or if you are not the rater) or name specific alternative tools for non-rating actions, so a 4 is warranted.

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.9/5.0
Disambiguation4/5

Most tools target distinct resources and actions clearly. However, list_marketplace_jobs and list_open_jobs both involve browsing jobs and could be confused, and audit_task overlaps somewhat with evaluate_escrow_work in verifying work quality. Descriptions are detailed enough to differentiate with careful reading.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., create_escrow_vault, list_marketplace_jobs, confirm_wallet_ownership). There are no camelCase or Style deviations, making naming highly predictable.

Tool Count4/5

At 19 tools, the set is slightly heavy but reasonably scoped for a multi-featured platform covering job board, escrow, skills, wallet verification, and pricing. Each tool serves a distinct purpose, though some consolidation could be considered.

Completeness2/5

There is a significant gap: list_marketplace_jobs references a claim_job() function that does not exist in the tool set, breaking the primary workflow for agents to accept available bounties. Additionally, there are no update/delete operations for job postings or skill listings, and no explicit escrow cancellation tool.