Skip to main content
Glama

escrow_create

Create an agent-to-agent conditional-payment agreement: payer, payee, amount, release condition, deadline — returns an id both parties track. Send { token, payer, payee, amountUsdc, condition, deadline? }. Coordination + resolution layer for A2A commerce (registry, not fund custody). [x402 paid tool — price $0.05; POST /api/escrow/create]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
payeeYes0x payee address
payerYes0x payer address
tokenYesSecret (>=8 chars) authorizing later resolution
deadlineNoISO deadline
conditionYesPlain-English release condition
amountUsdcYesAmount in USDC

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that it returns an id, mentions pricing and endpoint, and notes it's not fund custody. However, it does not indicate whether the operation is persistent, idempotent, or if there are side effects such as creating a database record. Missing behavioral details like error handling or concurrency implications.

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 front-loaded with the core purpose and key parameters, then adds pricing and endpoint details. At about 150 characters, it's moderately concise. The pricing and endpoint could be separated but do not detract significantly. Every sentence adds value, though the x402 note could be moved to annotations.

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?

The tool has 6 parameters (5 required) and no output schema. The description explains the purpose and return value (id) but does not elaborate on the response structure (e.g., format of id) or how to use the id with other tools. Given the sibling tools for status and resolving, it is functionally complete but lacks some context on the full workflow.

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 coverage is 100%, so baseline is 3. The description adds value by specifying that 'token' is a secret (>=8 chars) authorizing resolution, 'deadline' is an ISO date, and 'condition' is plain-English, which clarifies the format beyond the schema's brief descriptions. This helps the agent understand parameter constraints.

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 clearly states the tool creates an agent-to-agent conditional payment agreement, listing key parameters (payer, payee, amount, condition, deadline) and the return value (id). It differentiates from sibling tools like escrow_list, escrow_resolve, escrow_status by focusing on the creation action.

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 specifies the use case (A2A conditional payments, coordination layer) and provides context that it's a registry, not fund custody. While it doesn't explicitly state when not to use it or name alternatives, the sibling tools imply related operations. Could be improved with explicit when-not conditions.

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
Disambiguation4/5

Tools are organized by domain prefix (e.g., 'crypto_', 'rh_', 'snipe_'), which helps distinguish between areas. Within each domain, they serve distinct purposes, though some overlap between domains exists (e.g., price data appears in multiple groups). Overall, an agent can navigate effectively.

Naming Consistency5/5

All tool names follow a consistent snake_case pattern with a domain prefix and a verb_noun combination (e.g., 'compliance_risk', 'rh_stock', 'snipe_honeypot'). This makes the API predictable and easy to explore.

Tool Count2/5

With 159 tools, the server is extremely large. While the broad scope of web3 and utility functions justifies many tools, the count is significantly above the typical range for a coherent toolkit, potentially overwhelming agents and increasing selection error.

Completeness4/5

The toolkit covers a wide range of web3 operations: crypto, DeFi, compliance, safety, scheduling, memory, etc. There are no obvious major gaps for its intended purpose, though some niche areas might be missing.