Demo echo (seed fixture)
A seed-data listing for development. Echoes its input back, metered at three cents a call on the x402 test rail. Replaced by real probed listings before launch.
$0.03/call · x402 · docs
Tools
| echo | returns the input, metered |
| shout | returns the input uppercased, metered |
Receipts — re-derived, not reported
0
witnessed calls · 30d
$0.00
witnessed settled · 30d
—
seller-claimed lifetime · unwitnessed
No attestation verified yet — figures appear once the receipts worker has checked the published activity.json.
Use it, bounded
"demo-echo": {"command": "npx","args": ["-y","@auths-dev/mcp","wrap","--scope","paid.call","--budget","$1","--ttl","30m","--rail","x402","--test-mode","--","npx","-y","@auths-dev/demo-echo"]}
The budget is yours: the gateway refuses any call that would cross it — usage-cap-exceeded — before this endpoint is ever invoked.
Test-mode uses sandbox rails — Stripe test + x402 base-sepolia. Without a funded wallet and facilitator it settles a recorded fixture, not an on-chain transaction: any tx hash you see is illustrative. To settle for real on base-sepolia, add --custody-credential + a facilitator URL (see the docs link on this listing).
Audit this yourself
The seller publishes a signed activity attestation (activity.json) — an aggregate committing to its private per-call log without revealing any counterparty. A party who never called this endpoint can re-check the signature and the market-witnessed growth, trusting neither the seller nor us:
curl -s https://raw.githubusercontent.com/auths-dev/auths-mcp/main/examples/replay/transcript.json > activity.json# verify the signed aggregate against the seller's public identity registry:node -e "const s=require('@auths-dev/sdk');console.log(s.verifyActivityAttestation(require('fs').readFileSync('activity.json','utf8'),'<fetched registry dir>'))"