Hive Escrow
Server Details
Trust-minimized USDC escrow for autonomous agent transactions
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- srotzin/hive-mcp-escrow
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.4/5 across 5 of 5 tools scored.
Each tool targets a distinct step in the escrow lifecycle: creation, funding, cancellation, release, and status retrieval. No overlap in purpose.
All tools follow a consistent verb_noun pattern (e.g., create_escrow, fund_escrow). The deviation in get_escrow_status is minor and still clearly follows the convention.
Five tools is ideal for an escrow service, covering all essential actions without unnecessary complexity. The scope is well-matched.
Covers the full lifecycle (create, fund, cancel, release, status). Minor gaps like a refund or dispute mechanism are absent but not critical for a basic escrow on Base USDC.
Available Tools
5 toolscancel_escrowBInspect
Cancel an escrow. Only valid for created (unfunded) or funded (payer-initiated refund queue) states.
| Name | Required | Description | Default |
|---|---|---|---|
| reason | No | ||
| escrow_id | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description should cover behavioral details. It only mentions state validity, but does not disclose side effects (e.g., whether cancellation is irreversible), permission requirements, or rate limits. This is minimal transparency for a mutation operation.
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 extremely concise: two short sentences with no wasted words. It front-loads the action and adds necessary state constraint in the second sentence. Every sentence earns its place.
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 tool's stateful nature and the presence of sibling tools, the description lacks important context such as return behavior (e.g., success/failure indicators), prerequisites (e.g., escrow ownership), and how cancellation interacts with escrow lifecycle. The absence of output schema is not compensated.
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?
The description adds no meaning to the input schema parameters (escrow_id, reason). With 0% schema coverage, the agent gets no guidance on what 'reason' signifies or format requirements, leaving the agent to infer from parameter names only.
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 clearly states the action 'Cancel an escrow' with a specific verb and resource. It distinguishes from sibling tools (create, fund, get status, release) by indicating a distinct operation, and adds state condition details.
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?
The description explicitly limits usage to specific states ('created (unfunded) or funded (payer-initiated refund queue) states'), providing clear context. However, it does not mention when not to use it or suggest alternatives like get_escrow_status for checking state.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_escrowBInspect
Create a new A2A escrow record on Base USDC. Returns escrow_id and x402 funding challenge.
| Name | Required | Description | Default |
|---|---|---|---|
| asset | No | USDC | |
| network | No | base | |
| payee_did | Yes | W3C DID of the receiving party | |
| payer_did | Yes | W3C DID of the paying party | |
| conditions | Yes | Release conditions description | |
| amount_atomic | Yes | Amount in USDC atomic units (1 USDC = 1000000) | |
| expires_in_seconds | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description partially covers behavior: it returns escrow_id and x402 funding challenge. However, it omits details about mutability, authorization needs, or side effects beyond creation.
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?
Single sentence, no filler, directly states purpose and key output.
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?
Mentions return values but no output schema. For a 7-parameter tool, missing details on error conditions or full output shape. Adequate but not comprehensive.
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 coverage is 57% (4 of 7 parameters have descriptions). The description adds no additional meaning beyond the schema; does not explain enums, defaults, or constraints like expires_in_seconds.
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?
Description clearly states action (Create), resource (A2A escrow record), and context (Base USDC). The return value is specified, distinguishing it from sibling tools like cancel_escrow or fund_escrow.
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 guidance on when to use this tool vs alternatives (e.g., funding or cancelling). Does not specify prerequisites or scenarios that warrant creation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fund_escrowAInspect
Fund an escrow via x402 USDC payment. Requires X-PAYMENT header with EIP-3009 authorization.
| Name | Required | Description | Default |
|---|---|---|---|
| escrow_id | Yes | Escrow ID returned by create_escrow | |
| x_payment | Yes | EIP-3009 transferWithAuthorization proof (X-PAYMENT header value) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses behavioral traits like USDC settlement via x402 on specified chains, and importantly notes 'Backend pending (Q3 2026)' indicating current incomplete implementation.
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?
Two concise sentences front-load the primary action. Every word is informative with no redundancy.
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?
For a simple funding tool without an output schema, the description provides sufficient context about settlement chains and backend status, though details on expected responses or side effects could enhance completeness.
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 coverage is 100% with descriptions for both parameters. The description adds meaningful context: escrow_id is from open_escrow, tx_hash is the on-chain funding hash, enriching what the schema provides.
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 clearly states the verb 'Fund' and the resource 'open escrow' via a specific method (submitting on-chain transaction hash). It distinguishes itself from sibling tools like open_escrow, release, and dispute.
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?
The description implies usage when an escrow is open and a funding transaction hash is available. It provides clear context but does not explicitly state when not to use or mention alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_escrow_statusCInspect
Retrieve current state and metadata for an escrow by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| escrow_id | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description offers minimal behavioral insight beyond being a read operation. It does not disclose error responses, authorization needs, or side effects.
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 sentence with no superfluous words, though it could benefit from slight expansion without losing conciseness.
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?
With no output schema, the description should detail the returned state and metadata. It only offers vague terms, leaving the agent without enough context to interpret results.
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?
The single parameter (escrow_id) is simply mentioned as 'by ID' with no additional explanation of format, constraints, or source. Given 0% schema description coverage, this is insufficient.
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 clearly identifies the action ('Retrieve') and resource ('current state and metadata for an escrow by ID'), differentiating it from sibling tools that are write operations (create, fund, cancel, release).
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 guidance is provided on when to use this tool versus alternatives, nor any prerequisites or conditions for invoking it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
release_escrowBInspect
Release escrowed USDC to payee. 50 bps take deducted and accrued to Monroe treasury.
| Name | Required | Description | Default |
|---|---|---|---|
| escrow_id | Yes | ||
| payee_address | Yes | EVM address to receive net payout |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must cover behavioral traits. It mentions a 50 bps fee deduction, but lacks details on state changes (e.g., escrow consumed?), success/failure conditions, authorization requirements, or transaction finality. Significant gaps.
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?
Two sentences, concise and front-loaded. Every word provides useful information without redundancy.
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?
For a financial tool involving fees, the description is too minimal. No output schema, so hints about return value or success indication are missing. No mention of prerequisites (e.g., escrow must be funded) or consequences (e.g., cannot be released again). Leaves many questions unanswered.
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 50% (only payee_address has a description). The description adds 'net payout' nuance but does not explain escrow_id. It relies on parameter names but doesn't compensate for the missing schema description of escrow_id.
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?
Description clearly states the tool releases escrowed USDC to a payee and mentions fee deduction. Verb 'release' and resource 'escrowed USDC' is specific. Distinguishes from siblings like cancel_escrow and fund_escrow.
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 guidance on when to use this tool versus alternatives. For a financial action, prerequisites (e.g., escrow must be funded) and conditions are missing. Sibling tools exist but no comparative context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!