Skip to main content
Glama

Wever Pay Agent Discovery Mesh

Fulfill Commerce Purchase

fulfill_commerce_purchase

Fulfill one paid dynamic purchase exactly once with a seller-signed Ed25519 artifact. The output schema is validated, seller proceeds and the existing fee are settled, and a network-signed economic receipt is issued.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
purchaseIdYes
fulfillmentYesA JSON object accepted only when its canonical serialized form is at most 50000 characters and its nesting depth is at most 64.
idempotencyKeyYes

TDQS

A4.2/5.0
Behavior4/5

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

Beyond the annotations (non-read-only, non-destructive), the description discloses important side effects: validation of an output schema, settlement of seller proceeds and existing fees, and issuance of a network-signed economic receipt. It also reveals the authorization requirement of a seller-signed Ed25519 artifact and the exactly-once guarantee. The phrase 'output schema is validated' is slightly ambiguous, preventing a 5.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, about 40 words, lead with the core action and constraints, then list the consequential outcomes. There is no filler or redundant restatement of schema fields.

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?

For a side-effectful tool with no output schema, the description covers the essential contract: what is fulfilled, under what conditions, and what happens afterward (settlement, receipt). Parameter names are self-explanatory, and the only real gap is an explicit statement of the return value, though the receipt issuance partially covers that.

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?

With schema coverage at only 33%, the description compensates by linking fulfillment to the seller-signed artifact, purchaseId to the paid purchase, and idempotencyKey to the 'exactly once' behavior. It does not describe each parameter explicitly, but it adds meaningful context beyond the bare schema types.

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 action ('Fulfill'), the resource ('paid dynamic purchase'), and the key conditions ('exactly once', 'seller-signed Ed25519 artifact'), making it distinct from sibling purchase/execute/recover tools. It conveys a precise post-payment fulfillment step.

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

Usage Guidelines3/5

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

The description implies this tool is used for paid purchases and exactly-once fulfillment, but it does not explicitly state when to use it versus alternatives such as execute_authorized_purchase or recover_commerce_purchase. No direct routing guidance is provided, so the agent must infer usage from context.

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

C2.8/5.0
Disambiguation2/5

The set has multiple near-synonymous read and recovery surfaces, e.g. get_commerce_purchase_status vs get_purchase_recovery_status vs recover_authorized_purchase vs recover_commerce_purchase, and discover_assurance_services vs discover_commerce_index vs get_discovery_manifest vs search_verified_offers. Long descriptions are required to tell them apart, so misselection is likely.

Naming Consistency4/5

All names follow a readable snake_case verb_noun pattern, with get_, request_, create_, verify_, and recover_ prefixes used consistently. The main deviation is read operations split across get_/discover_/inspect_/search_/list_, which is still understandable but not perfectly uniform.

Tool Count1/5

At 50 tools this is in the extreme-mismatch band for an MCP server. Even with a broad payment/commerce/discovery domain, dozens of get/status/recovery tools could be consolidated or parameterized.

Completeness4/5

The toolset covers the major lifecycles: registration, wallet, funding, payment, commerce offer/purchase/fulfillment/refund, mandates, and verification. Minor gaps such as no service unregister/update, no payment-request cancellation, and no wallet deletion are workable but not fatal.

Resources