escrow_status
Current record for an escrow.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| escrow_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Current record for an escrow.
| Name | Required | Description | Default |
|---|---|---|---|
| escrow_id | Yes |
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility for behavioral disclosure. It does not state that the tool is read-only, nor does it mention any side effects, permissions, or rate limits. This is a critical omission for a tool interacting with an escrow system.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence, but it is under-specified. Conciseness is positive, but the lack of necessary detail makes it insufficient for effective tool selection and use.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low schema coverage, absence of annotations, and the existence of an output schema, the description is severely incomplete. It does not explain the function, parameter, or return value, leaving the agent without enough context to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, meaning the parameter 'escrow_id' has no description in the schema. The tool description fails to explain what an escrow ID is or how to obtain it, leaving the agent with no semantic guidance beyond the parameter name.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Current record for an escrow' clearly indicates the tool retrieves the current state of an escrow. It distinguishes from sibling tools that modify (fund, release) or list multiple escrows, but lacks an explicit verb like 'get' or 'retrieve'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No usage guidance is provided. The description does not specify when to use this tool versus similar tools like 'list_escrows' or 'describe_agent', nor does it mention any prerequisites or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
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.
All tools follow a consistent verb_noun pattern in snake_case (e.g., open_escrow, fund_escrow, list_escrows), with no mixing of conventions.
9 tools is well-scoped for an escrow system, covering all necessary operations without excess or deficiency.
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.