Skip to main content
Glama

release_task_bounty

Releases escrow payout to the assigned worker after verified proof of completion, finalizing settlement irrevocably.

Instructions

    [Free / $0.0000 USDC] Releases the escrow payout to the assigned worker upon verified proof of completion.
    Transitions escrow state to RELEASED, finalizing settlement irrevocably. Free execution for the task creator.

    Args:
        escrow_id: Target escrow ID.
        creator_id: EVM wallet address of the task creator.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
escrow_idYes
creator_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.0

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations, the description must disclose behavior directly, and it does: it states the escrow state transitions to RELEASED and that settlement is finalized irrevocably. This is critical safety information for an irreversible financial action, though it omits authentication requirements and failure behavior.

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 compact and front-loads the core action and irreversibility before the argument list. The cost information is slightly redundant with '[Free / $0.0000 USDC]' repeated as 'Free execution', but overall it contains no filler.

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?

For an irreversible payout tool with no output schema and no annotations, the description covers the essential side effect but omits return/status behavior, error conditions, and whether ownership verification occurs. It is adequate for invoking the tool, but not fully complete for high-stakes settlement.

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 description coverage is 0%, so the description is the only source of parameter meaning. It adds that creator_id is an EVM wallet address and escrow_id is the target escrow ID, which is useful but minimal; validation rules and the relationship between creator_id and the escrow are not explained.

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 action—releases the escrow payout to the assigned worker—and names the exact state transition (RELEASED). This clearly distinguishes it from worker-side siblings like submit_task_proof and claim_task_bounty.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'upon verified proof of completion' implies the intended workflow position, but the description never explicitly says when to use this tool versus claim_task_bounty or submit_task_proof. No alternatives or exclusions are named, so usage guidance is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.