A third-party certification layer for AI agents. Every decision is evaluated against your policy, scored for risk, signed, and anchored to Solana — so your customers, auditors, and regulators don't have to take your word for it.
newMCP-native — works with Claude, Codex, Copilot StudioMCP-native — drop into Copilot Studio, Claude, or any MCP agentEU AI ActArticle 12-ready audit logs a regulator can verifyA certification layer for AI agents — independent of the model or runtime. Every decision gets stamped, scored, and committed to chain.
Your policy runs against every decision — deterministic rules in code, plus an AI evaluator for fuzzy checks like injection, sensitive data, and unsupported claims.
The verdict is captured into a structured receipt and signed with Ed25519. Tamper any byte and verification fails. This is the certificate itself.
Every receipt's hash is committed to Solana automatically — independent, public timestamping. Off-chain payloads stay private; only fingerprints go on-chain.
Anyone, anywhere can re-hash the receipt, check the Ed25519 signature against your published key, and confirm the on-chain anchor. Trust doesn't require trusting us.
Agent Cert speaks Model Context Protocol — the open standard most modern agent runtimes already use to talk to tools. One endpoint, six tools, the same API-key auth as REST.
{
"mcpServers": {
"agent-cert": {
"url": "https://api.agentcert.net/mcp/sse",
"headers": {
"X-API-Key": "ak_live_..."
}
}
}
}Every decision is stamped with what happened, which policy applied, what the evaluator concluded, and a verifiable signature. The issuer's public key is published; the hash is on Solana. Trust does not require trusting us.
1{2 "receipt_id": "rcpt_01HXTRUST...",3 "agent_id": "agent_invoice_001",4 "platform": "bedrock",5 "execution_hash": "sha256:abc123...",6 "evaluation_hash": "sha256:def456...",7 "trust_score": 91,8 "risk_level": "low",9 "policy_compliant": true,10 "prompt_injection_detected": false,11 "evaluator_version": "ai-evaluator-v1",12 "policy_version": "policy_v1",13 "created_at": "2026-05-18T22:09:08Z",14 "signature": "ed25519:AUOCk1Ef3vH..."15}