Skip to main content

Install Hardproof

Prebuilt binaries for Linux and macOS. On Windows, run inside WSL2 and use the Linux artifact (linux_x86_64).

Hardproof is a standalone verifier for MCP servers. You do not need to adopt x07 to use it. Built with x07.

Pinned beta tag (reproducible): v0.4.0-beta.4.

Install script

Install the latest beta (recommended):

curl -fsSL "https://raw.githubusercontent.com/x07lang/hardproof/main/scripts/install.sh" | bash -s -- --tag latest-beta

Install a pinned beta tag (reproducible):

curl -fsSL "https://github.com/x07lang/hardproof/releases/download/v0.4.0-beta.4/install.sh" | bash -s -- --tag "v0.4.0-beta.4"

The installer downloads the correct archive for your OS/arch, verifies it via the release checksums.txt, and installs into ~/.local/bin.

Manual download (pinned tag)

Verify your first server

1) Run diagnostics (checks your environment and target reachability):

hardproof doctor --machine json

2) Run a scan:

hardproof scan --url "http://127.0.0.1:3000/mcp" --out out/scan

Artifacts are written under out/scan/: scan.json and scan.events.jsonl.

Next