anchor-x402-mcp
This MCP server provides 14 pay-per-use tools for blockchain, AI, and utility tasks, funded via USDC micropayments on Base mainnet — no API keys or subscriptions required.
Blockchain & Utility Tools ($0.001–$0.010):
anchor_hash($0.005): Anchor any 32-byte hash simultaneously to Base and Solana mainnets, returning both transaction URLs as cryptographic proof of existence.screen_wallet($0.001): OFAC SDN sanctions and AML screening for EVM or Solana wallets, returning flagged programs and a low/medium/high risk verdict.attest_decision($0.010): Verify a wallet signature over an (input_hash, output_hash, decision) tuple and dual-chain anchor the result on Base and Solana, creating an auditable receipt for AI agent decisions.decode_tx($0.001): Structurally decode any mainnet transaction (Base, Ethereum, or Solana) by hash.resolve_name($0.001): Cross-chain name resolution for ENS (.eth) and Bonfida SNS (.sol) names to wallet addresses.token_price($0.001): USD spot price, 24h change, and market cap for any token by symbol or chain + contract address.decode_calldata($0.001): Decode raw EVM calldata into a human-readable function name, signature, and typed parameter values.parse_datetime($0.001): Convert freeform datetime strings (e.g. "tomorrow at noon", "in 2 hours") into structured ISO 8601 format, unix epoch, and more.intel_wallet($0.005): Bundled wallet intelligence — balances across Base, Ethereum, and Solana, transaction count, ENS/SNS identity, and sanctions verdict in a single call.
LLM-Powered Tools ($0.01–$0.05):
roast: Generate a witty 3–5 paragraph roast of any target (wallet, tweet, code, idea, etc.).oracle: Yes/no/maybe answer to any question with a reason, plus a dual-chain anchored cryptographic receipt.tldr: Summarize a URL (up to 500KB) or pasted text into 3–5 concise bullet points.aura: Returns a color, tier (S/A/B/C/D/F), score (0–9999), and punchy aura reading for any input.grade: Assigns an academic letter grade (A+ to F) with red-pen marginalia and a summary paragraph for any input.
All calls are debited automatically from a configured Base wallet via the x402 micropayment protocol.
Enables automatic USDC micropayments via Coinbase's x402 protocol for pay-per-use access to the MCP server's tools.
Provides tools for transaction decoding, calldata decoding, and other blockchain operations on the Ethereum mainnet.
Provides tools for anchoring hashes, wallet screening, transaction decoding, and name resolution on the Solana mainnet.
anchor-x402-mcp
MCP server exposing 14 anchor-x402 services as tools any Claude Desktop / Cursor / Codex / Continue agent can call. Pay-per-use USDC via x402 on Base mainnet — no API keys, no subscriptions.
What an agent gets
Fourteen tools, $0.001–$0.05 per call.
Commodity primitives (9, $0.001–$0.010):
Tool | Price | What it does |
| $0.005 | Anchor any 32-byte hash to Base + Solana mainnet in parallel; returns both tx URLs |
| $0.001 | OFAC SDN sanctions screening for any EVM or Solana wallet |
| $0.010 | Verify a wallet signature over (input_hash, output_hash, decision); dual-chain anchor the result |
| $0.001 | Structured decode of any mainnet tx (Base / Ethereum / Solana) |
| $0.001 | Cross-chain name resolution (ENS, Bonfida SNS) |
| $0.001 | USD spot price for any token by symbol or chain+contract |
| $0.001 | 4byte selector + ABI param decode for raw EVM calldata |
| $0.001 | Freeform datetime string → structured ISO 8601 |
| $0.005 | Bundled wallet intelligence: balances + activity + identity + sanctions in one call |
Universal LLM endpoints (5, $0.01–$0.05) — added in v0.2:
Tool | Price | What it does |
| $0.05 | Witty 3-5 paragraph roast of any target — wallet, tweet, code, idea, anything |
| $0.05 | Yes/no oracle. Returns YES/NO/MAYBE + reason + dual-chain anchored |
| $0.01 | Summarize a URL (fetches up to 500KB) or pasted text into 3-5 concise bullets |
| $0.01 | Returns color, tier (S/A/B/C/D/F), score 0-9999, and a punchy 2-3 sentence aura read |
| $0.01 | Academic letter grade (A+ to F) with red-pen marginalia and one-paragraph summary |
The investigator (/v1/investigate, $1.77 async) and the hosted chatbot at chat.anchor-x402.com are not included in the MCP — they're accessed directly via the HTTP API and the browser respectively.
The MCP server pays for itself — your wallet gets debited automatically for each call. No prepay, no API key, no account.
Related MCP server: ntriq-agentshop
Install
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"anchor-x402": {
"command": "npx",
"args": ["-y", "anchor-x402-mcp"],
"env": {
"ANCHOR_WALLET_PRIVATE_KEY": "0xYOUR_BASE_WALLET_PRIVATE_KEY"
}
}
}
}Restart Claude Desktop. Ask: "Anchor the hash 7646dda1564bde0ef3f3971f4c002962df64246da4aa1d8c47247e7632494710 on mainnet" — it'll call anchor_hash and pay $0.005 USDC from your wallet.
Claude Code
Add to your project's .mcp.json:
{
"anchor-x402": {
"command": "npx",
"args": ["-y", "anchor-x402-mcp"],
"env": {
"ANCHOR_WALLET_PRIVATE_KEY": "0xYOUR_BASE_WALLET_PRIVATE_KEY"
}
}
}Codex CLI (OpenAI)
Edit ~/.codex/config.toml:
[mcp_servers.anchor-x402]
command = "npx"
args = ["-y", "anchor-x402-mcp"]
[mcp_servers.anchor-x402.env]
ANCHOR_WALLET_PRIVATE_KEY = "0xYOUR_BASE_WALLET_PRIVATE_KEY"Restart codex. Type /mcp to confirm anchor-x402 shows in the loaded servers list.
ChatGPT Desktop
Settings → Integrations → MCP servers → Add server. Paste:
{
"command": "npx",
"args": ["-y", "anchor-x402-mcp"],
"env": {
"ANCHOR_WALLET_PRIVATE_KEY": "0xYOUR_BASE_WALLET_PRIVATE_KEY"
}
}Save, restart, the 9 tools appear in any chat with tool-use enabled.
Cursor
Edit ~/.cursor/mcp.json (global) or <project>/.cursor/mcp.json (project-scoped):
{
"mcpServers": {
"anchor-x402": {
"command": "npx",
"args": ["-y", "anchor-x402-mcp"],
"env": {
"ANCHOR_WALLET_PRIVATE_KEY": "0xYOUR_BASE_WALLET_PRIVATE_KEY"
}
}
}
}OpenAI Agents SDK (programmatic)
from openai_agents import Agent, MCPServerStdio
mcp = MCPServerStdio(
command="npx",
args=["-y", "anchor-x402-mcp"],
env={"ANCHOR_WALLET_PRIVATE_KEY": "0xYOUR_BASE_WALLET_PRIVATE_KEY"},
)
agent = Agent(name="researcher", model="gpt-4o", mcp_servers=[mcp])Same package, same env, programmatic instead of config-driven.
Continue / Smithery / generic MCP client
Same shape — command: npx, args: [-y, anchor-x402-mcp], env carries your wallet key. The MCP SDK handles transport.
Or install via Smithery one-liner:
npx -y @smithery/cli install anchor-x402-mcp --client claude(replace --client claude with cursor, codex, windsurf, etc.)
Run standalone
ANCHOR_WALLET_PRIVATE_KEY=0xYOUR_KEY npx anchor-x402-mcpSpeaks MCP over stdio. Pipe into any MCP-compatible client.
Funding your wallet
The wallet you set as ANCHOR_WALLET_PRIVATE_KEY needs USDC on Base mainnet. Any amount works — even $1 buys 100 anchor calls or 1000 commodity-tier calls. Send USDC to your wallet's Base address:
USDC contract on Base:
0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Bridge from Ethereum mainnet via bridge.base.org
Buy directly on Coinbase and withdraw to Base
The MCP server signs payments via x402 — Coinbase's open HTTP-native micropayments protocol. Each request:
Hits an
anchor-x402endpointGets a 402 with payment requirements
Server signs a USDC transfer authorization with your private key
Retries the request with the signed payment — the API settles via Coinbase's facilitator
You see the response, your wallet's USDC balance ticks down by the call price. Sub-second, no ledger, no account.
Environment variables
Variable | Required? | Purpose |
| Yes for paid calls | EVM private key. The wallet pays for x402 calls. |
| No | Override the API base URL. Default: |
If ANCHOR_WALLET_PRIVATE_KEY is unset, paid tool calls return a friendly 402 message explaining how to set it. /health and /openapi.json (not exposed as tools, but reachable via direct curl) work without payment.
Security notes
The private key lives in your MCP client's config file. Treat it like a hot wallet — only fund what you're willing to spend autonomously.
Recommended: generate a fresh wallet specifically for agent use. Top up periodically; don't reuse a wallet that holds significant funds.
The MCP server only signs USDC payment authorizations to anchor-x402's known treasury addresses (visible in the 402 response). It cannot drain your wallet to arbitrary addresses.
Source code is fully open at github.com/hypeprinter007-stack/anchor-x402-mcp. Audit before installing.
Verifying anchor receipts
Every anchor_hash and attest_decision call returns Base + Solana tx URLs. These are independently verifiable on the public block explorers — agents can confirm an anchor exists without re-paying:
Base:
https://basescan.org/tx/<base.tx>— Input Data field contains the merkle rootSolana:
https://solscan.io/tx/<solana.tx>— Memo program data contains the same hex
The on-chain bytes are the receipt; the API response is just a convenience wrapper around them. See the on-chain verifiability primer for the full verification recipe.
Troubleshooting
"Payment required (402). Set ANCHOR_WALLET_PRIVATE_KEY..." You haven't configured a wallet. Add the env var to your MCP config and restart Claude Desktop.
"Payment failed (402). The wallet may be out of USDC..."
Your wallet ran out. Send USDC on Base to the wallet address shown in the server's startup log (it logs payer=0x… to stderr).
"anchor-x402 request failed: ..."
Network or DNS issue. Check https://api.anchor-x402.com/health returns 200; if not, see the status page.
Links
Live API: https://api.anchor-x402.com
Site / trust portal: https://anchor-x402.com
Server source: https://github.com/hypeprinter007-stack/anchor-x402
MCP server source (this repo): https://github.com/hypeprinter007-stack/anchor-x402-mcp
x402 protocol: https://github.com/coinbase/x402
MCP spec: https://modelcontextprotocol.io
License
MIT
Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hypeprinter007-stack/anchor-x402-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server