Skip to main content
Glama

laen_resolve

PAID (your wallet). Submit your SIGNED x402 payment payload (the base64 X-PAYMENT header value your client produced for this blocker's requirements) and receive the resolution: independently verifiable evidence (+ anchored certificate with verify_url if product=certificate). Fail-closed: no valid settled payment, no evidence. Without x_payment this returns the 402 requirements so you can pay and retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
productNo
x_paymentNobase64 X-PAYMENT payload signed by YOUR wallet for this blocker's x402 requirements
blocker_idYesthe blocker/obligation id (obl_<16hex>)

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so exceptionally. It discloses that the user's wallet will be charged ('PAID'), the tool fails closed ('no valid settled payment, no evidence'), and the fallback behavior when x_payment is missing. This is far beyond a generic 'resolve' claim.

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 dense but every sentence adds value: payment, input format, output, fail-closed behavior, and fallback. It is not overly long, and the most critical information ('PAID') is front-loaded.

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

Completeness4/5

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

Without an output schema, the description explains what the response will contain (verifiable evidence, optional certificate with verify_url) and the failure mode. It assumes some familiarity with x402 protocol but is otherwise complete for an agent to decide when to invoke and what to expect.

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 already covers blocker_id and the product enum (67% coverage). The description adds valuable semantics for x_payment ('base64 X-PAYMENT header value your client produced') and for product=certificate ('anchored certificate with verify_url'), which are not in the schema. This meaningfully improves parameter understanding.

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 this tool submits a signed x402 payment payload to resolve a blocker and receive independently verifiable evidence. It uses specific verbs ('Submit', 'receive the resolution') and distinguishes itself from sibling tools by being the payment/resolution step, while laen_find_blockers and laen_quote cover discovery and quoting.

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 gives clear context on when to call: after producing a signed X-PAYMENT header, or if no x_payment is provided, it returns 402 requirements. It does not explicitly name alternative tools, but the workflow is implied: quote, then resolve with payment.

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

A4/5.0
Disambiguation4/5

The tools are mostly distinct: army_list_services and army_quote are clear (list vs. quote), and laen_find_blockers and laen_quote are similar but one finds blockers and the other quotes a specific blocker. However, army_quote and laen_quote both serve the purpose of providing payment requirements for their respective domains, and a agent might confuse which quote applies to which service. The distinction is reinforced by naming (army_ vs laen_) but still a minor overlap.

Naming Consistency3/5

The naming uses a mix of snake_case for verbs like 'army_buy' and 'army_list_services', but 'laen_find_blockers' and 'laen_resolve' follow a similar pattern. However, 'army_' and 'laen_' prefixes are inconsistent - one uses 'army' and the other 'laen', and the verbs are not consistently placed (buy vs list_services vs find_blockers vs resolve). The pattern is readable but not fully uniform.

Tool Count5/5

Six tools is appropriate for a server that spans two focused domains (Army services and LAEN blockers). Each tool has a clear role: list, quote, buy/resolve, and find, which is a tight functional set. This is well within the ideal range, and the server doesn't feel over- or under-loaded.

Completeness4/5

The server covers the full lifecycle for both domains: list services and find blockers (discovery), quote (pricing), and buy/resolve (payment and execution). The only gap is that there is no cancellation or refund tool, but given the fail-closed nature, that's not critical. The core workflow of discover->quote->pay->receive is complete.

Resources