Skip to main content
Glama

x402-receipt-verifier

Server Details

Audits NEXUS's own x402 payment logs against its own delivery logs and issues a signed proof-of-deli

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
nexus-mcp-infra/x402-receipt-verifier
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsB

Average 3.6/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

The two tools target clearly distinct functions: one checks aggregate payer spend/delivery health, while the other audits a single payment and returns a signed receipt. Their descriptions are specific enough that an agent should not confuse them.

Naming Consistency4/5

Both tool names are snake_case and descriptive, though payer_spend_health is a noun phrase while verify_payment_receipt uses a verb-object form. The minor stylistic deviation does not hurt readability.

Tool Count4/5

Two tools is slightly below the typical 3-15 range, but it is appropriate for a narrow read-only receipt verification domain. Each tool covers a distinct core use case without seeming padded.

Completeness4/5

The server covers the main verification workflows: validating one payment and summarizing payer-level delivery health. Batch verification or broader receipt-log queries would be useful additions, but the core domain is not left with a dead end.

Available Tools

2 tools
payer_spend_healthBInspect

Aggregate delivery-confirmation rate for one payer address on one NEXUS asset over lookback_days. verdict is SUMMARY (with delivery_rate) or NO_PAYMENTS_FOUND.

ParametersJSON Schema
NameRequiredDescriptionDefault
asset_nameYes
lookback_daysNo
payer_addressYes
Behavior3/5

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

With no annotations and no output schema, the description carries the behavioral disclosure burden. It does add useful information by specifying the possible verdicts, SUMMARY with delivery_rate or NO_PAYMENTS_FOUND. However, it does not disclose side effects, permissions, or result format details beyond those two verdicts.

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?

The description is short, front-loaded, and every sentence contributes. It states the main purpose first, then the possible outcome states, with no redundant filler or restatement of the tool name.

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

Completeness3/5

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

The description gives the core purpose and outcome variants, which is adequate for a simple three-parameter read-like aggregation. However, it lacks definitions for the parameters and does not fully characterize the returned delivery_rate or edge-case behavior, leaving minor but real gaps.

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?

Input schema description coverage is 0%, so the description must compensate. It references lookback_days and payer_address but does not meaningfully define them or explain expected formats, constraints, or meaning of asset_name. The description adds little beyond what the parameter names already imply.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states what the tool does: it aggregates delivery-confirmation rate for one payer address on one NEXUS asset over lookback_days. The verb and resource are specific, though it does not explicitly distinguish itself from the sibling tool verify_payment_receipt.

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?

There is no explicit guidance about when to use this tool versus verify_payment_receipt. The descriptor 'aggregate' and the sibling's name imply a distinction, but the description does not state when one should be preferred or what exclusions apply.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

verify_payment_receiptAInspect

Audits one x402 payment against NEXUS's own delivery logs (its own assets only) and returns a signed receipt. verdict is one of VERIFIED_DELIVERY, PAYMENT_NO_DELIVERY, PAYMENT_NOT_FOUND. claimed_at must be an ISO-8601 timestamp.

ParametersJSON Schema
NameRequiredDescriptionDefault
asset_nameYes
claimed_atYes
payer_addressYes
window_secondsNo
claimed_amount_usdYes
Behavior4/5

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

No annotations are present, so the description carries the disclosure burden. It says the tool audits, returns a signed receipt, enumerates the exact verdict values, and requires claimed_at to be ISO-8601. It does not mention authentication, side effects, or signing details, but the core behavior is clearly disclosed.

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?

Every sentence earns its place: scope, return type, verdict enum, and timestamp constraint. There is no filler or repetition, and the description remains easy to scan despite containing multiple useful facts.

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

Completeness3/5

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

For a tool with no output schema and no annotations, it gives useful return information through the verdict values and 'signed receipt.' However, the exact role of window_seconds, the interpretation of the claimed fields, and the shape of the signed receipt are missing, so an agent must still fill gaps before confidently invoking the tool.

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?

Schema description coverage is 0%, and the description only specifies the timestamp format for claimed_at. The remaining parameters, especially window_seconds with default 120, receive no meaning in the description, and the matching logic for claimed_amount_usd and payer_address is left entirely to inference.

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?

States a specific verb and resource: 'Audits one x402 payment against NEXUS's own delivery logs' and limits it to 'its own assets only.' The three verdict strings make the expected output concrete and distinguish it from a generic or health-summary tool.

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 a clear when-to-use context: verifying a single payment against NEXUS's own logs. It also implies a scope limitation with 'its own assets only,' which helps differentiate it from a broader spend-health query, though it never explicitly names or rejects payer_spend_health.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.