npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@verdict-systems/mcp

v0.1.0

Published

Verdict — the evidence layer for Claude legal workflows. Seal Claude AI outputs into court-preparable Sealed Evidence Records (hash, Merkle root, chain of custody, FRE 902(14) packet).

Readme

npm License: Apache 2.0 MCP Compatible

Anthropic's Claude for Legal gives lawyers the AI workflow — drafting, redlining, deal diligence, docket monitoring, regulatory tracking. Verdict makes that work product defensible. Every Claude legal output becomes a Sealed Evidence Record (SER v0.1) with payload hash, Merkle root, attorney review state, citations, and a court-preparable custodian packet.

This package is the stdio MCP server. For the remote MCP server (OAuth, retention, HSM signing, Rekor anchoring), point Claude Cowork at https://verdict.systems/api/mcp.

Why this exists

Claude for Legal shipped May 12, 2026 with 12 practice-area plugins, 80+ specialist agents, and 20+ MCP connectors (Slack, Google Drive, CoCounsel Legal, Box, Ironclad, DocuSign, iManage, Everlaw, CourtListener, Trellis, Aurora, Definely, Solve, TopCounsel, Linear, Jira, Asana, Lawve, Courtroom5, Descrybe). The suite includes guardrails for accuracy (source attribution, citation verification, conservative privilege defaults).

But it does not include a forensic evidence layer:

  • No cryptographic content sealing
  • No chain-of-custody record
  • No FRE 902(14) authentication packet
  • No transparency-log anchoring

State bar opinions (Texas Op. 705, Florida Op. 24-1, et al.) and proposed Federal Rule of Evidence 707 are converging on a single requirement: an attorney who relies on AI output must be able to authenticate exactly what the model produced, what was reviewed, and what was approved. Verdict is that record.

Install

Claude Code

claude mcp add verdict -- npx -y @verdict-systems/mcp

Claude Cowork / claude.ai

Add the remote endpoint via Settings → Connectors:

https://verdict.systems/api/mcp

Manual .mcp.json

{
  "mcpServers": {
    "verdict": {
      "command": "npx",
      "args": ["-y", "@verdict-systems/mcp"]
    }
  }
}

Verify

verdict-mcp --version
verdict-mcp --help

The three tools

| Tool | Purpose | |---|---| | verdict_create_evidence_record | Deterministically seals a Claude legal AI output as a Sealed Evidence Record (SHA-256 payload hash + Merkle root + chain of custody + attorney review state + citations + risk flags). | | verdict_score_evidence_readiness | Scores 0–100 whether an output has enough provenance for audit, discovery, outside-counsel-guideline review, or FRE 902(14) authentication. Returns court_packet_ready / outside_counsel_guideline_ready / audit_gap_review_required / not_defensible. | | verdict_export_fre902_certificate | Drafts a custodian certification packet from a sealed record. Output is a preparation aid for counsel — qualified custodian must sign before any filing. |

All three tools are read-only and non-destructive (readOnlyHint: true, destructiveHint: false).

Example: seal a contract review

> Review this NDA against our playbook. Then seal the review with Verdict.

Claude calls verdict_create_evidence_record with the matter id, workflow contract_review, summaries, model version, citations, and review disposition. The tool returns:

{
  "evidence_record_id": "ser_b9f2e0a4c1d8e3a7c0f1",
  "schema": "ser.v0.1.legal_ai_output",
  "payload_hash": "b9f2e0a4...",
  "merkle_root": "82dc11ef...",
  "chain_of_custody": {
    "sequence": 1,
    "prior_root": null,
    "signer": "sandbox.verdict.systems",
    "transparency_anchor": null,
    "retention_class": "sandbox_30_day"
  },
  "legal_review": {
    "human_review_status": "pending",
    "attorney_reviewer": null,
    "citations": ["Vendor Playbook v3.4", "MSA-2024-018"],
    "risk_flags": ["mutual_indemnity_deviation"]
  }
}

Data hygiene

  • Send summaries and hashes — not privileged source text. The sandbox is for provenance metadata, not document content.
  • For full document custody, retention policy, HSM-bound Ed25519 signer identity, and Sigstore Rekor transparency-log anchoring → contact [email protected] for a tenant.

Sandbox vs production

| Capability | Sandbox (this package) | Production tenant | |---|---|---| | Deterministic SER schema | ✓ | ✓ | | SHA-256 payload hash | ✓ | ✓ | | Merkle rooting | ✓ | ✓ | | Chain-of-custody scaffold | ✓ | ✓ | | OAuth tenant isolation | — | ✓ | | Retention policy enforcement | — | ✓ | | HSM-bound Ed25519 signing | — | ✓ | | Sigstore Rekor anchoring | — | ✓ | | Matter-scoped access controls | — | ✓ | | FRE 902(14) signed cert (live) | draft only | ✓ |

License

Apache 2.0. See LICENSE.

Security

If you discover a vulnerability, please email [email protected]. See https://verdict.systems/.well-known/security.txt for the full security policy.

Links