walletbureau
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@walletbureauCheck the risk score for 0x1234... before I send it USDC"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@walletbureau/mcp
Check who you are about to pay. An MCP server that gives your agent one tool: score the behavioral risk of a wallet on Base before sending it money.
The score comes from the full history of x402 / EIP-3009 USDC payments on Base — how long the
address has existed, who pays it, how concentrated its inflows are, whether its activity just
spiked. You get a number from 0 to 100, a verdict (ok / caution / avoid) and the risk flags
that produced them, each with a reason in plain language.
These are risk signals, not accusations. Methodology: https://walletbureau.com/methodology
Install
npm i @walletbureau/mcp --ignore-scriptsThe package ships ready-to-run JavaScript. There are no install scripts, no native modules and
no build step on your machine — --ignore-scripts changes nothing here, and that is on purpose.
Claude Code
claude mcp add walletbureau -- npx -y @walletbureau/mcpClaude Desktop / Cursor / any MCP client
Add this to your MCP configuration (claude_desktop_config.json for Claude Desktop):
{
"mcpServers": {
"walletbureau": {
"command": "npx",
"args": ["-y", "@walletbureau/mcp"]
}
}
}That is the whole setup. With no credentials the server runs on the public free quota — a few checks per day — which is enough to try it. To keep going, pick a payment mode below.
Related MCP server: defi-yield-scanner-mcp
Paying for checks
A full check costs $0.05. The server picks its mode from the environment:
Mode | Set this | What happens |
Free demo | nothing | Uses the public demo quota (a few checks per day per IP). |
Prepaid key |
| Each check is debited from the key's balance. No crypto involved. |
Wallet (x402) |
| The server pays $0.05 in USDC on Base per check, automatically, over x402. |
If both are set, the prepaid key wins — its balance is already paid for, and an on-chain payment would be a second charge.
{
"mcpServers": {
"walletbureau": {
"command": "npx",
"args": ["-y", "@walletbureau/mcp"],
"env": { "WALLETBUREAU_API_KEY": "atk_your_key_here" }
}
}
}If you pay from a wallet
X402_PRIVATE_KEY is a real spending key. Treat it like one:
Use a dedicated wallet funded with a small amount of USDC — not your main account.
The key never leaves your machine. It is used to sign x402 payments and is never logged, never sent to the service and never included in tool output. The service only ever sees the payment.
X402_MAX_PRICE_USD(default0.10) caps what a single call may cost. The price is quoted by the remote server, so this check lives in code next to the signing step — not in a prompt.
Tools
check_counterparty — paid
Input: { "address": "0x…" } — a wallet address on Base.
Returns the full report: score, verdict, risk flags with reasons, and the aggregate statistics
behind them. Its price is visible to your client before the call, both in the tool description and
in the tool's _meta under walletbureau/pricing.
{
"address": "0x…",
"score": 74,
"verdict": "ok",
"flags": [
{ "code": "activity_spike", "severity": "low",
"reason": "Volume over the last 24 h is 12× the median of the last 30 days" }
],
"stats": {
"first_seen": "2025-11-02T…Z", "tx_in": 1204, "tx_out": 17,
"volume_in_usd": "604.31", "volume_out_usd": "12.05",
"distinct_payers": 311, "confidence_basis": "confirmed+probable"
},
"meta": { "computed_at": "…", "cache_age_seconds": 312, "api_version": "v1", "disclaimer": "…" }
}The response schema is a stable contract: fields are only ever added, and a rename or removal means a new API version. Published as JSON Schema alongside the API.
get_service_stats — free
No input. Public counters of the index: addresses indexed, transfers ingested, scores served.
Configuration
Variable | Default | Meaning |
|
| Where the service lives. Change it only to point at your own deployment. |
| — | Prepaid API key, |
| — | Private key that pays per call over x402. |
|
| Hard cap on the price of a single paid call. |
|
| Timeout for an unpaid request to the service. |
|
| Budget for a paid call, including signing and on-chain settlement. |
The server logs to stderr only — stdout belongs to the MCP protocol.
What this server does not do
No scoring logic and no data of its own: it is a thin wrapper over the public HTTP API, so a fix to the methodology reaches you without a package upgrade. No local cache either — the service caches, and a second copy would only drift from it.
License
Apache-2.0
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceCounterparty risk scoring for agentic commerce. Scores wallets, domains, IPs, and companies 0-100 before AI agents transact via x402 micropayments on Base13MIT
- AlicenseAqualityDmaintenanceReal-time DeFi analytics MCP server for AI agents. Provides token risk analysis, yield scanning, and wallet exposure checking across Base, Ethereum, and Arbitrum.3131MIT
- AlicenseAqualityDmaintenanceAn MCP server for USDC payments on Base, enabling AI agents to check balances, send payments, generate payment requests, and view transaction history.41MIT
- Alicense-qualityCmaintenanceEnables agents to assess counterparty risk, token danger, and wallet creditworthiness on Base by analyzing contract powers and controlling wallet reputation.MIT
Related MCP Connectors
Reputation oracle for AI agents on Base: SAFE/CAUTION/BLOCK + 0-100 score before you pay. x402+MCP
Check a Base contract, transaction or web page before you act. Free pricing, paid per call in USDC.
Solana token risk-scoring MCP server for AI trading agents with insider wallet cluster detection.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/walletbureau/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server