npm @forgemeshlabs/x402-notary-mcpstdioMITupdated 15d ago
A ForgeMesh Labs product โ the notary of the x402 agent economy.
What can you do with x402 notary mcp?
x402 Notary โ Cryptographic Receipts for AI Outputs
A ForgeMesh Labs product โ the notary of the x402 agent economy.
Prove what your AI said, when it said it, and which model said it.
Every AI output is just text. There's no proof a specific model produced a specific response at a specific time โ and as agents start hiring other agents, that trust gap gets expensive. x402 Notary closes it: submit any inference, pay $0.001 in USDC (automatic, via x402 on Base or Solana โ no API key, no account), and get back a signed, timestamped, chain-anchored receipt that anyone can verify, free, forever.
We notarize the hash, not your secrets. Your prompt and response are hashed and signed โ never stored. Private signed receipts, publicly anchored by batch root.
Quick start: Base (Claude Desktop / Claude Code / any MCP client)
{
"mcpServers": {
"x402-notary": {
"command": "npx",
"args": ["-y", "@forgemeshlabs/x402-notary-mcp"],
"env": {
"WALLET_PRIVATE_KEY": "0x..."
}
}
}
}
WALLET_PRIVATE_KEY is a dedicated low-balance Base wallet for x402 micropayments โ never your primary wallet. $1 of USDC notarizes 1,000 outputs.
Quick start: Solana
{
"mcpServers": {
"x402-notary-solana": {
"command": "npx",
"args": ["-y", "@forgemeshlabs/x402-notary-mcp"],
"env": {
"NOTARY_RAIL": "solana",
"NOTARY_BASE_URL": "https://notary-solana.forgemesh.io",
"SOLANA_PRIVATE_KEY": "[1,2,...]"
}
}
}
}
SOLANA_PRIVATE_KEY is a dedicated low-balance Solana keypair for x402 micropayments. It may be a JSON byte array, base58, base64, or hex-encoded 32/64-byte key. Never use your primary wallet.
Verification needs no wallet at all. Skip the env block entirely and you can still verify receipts, inspect attestations, and read live stats.
Tools
| Tool | Cost | What it does |
|---|---|---|
notarize_inference |
$0.001 | Signed receipt for one {prompt, response, model_id} |
notarize_batch |
$0.005 | Up to 20 receipts in one call โ built for audit trails |
verify_attestation |
free | Check any receipt: signature, content hash, Merkle proof |
get_receipt |
free | Fetch the public proof material for an attestation |
notary_stats |
free | Live volume, top models, anchored batches |
notary_pubkey |
free | The notary's Ed25519 key โ verify receipts fully offline |
What a receipt proves
When you notarize an inference you get an attestation:
{
"attestation_id": "att_64d22f5f5c95d0e759ad54dc",
"content_hash": "sha256 of {prompt, response, model_id, timestamp}",
"signature": "Ed25519 โ verifiable offline against the public notary key",
"notarized_at": "2026-07-03T02:47:11.000Z",
"anchor": { "status": "sealed", "merkle_root": "โฆ", "proof": ["โฆ"] }
}
That's proof of three things:
- Existence โ this exact content existed at this exact time.
- Integrity โ change one character of the prompt or response and verification fails.
- Independence โ signatures verify offline with the published key; Merkle roots anchor batches. You don't have to trust the notary's word after the fact.
Verify anything, free, from anywhere
Any agent (or human, or CI job) can check a receipt before acting on the output behind it:
curl -s https://notary.forgemesh.io/api/verify \
-H 'content-type: application/json' \
-d '{"attestation_id":"att_โฆ","prompt":"โฆ","response":"โฆ","model_id":"openai/gpt-5"}'
"valid": true means the content matches the notarized hash and the notary's Ed25519 signature checks out. Tampered content is rejected with the exact failing check.
When should an agent notarize?
Not every call โ the outputs that matter:
- Agent-to-agent handoffs โ prove what you passed downstream came from this model, unmodified
- Paid deliverables โ research, reports, recommendations someone is paying for
- Compliance & audit trails โ decisions that affect money, legal exposure, or reputation
- Dispute prevention โ "this is exactly what was generated, at exactly this time"
- Marketplace reputation โ build a public, verifiable reliability trail for your agent or service
Casual chat and scratchpad reasoning don't need receipts. Externalized outputs do.
Privacy, by design
- Raw prompts, responses, and metadata are not persisted โ the notary computes the hash, signs it, and discards the content.
- Receipts contain proof material only: hash, signature, timestamps, model id, Merkle proof.
- Only Merkle batch roots are anchored on-chain. Your content never touches a public chain.
- Verification works by you supplying your original content โ the notary can't reveal what it never kept.
How payment works
No signup, no API key, no subscription. The first request returns an HTTP 402 challenge; your MCP client signs a USDC payment authorization and retries. Base uses EIP-3009; Solana uses the x402 SVM exact rail. The receipt lands in the same response โ including the payment transaction hash under _payment.
Direct API
Prefer raw HTTP? The full agent-readable surface:
https://notary.forgemesh.io/llms.txtโ one-page summary for agentshttps://notary.forgemesh.io/openapi.jsonโ OpenAPI 3.1 with x402 payment metadatahttps://notary.forgemesh.io/.well-known/x402.jsonโ x402 discovery manifesthttps://notary-solana.forgemesh.io/llms.txtโ Solana rail summaryhttps://notary-solana.forgemesh.io/openapi.jsonโ Solana OpenAPI 3.1 with x402 metadatahttps://notary-solana.forgemesh.io/.well-known/x402.jsonโ Solana x402 discovery manifest
FAQ
Is my prompt stored anywhere? No. The hash is computed, signed, and the raw text is discarded. This is the default and only mode.
Do I need an account or API key? No. x402 payments are the only credential.
What does verification cost? Nothing, for anyone, forever. Charging to verify would defeat the point of a trust primitive.
What chain and token? USDC on Base mainnet (eip155:8453) by default. Set NOTARY_RAIL=solana and NOTARY_BASE_URL=https://notary-solana.forgemesh.io for Solana mainnet USDC.
Can I verify receipts without contacting the notary? Yes โ fetch the Ed25519 public key once (notary_pubkey) and verify signatures offline.
Why "x402 Notary"? x402 is the open protocol that lets AI agents pay for services in USDC over plain HTTP โ and this is its notary: the attestation layer agents use to prove and verify each other's outputs before money or reputation moves on them.
Built by ForgeMesh Labs ยท Powered by the x402 protocol ยท MIT License
Install
Add x402 notary mcp to your client. Pick the one you use.
claude mcp add x402-notary-mcp -- npx -y @forgemeshlabs/x402-notary-mcpcodex mcp add x402-notary-mcp -- npx -y @forgemeshlabs/x402-notary-mcpamp mcp add x402-notary-mcp -- npx -y @forgemeshlabs/x402-notary-mcp{
"mcpServers": {
"x402-notary-mcp": {
"command": "npx",
"args": [
"-y",
"@forgemeshlabs/x402-notary-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"x402-notary-mcp": {
"command": "npx",
"args": [
"-y",
"@forgemeshlabs/x402-notary-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"x402-notary-mcp","command":"npx","args":["-y","@forgemeshlabs/x402-notary-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"x402-notary-mcp": {
"command": "npx",
"args": [
"-y",
"@forgemeshlabs/x402-notary-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"x402-notary-mcp": {
"command": "npx",
"args": [
"-y",
"@forgemeshlabs/x402-notary-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"x402-notary-mcp": {
"command": "npx",
"args": [
"-y",
"@forgemeshlabs/x402-notary-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"x402-notary-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@forgemeshlabs/x402-notary-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"x402-notary-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@forgemeshlabs/x402-notary-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @forgemeshlabs/x402-notary-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
6 tools
x402 notary mcp exposes 6 tools to a connected agent.
- notarize_inference
- $0.001
- notarize_batch
- $0.005
- verify_attestation
- **free**
- get_receipt
- **free**
- notary_stats
- **free**
- notary_pubkey
- **free**
Score
78 / 100
Good
- Documentation25/25
- Maintenance19/25
- Trust16/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 8 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | Jul 4, 2026 |