Sandboxed test runs for coding agents: compact typed verdicts with failure fingerprints and history
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
https://github.com/user-attachments/assets/62923912-98aa-4246-8bc8-4adf55ae3ff8
Structured, sandboxed verification feedback for coding agents.
An MCP server that replaces your agent's pytest shell-outs with something built for the agent inner loop: impact-selected tests, run in an isolated environment, returning compact typed verdicts instead of 40,000 tokens of raw runner output β with failure fingerprints that tell the agent whether a failure is its regression or was broken all along.
The highest-frequency tool call in agentic coding is verification β and it's the least structured. Agents re-run whole suites when one module changed, burn context parsing ANSI-coded tracebacks, run arbitrary code directly on your machine, and routinely misdiagnose pre-existing breakage as their own regression (then "fix" code that wasn't broken). verdict fixes all four.
| Tool | What it does |
|---|---|
verify(scope?, base?) | Selects tests affected by your working-tree diff (static import graph via grimp), runs them via podman/docker with the worktree mounted read-only, returns typed failures with fingerprints and a preexisting flag |
explain_failure(check_id) | Full traceback for one failure, on demand β bulk never rides in the summary |
history(fingerprint) | First seen / last seen / times seen β regression vs. long-standing breakage |
run_checks(["ruff","mypy"]) | Lint and type checks, normalized into the same verdict schema |
Every failure carries a fingerprint: a stable hash of the normalized failure signature (volatile tokens β addresses, tmp paths, ids, durations β collapsed). Same logical failure, same fingerprint, across runs and refactors. Fingerprints are what give verdict memory.
No install step needed β uvx fetches it on first use. (Or uv tool install verdict-mcp / pip install verdict-mcp for a permanent verdict-mcp command.)
Claude Code β .mcp.json in your project root:
Cursor β same shape in .cursor/mcp.json.
Optional verdict.toml in your repo root:
Try it without an agent:
Checks run in an ephemeral container (podman preferred, docker fallback): worktree mounted read-only at /src, copied to a writable /work inside the container, --network=none for the check run. Your host environment is never mutated by a test run. If setup_cmd is configured, that step runs with network before the check; prefer a prebuilt image for a tighter posture. No container runtime β explicit prefer = "local" fallback runs checks against a temp copy of your worktree (still never in place). See SECURITY.md for the full threat model and known limitations.
Troubleshooting: if a verdict says container engine 'podman' could not start the check, run the suggested podman pull <image> by hand β the engine's own error is the answer. One known trap on macOS: a "credsStore": "gcloud" line in ~/.docker/config.json makes podman call the gcloud credential helper for every registry, including docker.io; an expired gcloud login then breaks all pulls. Fix with gcloud auth login or remove that line.
verify(scope="all") is always available and verdict says in selection_note whenever it falls back.go test -json adapters are the most-wanted contributions (CONTRIBUTING.md).v0.2: coverage-based impact maps (precise selection), flake detection via fingerprint alternation, devcontainer.json support, result cache keyed on (tree hash, check, image digest). Later: vitest/jest, go test, cargo test adapters; per-repo verdict daemon mode.
Apache-2.0
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/verdict-mcp)<a href="https://allmcps.com/mcp/verdict-mcp"><img src="https://allmcps.com/api/badge/verdict-mcp?style=directory" alt="Verdict MCP on AllMCPs" /></a>