A stateless, deterministic verifier for agent-to-agent settlement.
Designed for x402-compatible workflows • ERC-8004 aligned • MCP enabled
Agent settlement breaks down when verification itself is ambiguous or implicitly trusted.
Given the same input, this verifier will always return the same result.
The verifier does not custody funds, maintain state, or make settlement decisions.
This endpoint is live, deterministic, and safe to call directly from autonomous agents.
POST https://defaultverifier.com/mcp/verify
curl -X POST https://defaultverifier.com/mcp/verify \
-H "Content-Type: application/json" \
-d '{
"task_id": "example-001",
"spec": { "expected": "foo" },
"output": { "result": "foo" }
}'
{
"verdict": "PASS",
"confidence": 1.0,
"signature": "0x...",
"fee_due": "0.001",
"fee_enforced": false
}
Fee metadata is included for forward compatibility with agent-native payment flows. No payment is currently enforced.
This verifier is intentionally simple, stateless, and neutral.
No hidden logic. No discretionary overrides. No privileged actors.