Skip to main content
Glama

open_escrow

Open an escrow between payer and payee. amount_minor is a positive integer in minor units (cents). The platform fee is computed and FROZEN at open (ceil bps). Returns the escrow_id (state OPEN). RETRY-SAFE: pass open_ref= and a replayed open returns the ORIGINAL escrow (duplicate=true) instead of minting another one (E10).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
payeeYes
payerYes
termsNo
fee_bpsNo
currencyNoUSD
deadlineNo
open_refNo
amount_minorYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

B3.4/5.0
Behavior4/5

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

With no annotations, the description effectively discloses key behaviors: fee freezing at open (ceil bps), return of escrow_id with state OPEN, and retry safety via open_ref. Missing are permission requirements or error scenarios, but core behavioral traits are well covered.

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 concise at three sentences, front-loading the main action. Every sentence adds value, though some parameter details could be integrated without bloat.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, the description appropriately mentions return values. However, it fails to cover all parameters (only 2 of 8 discussed) and omits side effects or state transitions, making it incomplete for a tool with 8 parameters.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Given 0% schema description coverage, the description compensates only for amount_minor (positive integer in cents) and open_ref (retry safety). The other six parameters (payer, payee, terms, fee_bps, currency, deadline) are left unexplained, leaving significant gaps.

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's action (open an escrow between payer and payee) and includes specific details about amount_minor, fee behavior, return value, and retry safety. It distinguishes itself well within the context of escrow operations.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like fund_escrow or release_escrow. It lacks explicit context for when-not-to-use or relationships to sibling tools.

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

Each tool has a clearly distinct purpose covering specific lifecycle actions (open, fund, release, refund, dispute) and queries (status, list, audit). No overlap in functionality.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (e.g., open_escrow, fund_escrow, list_escrows), with no mixing of conventions.

Tool Count5/5

9 tools is well-scoped for an escrow system, covering all necessary operations without excess or deficiency.

Completeness5/5

Complete lifecycle coverage: open, fund, release, refund, dispute, status, list, audit, plus self-description. Refund also handles cancellation of OPEN escrows, filling a potential gap.