Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

com.pcrzero/mcp

NPM · @SCYTALEX-LLC/PCRZERO-MCP · 2 COMPONENTS · SCANNED AUG 18

Issue signed receipts for AI agent actions; verify any receipt offline - free, no account.

+4 this week 68 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security98
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 30 of 96 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency32
Schema Quality & AI Usability71
  • AI-judged instruction clarity (good).Pass
  • Context-footprint check failed: tool/resource definitions use about 491 tokens (~163/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage93
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 78% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @scytalex-llc/pcrzero-mcp

# add to Claude Code
claude mcp add com-pcrzero-mcp -- npx -y @scytalex-llc/pcrzero-mcp
# add to Codex CLI
codex mcp add com-pcrzero-mcp -- npx -y @scytalex-llc/pcrzero-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-pcrzero-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@scytalex-llc/pcrzero-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add com-pcrzero-mcp --command npx --arg -y --arg @scytalex-llc/pcrzero-mcp
# ~/.hermes/config.yaml
mcp_servers:
  com-pcrzero-mcp:
    command: "npx"
    args: ["-y", "@scytalex-llc/pcrzero-mcp"]
// mcp.json
{
  "mcpServers": {
    "com-pcrzero-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@scytalex-llc/pcrzero-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 17 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

  • 15 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 13 to 17. That category is still filling its 30-day observation window: 4 days of observed history at the previous scan, 5 at this one. The score rises as the window fills, whether or not the server changes.

  • 13 Aug 26 +2
    • Stability: unverified → 0.10 functional
    • Package version: 0.1.1 → 0.2.0 functional
  • 12 Aug 26 0
    • Security disclosure: unverified → fail functional
  • 11 Aug 26 +1
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 10 Aug 26 63

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 18 Aug 2026 · Analysed npm/@scytalex-llc/pcrzero-mcp@0.2.0

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 96 packages
Packages resolved 96
Stale 30
Tree resolution Complete
MCP tools · 3 exposed · ~491 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
get_keyset ~79

Returns the current PCRZERO signing keyset — key ids, public halves, and each key's status. Public and unauthenticated: no API key, no cost, no account. This is the same document an outside party fetches to check a PCRZERO receipt without trusting us, and fetching it is how you stop taking our word for anything.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

issue_receipt ~223

Adjudicates an attestation document against a policy and returns the verdict together with a signed receipt pair — the durable, independently checkable proof that this decision was made, by these keys, over this document. **Metered: every call bills one `receipt_verifications` unit against the API key configured for this server, and a `fail` verdict bills exactly like a `pass`. You are paying for the adjudication, not for the answer you wanted.** This is the only tool here that spends. If you already hold a receipt and want to know whether it is genuine, that is `verify_receipt`, which is free and needs no key.

NameTypeReqDescription
documentstringBase64 attestation document (single-document form).
documentsarrayBase64 attestation documents (batch form).
noncestring
policyobjectInline policy object (API wire shape).
policy_idstringStored policy id (pol_…).
receiptbooleanRequest a signed receipt (default true).

No output schema declared.

No examples provided.

verify_receipt ~189

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 `keyset` and this call touches the network not at all; omit it and the server fetches the public keyset from api.pcrzero.com once. The result field `keyset_source` tells you which of the two happened, every time. This tool issues nothing, bills nothing, and cannot spend. It is the half of PCRZERO you never pay for.

NameTypeReqDescription
conformancestring
keysetobjectOptional keyset in GET /v1/keys shape. When supplied, no network is used.
receiptstringyesBase64url receipt envelope from issue_receipt / the API.

No output schema declared.

No examples provided.