Verifies Ed25519-signed attestation records and builds audit reports via MCP tools.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
PaceProof verifies Ed25519-signed compute-attestation records from any provider and tells you exactly which ones are real.

A record with a missing, malformed, or tampered signature never gets folded into a "verified" total; it's counted and reported separately, every time, in both human-readable and --json output.
PaceProof does not sign or generate attestations. It is a neutral, read-only ingest/verify/report/dashboard layer over records that are already signed somewhere else. Point it at a directory, file, or URL of signed records and it tells you, verifiably, what compute was actually run, by whom, and whether every record's signature checks out.
paceproof-cli is published to both npm and PyPI:
Both commands install a paceproof binary. paceproof-cli is also available as an alias on both registries if you need to disambiguate from another tool on your PATH.
To build from source instead (useful if you're contributing, or want the exact repo state rather than a published release):
TypeScript (npm package, includes the MCP server):
Python (PyPI package, independent reimplementation):
Both the published npm install -g paceproof-cli and pip install paceproof-cli commands above were run fresh in a clean environment as part of writing this README, and the quickstart output below is real output from those installs, not fabricated.
paceproof init generates a fresh Ed25519 example keypair and 7 example attestation records: 3 validly signed, and 4 intentionally broken (a tampered payload, a wrong-key signature, a malformed signature, and a missing signature) so verify/report have real failure modes to demonstrate, not just a happy path.
Real output from an actual run against the published npm package:
verify exits non-zero when any record fails (real exit code from an actual run: 1, with 4 unverified records present):

Render a dashboard from the same data:

Both the TypeScript and Python builds were run against paceproof-example for this README, and both produced the same verified/unverified counts and totals shown above.
ingest normalizes arbitrary input into the canonical schema through a documented Adapter interface (TypeScript interface, Python ABC). The shipped jsonl adapter reads newline-delimited JSON already in canonical form; a provider-specific adapter (e.g. for ComputeLedger's native export) implements the same interface without touching the aggregator, report renderer, or CLI wiring.report --json output for the same input; a CI job runs the TypeScript CLI's output against the Python CLI's output on a shared fixture in both directions and fails the build on any divergence.paceproof dashboard renders a single HTML file with inline CSS and no JavaScript: no CDN fonts, no external scripts, no remote requests of any kind. Currently ships one clean light theme; there's no dark-mode toggle yet.paceproof mcp starts a Model Context Protocol server exposing verify, ingest, and report as callable tools, so an orchestrating agent can call PaceProof programmatically instead of shelling out to a human-facing CLI. The tool handlers are thin wrappers around the same aggregator/report functions the CLI itself calls, with no separate reimplementation for the MCP path.Object.create(null) so an attacker-controlled provider or compute_unit field like "__proto__" can't pollute Object.prototype. The one network call PaceProof ever makes (ingest <url>) is bounded by a 30-second timeout and a 50 MiB response cap, enforced against the actual streamed byte count rather than trusting a Content-Length header. Every schema field carries an explicit maximum length so oversized input can't be used to exhaust memory before validation runs.Every table below is copied from the actual --help output of the published paceproof-cli npm package (v0.1.0).
paceproof init [path]Scaffold an example directory with a sample keypair and validly/invalidly signed example records.
| Argument | Description |
|---|---|
path | Directory to create (default: ./paceproof-example) |
paceproof verify <path>Verify Ed25519 signatures on every record found at <path>.
| Option | Description |
|---|---|
--json | Output structured JSON instead of a human-readable table |
--adapter <name> | Adapter to use for reading input (default: jsonl) |
paceproof ingest <path-or-url>Run a named adapter over the input and emit normalized canonical-schema records as JSONL.
| Option | Description |
|---|---|
--adapter <name> | Adapter to use (default: jsonl) |
--out <file> | Write JSONL output to a file instead of stdout |
paceproof report <path>Ingest and verify records at <path>, then aggregate into a summary report.
| Option | Description |
|---|---|
--json | Output structured JSON instead of a human-readable table |
--adapter <name> | Adapter to use for reading input (default: jsonl) |
paceproof dashboard <path>Render a single self-contained static HTML dashboard from a report.
| Option | Description |
|---|---|
--out <file> | Output HTML file path (default: paceproof-dashboard.html) |
--adapter <name> | Adapter to use for reading input (default: jsonl) |
paceproof mcpStart an MCP server exposing verify, ingest, and report as callable tools. TypeScript package only for now: running paceproof mcp from the Python package prints a message pointing to the npm package and exits non-zero.
Every command supports real non-zero exit codes on failure or verification failure, and --help on every subcommand.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/paceproof)<a href="https://allmcps.com/mcp/paceproof"><img src="https://allmcps.com/api/badge/paceproof?style=directory" alt="Paceproof on AllMCPs" /></a>