ViziProof
Fetches GitHub commit statuses and check results for an attached commit SHA, and syncs branch advancement so an existing approval can return to review.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ViziProofCreate a review task for PR #12 and fetch checks from GitHub."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ViziProof
Review what your coding agent delivered — with the brief, evidence, and exact commit in one place.
Try the browser demo · Português · Connect an agent · Contribute

An agent saying “done” is the start of a review. ViziProof is a small, local-first kanban that gives that review a home. Define acceptance criteria, collect reported evidence, fetch GitHub checks for a commit, and record your decision.
A reviewable handoff
Brief: write the outcome and acceptance criteria.
Delivery: your agent submits a summary, remaining work, evidence, and an optional commit SHA through MCP.
Review: inspect the results and approve or request changes in the local interface.
Attach a GitHub commit to tie a decision to the exact code reviewed. On an explicit sync, ViziProof fetches checks and commit statuses directly from GitHub. If a tracked branch has advanced, or a check has started failing, an existing approval returns to review. Earlier decisions and delivery snapshots remain in the history.
Reported is not verified. Manually attached evidence stays labeled as reported. GitHub results show their source and fetch time; they are a snapshot of what GitHub reported, not an independent execution of the tests. No continuous monitoring is implied.
Related MCP server: mcp-codexreview
Try it
The browser demo runs without an account or server. Edits stay in browser storage. It uses fictional tasks and illustrative evidence, and does not connect to an agent or fetch GitHub results. Click Try a review for a guided walkthrough.
Watch the recorded review walkthrough.
Run locally
Requires Node.js 22.16+ and npm. Node.js 24 LTS is recommended.
git clone https://github.com/caiohenriqu123-art/viziproof.git
cd viziproof
npm ci
npm run build
npm startOpen http://127.0.0.1:4173. Your workspace starts empty and is stored in .data/board.sqlite.
To explore sample tasks instead:
npm run demoThe sample workspace uses a separate .data/demo.sqlite database. Stop one server before starting another on the same port. Re-running the demo preserves your edits.
To choose a database:
npm start -- --data /absolute/path/my-board.sqliteNo external database, cloud account, or AI API key is required. See operation and backups.
Connect your agent
The local MCP server uses stdio and shares the SQLite file with the app. Configure the agent to run:
node /absolute/path/viziproof/dist-server/server/cli.js --mcp --data /absolute/path/viziproof/.data/board.sqliteIt exposes list_tasks, get_task, create_task, move_task, add_evidence, submit_delivery, and sync_github. There is no MCP approval tool. See the configuration example, workflow, and conflict handling.
Why this exists
ViziProof focuses on the handoff between coding and review. It does not launch agents, create worktrees, or replace a code-review tool. The useful unit is a delivery with a clear brief, supporting evidence, and a decision linked to the reviewed code.
Local SQLite storage shared by the UI and MCP processes.
Version checks prevent stale writes from silently replacing newer work.
Superseded evidence and delivery snapshots remain inspectable.
Optional GitHub snapshots for an exact commit and tracked branch.
Markdown export of the brief, evidence, decisions, and history.
Responsive interface, keyboard-accessible controls, light and dark themes.

Scope and trust
This is an early single-user local app, not a hosted multi-user service. It binds to loopback and has no account system. “Human review” describes the intended workflow, not verified identity or a security boundary against another process on your computer. Anyone with local database/API access is trusted. Do not expose the server to the public internet.
GitHub sync is explicit. It sends the attached repository, SHA and optional branch to api.github.com; task descriptions and reported evidence are not sent. Public repositories work without a token, subject to GitHub limits. An optional VIZIPROOF_GITHUB_TOKEN is read only by the local server/MCP process. It is never stored in a task or sent to the browser. Private repository results, if fetched, become part of your local ledger and its exports.
See security and privacy, architecture, and roadmap.
Development
npm ci
npm run devThe development command starts the API on 4173 and Vite on 4174. Open http://127.0.0.1:4174. It uses the regular local database; use a dedicated VIZIPROOF_DB path for disposable development data.
npm run check
npx playwright install chromium
npm run test:e2echeck includes strict TypeScript, ESLint, formatting, domain/API/MCP tests, and builds. Browser tests cover the review workflow, persistence, export, keyboard focus, automated accessibility checks, mobile layout, and themes. CI runs installation and core checks on Linux and Windows, with browser checks on Linux.
Contributing
Small, focused contributions are welcome. Read CONTRIBUTING.md, describe the problem before proposing a large feature, and include the relevant validation. Useful next areas include localization, evidence attachments, and more MCP-client setup examples.
License
MIT. Bundled dependencies and fonts retain their own licenses; see third-party notices.
This server cannot be deployed
Maintenance
Related MCP Connectors
Kanban board for teams and coding agents: manage tasks, subtasks, sprints and wiki pages via MCP.
Remote MCP for Kanban AI boards—manage projects, tasks, and comments from AI tools.
Remote MCP for Kiro release readiness, evidence binders, signoff, and CI approval receipts.
Remote MCP for tool license checks, vendor policy review, alternatives, and license receipts.
Related MCP Servers
- AlicenseBqualityCmaintenanceEnables code review operations on GitHub and GitLab, including fetching pull/merge requests, viewing diffs, adding comments, analyzing code quality, and creating merge requests directly from your MCP client.158 npm4MIT
- AlicenseAqualityDmaintenanceProvides MCP tools to review git changes using OpenAI Codex CLI, enabling code review of unstaged, staged, or last-commit changes.36 npmMIT
- AlicenseNot gradedqualityBmaintenanceEnables management of a local-first, per-repo ticket board with git/PR pipeline using markdown files and MCP tools for ticket operations.MIT
- AlicenseAqualityBmaintenanceMCP server that ranks and deduplicates your GitHub pull request review queue across direct requests, team requests, and your own waiting PRs into a single prioritized list via one get_review_queue tool.211Apache 2.0