mcp · hosted · verify is free
Add the server. Verify is free. Issue needs a key.
The payout will not clear without a PCRZERO receipt.
Point the client at https://mcp.pcrzero.com/mcp. verify_receipt and get_keyset need no account. issue_receipt is metered and needs a Bearer key. Run the free tool here first.
Nothing has been checked in this browser yet.
verify — no key
Claude Code:
claude mcp add --transport http pcrzero https://mcp.pcrzero.com/mcpAny JSON-configured MCP client:
{
"mcpServers": {
"PCRZERO": {
"type": "streamable-http",
"url": "https://mcp.pcrzero.com/mcp"
}
}
}Ask the agent for verify_receipt on the published specimen rcp_pom_synthetic_119_0001, or run it above. Same bytes, same verifier.
issue — key, metered
issue_receipt bills one unit whether the verdict is pass or fail. On the hosted URL the key is Authorization: Bearer ak_live_…. Without it, issue refuses and the two verify tools keep working.
There is no signup page yet. This call mails a confirmation link, and the key is shown once on the page that link opens — copy it before you close the tab.
curl -X POST https://api.pcrzero.com/v1/signup \
-H 'content-type: application/json' \
-d '{"email":"you@company.com"}'the three tools
- issue_receiptmetered
Adjudicates an attestation document against a policy and returns the verdict together with a signed receipt pair. Every call bills one
receipt_verificationsunit, and afailverdict bills exactly like apass— you are paying for the adjudication, not for the answer you wanted. - verify_receiptfree
Checks a PCRZERO receipt pair against the signing keyset: whether the signature holds, and whether the receipt says what it appears to say. Free, with no API key and no account, and it stays free. Offline by default — supply
keysetand this call touches the network not at all; the result fieldkeyset_sourcetells you which of the two happened, every time. - get_keysetfree
Returns the current PCRZERO signing keyset — key ids, public halves, each key’s status. Public and unauthenticated — the same document an outside party fetches to check a PCRZERO receipt without trusting us.
Local, over stdio
Your agent host launches the package. Nothing listens on a port. Node 22 or later.
claude mcp add pcrzero -- npx -y @scytalex-llc/pcrzero-mcp{
"mcpServers": {
"PCRZERO": {
"command": "npx",
"args": ["-y", "@scytalex-llc/pcrzero-mcp"]
}
}
}To issue over stdio, put the key in the server environment and re-add:
claude mcp add pcrzero -e PCRZERO_API_KEY=<your-key> -- npx -y @scytalex-llc/pcrzero-mcpListed on the official MCP registry as com.pcrzero/mcp, on Smithery, and on mcpservers.org. Rates on pricing.