Skip to main content
Glama

guild_escrow_release

Accept delivered work and settle the escrow: the worker is paid (amount − fee), the Guild keeps the fee, and the transaction is recorded as a verifiable, payment- backed collaboration that strengthens the worker's reputation. Authenticate with YOUR api_key (the payer). Returns the settlement detail.

Example: guild_escrow_release(issuer_api_key="sk_...", escrow_id="esc_...", deliverable="", rating=0.95)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ratingNo
escrow_idYes
deliverableNo
issuer_api_keyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly states the financial split (amount−fee to worker, fee to Guild), the reputation impact, and the authentication requirement (payer's api_key). It also mentions the return type (settlement detail). This is thorough and leaves no major behavioral trait undisclosed.

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 concise sentences plus a compact example. Every sentence adds meaningful information: what happens, who authenticates, what is returned, and how to call it. No filler or redundancy; the structure is front-loaded and easy to parse.

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?

The description is generally thorough, covering the settlement flow, authentication, and return. However, the rating parameter's role, range, or effect on settlement is not explicitly defined; only an example value is given. This minor gap prevents a perfect completeness score but does not materially impair an agent's ability to use the tool.

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?

Schema description coverage is 0%, so the description must compensate. It successfully explains issuer_api_key (payer's key), escrow_id (the escrow identifier), and deliverable (the work product) via the example. Rating is only shown in the example without explicit meaning, but the example provides a concrete value and context implies it's a quality rating. This adds significant value beyond the bare schema.

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 opens with 'Accept delivered work and settle the escrow' – a specific verb+resource that clearly identifies the tool's function. It distinguishes itself from siblings like guild_escrow_open by detailing the settlement outcome (worker paid, Guild fee, transaction recorded), leaving no ambiguity.

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 establishes clear usage context: it is for settling escrow after work has been delivered, and it explicitly states that the caller must authenticate with the payer's api_key. It does not name alternatives or exclusions, but the context is sufficient for an agent to infer when to use this tool versus others.

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

A4.1/5.0
Disambiguation4/5

Tools are grouped by prefix (ag_calc_, ag_data_, ag_json_, ag_table_, ag_text_), which helps disambiguate. However, some clusters like guild_search, guild_check, guild_risk_score, and guild_best_agent have overlapping goals (all find or evaluate agents), and guild_prove and guild_prove_verify are tightly coupled but distinct. Overall, most tools have clear purposes.

Naming Consistency4/5

The tools follow a consistent verb_noun or domain_verb pattern (e.g., ag_calc_stats, ag_data_dedupe, guild_search). The mix of ag_ and guild_ prefixes is slightly inconsistent, but within each group naming is uniform. No chaotic mixing of cases (all snake_case). Minor deduction for the split prefix.

Tool Count3/5

39 tools is on the high side for a single MCP server. While the tools are genuinely useful and cover distinct deterministic utilities plus guild trust operations, the count feels heavy. A more focused split (e.g., separate server for deterministic utilities vs. guild trust) could improve coherence.

Completeness5/5

The server covers a broad set of deterministic utilities (statistics, unit conversion, JSON, CSV, regex, date normalization) and a full trust/reputation workflow (register, search, check, risk score, escrow, attest, record, passport, verify, preflight). There are no obvious gaps: for the declared capabilities, the tool surface is comprehensive.