Is this transaction safe to sign? Decodes what it really does and answers allow, warn or block.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
The judgment layer for autonomous agents.
An AI agent about to act on the world often needs a judgment it cannot make by itself: is this transaction safe to sign, is this counterparty real, is this photo actually what it claims to be. Arbiter sells those judgments one call at a time, paid over x402 in USDC on Algorand.
Three routes, one response contract:
| Route | Judgment | Price |
|---|---|---|
POST /v1/judge/transaction | Machine β decode and risk-score an unsigned transaction before signing | $0.002 |
POST /v1/judge/counterparty | Data β is this payment counterparty who they claim to be | $0.01 |
POST /v1/judge/human | Human β questions a model cannot settle alone, answered by vetted reviewers | $0.25 |
Every route returns the same verdict envelope, so an agent integrates one shape and can then ask for any kind of judgment without new branching logic:
New here, or explaining this to someone non-technical? What Arbiter actually does β no code, no jargon.
https://arbiter-hs23.onrender.com β API, and the reviewer app at
/work.
Preflight: 18 passed, 0 blocking failures. Running on Render's free plan, which has no persistent disk and spins down after 15 minutes idle β see DEPLOY.md for what that costs and the upgrade needed before the October leaderboard window.
| Component | State |
|---|---|
| x402 payment core (Algorand, USDC, GoPlausible facilitator) | Working, verified end-to-end |
Bazaar discovery + x402-global-challenge tag | Working, verified in the 402 response |
/v1/judge/transaction Algorand firewall | Working, 5/5 attack cases pass |
/v1/judge/transaction EVM firewall | Working, 7/7 drain patterns pass, EIP-7702 aware |
/v1/judge/counterparty engine | Working, 5/5 cases pass against live mainnet + NFD |
/v1/judge/human marketplace | Working, consensus + reviewer reliability + payout ledger |
| On-chain payout settlement | Working β real USDC paid to a reviewer on-chain |
| SDK, MCP server, LangChain, ElizaOS, paying proxy | Built, typechecked, runtime-verified |
| CrewAI tools (Python) | Built; runs through the paying proxy β see below |
| KeeperHub integration | Working, real Sepolia transaction executed |
| Reviewer app (React) | Live at /work, verified end-to-end with a paid question |
Autonomous agents lose funds in a small number of specific ways. The firewall decodes the actual transaction bytes and reports what signing would really do:
rekeyTo permanently transfers signing authority over the accountRun it against real, freshly-encoded transactions:
The benign case returning zero findings matters as much as the blocks β a firewall that cries wolf gets switched off.
Catches the two silent, expensive failures a payout agent cannot see by reading an invoice:
Plus rekeyed recipients, frozen holdings, below-minimum balances, unregistered or expired identities, and never-funded addresses.
The two cases worth reading are adjacent and opposite: an identity that verifies but whose address cannot receive the asset, and an identity that fails on an address that could. Both block, for entirely different reasons.
Questions a model cannot settle alone go to vetted reviewers. The paid call long-polls for a bounded window; if reviewers answer in time the verdict returns inline, otherwise the caller gets a pending verdict and a free retrieval URL. Timing out never costs a second payment.
Worker API (/v1/work/*) is unpriced: reviewers are the supply side.
Two rules govern this, and both cost something to follow:
Claim before broadcasting. Payouts move to settling with an attempt id
before any transaction is sent, and that attempt id is written into the
transaction's note field. A process that dies mid-flight therefore leaves money
unpaid rather than paid twice β unpaid is recoverable by a person reading the
stuck rows against the ledger, paid twice is not.
Check the payee before paying. Every payout address goes through Arbiter's
own /v1/judge/counterparty engine first. Not decoration: a USDC transfer to an
account that has not opted in is rejected by the protocol, so paying blind burns
a fee and leaves the reviewer unpaid with no explanation. Blocked payouts stay
pending and are retried once the reviewer opts in.
The payout account is configured separately from PAY_TO on purpose. PAY_TO
accumulates revenue and its key never needs to be on a server; the payout
account holds working capital only, so a compromised host cannot drain earnings.
By the time an engine runs, the agent has been charged. So no upstream failure
may throw. Every algod lookup has a hard timeout and returns a result that says
whether data was actually obtained; a failed lookup lowers confidence and sets
meta.degraded, and the static decode rules β which catch the critical
severities β still run. A degraded verdict is still a useful verdict.
Separately, confidence < 0.4 returns escalate rather than allow, so a
thin-evidence verdict can never be mistaken for a clean bill of health.
Volume on a usage-ranked leaderboard comes from other people's agents calling you, so the clients are the product surface, not an afterthought. Full detail in clients/README.md.
| Package | For |
|---|---|
@arbiterlabs/sdk | TypeScript agents; pays x402 automatically |
@arbiterlabs/mcp | Any MCP host β Claude Code, Claude Desktop, OpenClaw |
@arbiterlabs/langchain | LangChain.js tools |
@arbiterlabs/eliza | ElizaOS plugin |
@arbiterlabs/proxy | Local paying sidecar for non-TypeScript agents |
arbiter-crewai | CrewAI (Python), via the sidecar |
Spend limits live in the client rather than in advice to integrators, because an agent in a retry loop against a paid endpoint is a wallet-draining bug:
Both caps are enforced in the payment selector, before anything is signed.
Paying x402 on Algorand requires an AVM scheme client, and that exists only in
TypeScript today. x402 2.18 ships no AVM client, and x402-avm 2.0.2 β despite
the name β ships none either, has no algosdk dependency, and installs into
the x402 namespace, overwriting the base package. So a Python agent cannot
construct an Algorand x402 payment at all.
@arbiterlabs/proxy therefore holds the key, pays, and re-exposes the judgments
unpriced on loopback. That is also the better arrangement in general: one
process holds the funded key and enforces one budget, instead of every agent
process carrying a copy of both.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/arbiter)<a href="https://allmcps.com/mcp/arbiter"><img src="https://allmcps.com/api/badge/arbiter?style=directory" alt="Arbiter on AllMCPs" /></a>