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.
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.6/5 across 2 of 2 tools scored.
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.
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.
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.
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 toolspayer_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.
| Name | Required | Description | Default |
|---|---|---|---|
| asset_name | Yes | ||
| lookback_days | No | ||
| payer_address | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| asset_name | Yes | ||
| claimed_at | Yes | ||
| payer_address | Yes | ||
| window_seconds | No | ||
| claimed_amount_usd | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
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!
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables autonomous agents to calculate deterministic profit and loss, attribute revenue and costs, and generate signed operational reports using x402 micropayments.MIT
- AlicenseAqualityBmaintenanceEnables AI agents to fetch and independently verify on-chain data such as account balances and contract code hashes using Merkle proofs and ECDSA signatures, with x402 payment integration.3MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to validate deliverables (JSON, ZIP, PDF, DOCX) against signed contracts, generating verifiable receipts with Ed25519 signatures.

EVIDIQ Notary MCPofficial
AlicenseNot gradedqualityBmaintenanceCryptographic receipt layer for AI inferences. Enables notarization and verification of AI outputs with on-chain proofs via x402 payment.1MIT