Attest402
MCP server for creating cryptographically signed and timestamped evidence of public web/API responses, with offline verification of attestations and paid access via x402.
README
Attest402
Cryptographically signed and timestamped evidence of a public web or API response. Agent-native, paid per call via x402 — 0.20 USDC on Base. No accounts, no API keys.
An agent submits a public HTTPS URL → Attest402 fetches it securely, hashes body/headers/redirects, signs the canonical record with Ed25519, anchors it with an independent RFC-3161 timestamp and returns a portable evidence package that verifies fully offline.
The evidence confirms the integrity of the captured data and Attest402's observation at the stated time. It does not certify the truth, legality or authorship of the captured content.
Quickstart (local)
pip install -r requirements.txt
cp .env.example .env # defaults: dev mode, Base Sepolia
uvicorn app.main:app --reload
# → http://localhost:8000 (landing page, /openapi.json, /llms.txt)
Disable the paywall for local experiments with X402_ENABLED=false.
API
| Endpoint | Method | Price | Function |
|---|---|---|---|
/v1/attest |
POST | 0.20 USDC | Create an evidence package |
/v1/verify |
POST | free | Verify attestation (+ optional body) |
/v1/verify/{id} |
GET | free | Attestation metadata (90 d retention) |
/v1/evidence/{id} |
GET | free | Download evidence package (24 h retention) |
/.well-known/attest-keys.json |
GET | free | Ed25519 public keys (old keys permanent) |
/.well-known/x402.json |
GET | free | x402 discovery manifest |
/llms.txt |
GET | free | Agent-readable description |
/health |
GET | free | Healthcheck |
Architecture
app/
main.py FastAPI app, routes, retention loop
payments.py x402 middleware (exact/USDC/Base) + Bazaar discovery extension
fetcher.py SSRF-hardened fetcher (DNS-pinned, 2 MB cap, 3 redirects, 10 s)
ssrf.py URL/DNS/IP policy (blocks private, loopback, metadata, rebinding)
attest.py Pipeline: fetch → canonical record → sign → RFC-3161 → package
canonical.py Deterministic canonical JSON + SHA-256
signing.py Ed25519 key management (secret-store only, rotation-aware)
tsa.py RFC-3161 client (freetsa + DigiCert fallback)
evidence.py Evidence zip builder (offline-verifiable)
verify.py Verification logic (shared with /v1/verify)
mcp_server/ MCP server: attest_web_response / verify_attestation / get_attestation
scripts/ generate_keys.py · verify_offline.py (30-line standalone verifier)
docs/ DEPLOY.md · GO-LIVE-CHECKLIST.md · LISTINGS.md
listings/ Ready-to-submit listing materials (Bazaar, ecosystem PR, MCP registries)
Payments (x402)
- Scheme
exact, USDC, price$0.20, network Base Sepolia by default X402_USE_MAINNET=trueflips to Base mainnet (feature flag, no code change)- Settlement only after a successful capture — failed fetches are never charged
Idempotency-Keyheader dedupes retried jobs- Bazaar discovery metadata is declared on the paid route → automatic listing in the x402 Bazaar after the first CDP-facilitator settlement on mainnet
Verify an evidence package offline
python scripts/verify_offline.py attest_xxx-evidence.zip
Only needs cryptography. Checks canonical-record hash, Ed25519 signature,
body/headers/redirect hashes and the RFC-3161 token hash — no network access.
Tests
python -m pytest tests/ -q # 45 tests: SSRF policy, canonical determinism,
# sign/verify roundtrips, API flow, idempotency
Deploy
See docs/DEPLOY.md (Railway + Render, incl. mainnet switch and key rotation) and docs/GO-LIVE-CHECKLIST.md. Get listed: docs/LISTINGS.md.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.