leveret
The server exposes MCP review-support tools for analyzing code changes and managing review memory.
scan: run static-analysis engines (semgrep, gitleaks, shellcheck, ruff, actionlint) over a diff or file list and return normalized findings/leads.
ast_search: perform syntax-aware structural code search via ast-grep patterns.
context: get prioritization context per file (cyclomatic complexity, git churn, last-touched date) to guide review depth.
remember: persist graded verdicts (priced-noise or false-positive) to the repo's review memory, optionally anchored to a specific source line.
memory: list stored review-memory entries with grades, reasons, and last-applied timestamps to spot stale or consolidatable rulings.
Enables autonomous code reviews on GitHub through a self-hosted GitHub App, receiving pull request webhooks, checking out the head commit, running scans and review agents, and posting inline comments plus a walkthrough report.
Click on "Install 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., "@leveretscan my repo for leaked secrets and security vulnerabilities"
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.
Leveret
A leveret is a young hare — small, fast, and born with its eyes open.
Leveret is a self-hosted, hybrid engine for private code reviews: the successor to hosted AI review bots for teams whose code stays home. It combines a deterministic static-analysis layer, a code graph built into every checkout, a graded noise filter with durable memory, and adversarial agent contracts — driven by the AI you bring (BYOAI: your provider and model — Anthropic or OpenAI by API key or subscription, or a local OpenAI-compatible endpoint). The engine layer itself never calls an LLM, and nothing leaves your infrastructure.
How a review works
flowchart TD
D[/"📄 PR diff"/]:::gh
S["🔍 scan<br>engines + delta vs base<br>+ profile + memory"]:::core
R["🐇 review agent<br>five lenses,<br>cross-file blast radius"]:::agent
V["⚖️ verification agent<br>refute or evidence,<br>three grades"]:::agent
T[/"📋 tiered findings<br>+ walkthrough report"/]:::gh
D --> S
D --> R -- concerns --> V -- survivors only --> T
S -- bounded post-walk leads --> V
classDef gh fill:#6ea8fe,stroke:#3d6fd9,color:#111
classDef tun fill:#ffc86b,stroke:#cc8f22,color:#111
classDef core fill:#7ed6a2,stroke:#3d9e6a,color:#111
classDef agent fill:#c9a0f5,stroke:#9059d1,color:#111
classDef store fill:#9fd8e3,stroke:#4d9aab,color:#111Deterministic first pass. Engines run only against what the change touches: semgrep (registry security + per-language rulesets, offline-capable), gitleaks (secrets over the commit range), shellcheck, ruff, actionlint, zizmor (workflow security), osv-scanner (lockfile CVEs), typos, jscpd (duplication, corpus-gated), custom semgrep/ast-grep rule packs, and any SARIF-emitting command via profile
custom:entries (recipes: psalm taint, hadolint, trivy, …). Delta scanning is on by default with a base ref: findings already present at the base tree are dropped as pre-existing — counted, never silent — with multiset identity (a copy of a known-bad line still surfaces), rename tracking, and surfaced base-pass failures. A code graph is generated into the checkout at the exact reviewed commit, so agents query structure instead of grepping for it.Accounted filter. After discovery completes, surviving deterministic leads enter verification as one bounded, routed stream. Every supplied concern and lead ends as
actionable,priced-noise,false-positive, ordropped; profile and memory suppression happens before routing. Nothing is silent: suppression, exact-mechanism deduplication, overflow IDs/bytes, verifier rationale, and publication state remain separate structured accounting.Memory that learns from humans.
.leveret/memory.jsonl, versioned in the reviewed repo: fingerprint verdicts (optionally anchored to a source line — the memory dies when the line changes) plus conventions — free-text rulings taught by maintainers vialearn, injected into the agent prompts as repo case law, able both to suppress noise and to raise findings that violate them.Adversarial contracts. The discovery walk runs five lenses (correctness and hostile inputs, contract conformance, test honesty, blast radius, and explicitly deferred leads triage) without deterministic lead material, and traces changed symbols to call sites outside the diff. After the walk, the verification agent tries to refute every concern and routed lead; claims it can neither refute nor ground in executed evidence are dropped, not published.
Reporting. Findings publish in importance tiers (
critical / major / minor / nit, distinct from engine severity), out-of-diff findings appear with their stated correlation to the change, pre-existing defects adjacent to edited lines return as reminders, and every review carries a walkthrough: per-lens outcomes (clean included), per-file verdicts, post-walk lead/overflow metrics, the engine table, and a run-configuration line naming the harness, model, and thinking level that produced the review.
Related MCP server: reporelay
Ways to run it
GitHub App (autonomous). A self-hosted App layer receives PR webhooks, checks
out the head, builds the code graph, runs the scan, drives the standardized runner,
and posts the review — inline comments plus walkthrough. The App holds only a GitHub
App key and webhook secret; model credentials live exclusively in the runner. Human
replies on findings feed learn. Getting started + diagram: docs/app.md.
Standardized runner. leveret-runner-pi drives the review/verify contracts
through a pinned Pi runtime. Leveret supplies
the system prompt, phase-specific terminal submission schema, and read-only review
tools; Pi supplies the provider/model runtime and trusted host resources. Models
submit phase results through leveret_submit_phase; assistant text is not parsed as
JSON. Host-installed Pi/OMP extensions and hooks, Pi/Claude/
Codex skills, prompt templates, and context are loaded. The reviewed checkout is
never Pi's working directory, so its settings, hooks, skills, prompts, MCP
configuration, and context cannot extend the session. You choose provider, model,
and effort (--model / --effort / --provider, or the matching
LEVERET_RUNNER_* env vars; defaults openai/gpt-5.6-sol at high). Every
walkthrough records the effective client, model, prompt hash, capabilities, and tool
metrics. A custom LEVERET_RUNNER remains the bring-your-own-harness escape hatch.
Autonomous reviews retain a private, owner-controlled audit trace by default:
Pi's native per-attempt sessions, normalized harness events, App/scanner/subprocess
activity, exact failed output, checksums, and a verified zstd-or-gzip archive under
LEVERET_DATA. Raw content never enters default stdout. See
Private audit traces for policy, retention,
export, security, and inspection controls.
Interactive (MCP). Register the server in any MCP-capable client and drive
reviews yourself — the served review/verify prompts arrive with your repo's
accumulated rulings substituted in (getting started + diagram:
docs/interactive.md):
npm install && npm run build
claude mcp add leveret -- node /path/to/leveret/dist/server.jsMCP tools: scan, ast_search (structural search via ast-grep), context
(per-function complexity, churn, recency — prioritization signal, not findings),
remember (persist a graded verdict), memory (inspect the store), learn
(persist a human-taught convention); MCP prompts: review, verify.
The reviewer toolbelt
The engines and structural indexes are capabilities of the reviewer, not the
reviewed repository: install them beside Leveret. Full belt: codegraph,
graphify, semgrep, gitleaks, shellcheck, ruff, actionlint, zizmor,
osv-scanner, typos, jscpd, ast-grep, lizard, and a pre-staged Serena
LSP bundle for semantic navigation. From a clone, build one with
node dist/runner/prefetch-serena.js --bundle /opt/leveret/serena-bundle and run
with LEVERET_SERENA_BUNDLE set to that path (the installed package also exposes
leveret-prefetch-serena). Runtime downloads are refused.
Before autonomous model work, Leveret builds and validates exact-checkout
CodeGraph and code-only Graphify indexes, then warms one Serena symbol query per
detected packaged language. Missing indexes fail closed by default; set
LEVERET_REQUIRE_INDEXES=0 only for an explicitly degraded run.
npm test # integration suite; exercises the real toolsDesign and status
DESIGN.md holds the architecture and decisions: the three-grade filter, memory and learnings, runner standardization, the GitHub App split, and the validation benchmark that gates replacing a hosted review bot with Leveret.
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityAmaintenanceLocal-first code intelligence MCP server with hybrid BM25 + ONNX vector search, symbol-level impact analysis, diff-aware PR review with risk scoring, and persistent memory tied to git state.3669576MIT
- AlicenseNot gradedqualityFmaintenanceSelf-hosted MCP server for indexing and searching code repositories via hybrid search and deep code understanding.718MIT
- AlicenseNot gradedqualityCmaintenanceOpen-source AI code review MCP server for local git diff auditing with deterministic security rules and AI-powered analysis using any OpenAI-compatible model.4MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for automated code review using AI agents. It analyzes code diffs or file paths for bugs, security issues, and style violations.MIT
Related MCP Connectors
Enterprise code intelligence for M&A, security audits, and tech debt. Hosted server with 200k free.
Zero-config MCP security scanner for AI-generated apps. 25K+ vulnerability patterns.
Multi-engine search for AI agents. Trust scoring, local corpus, MCP-native. Self-hostable, BYOK.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leveret-dev/leveret'
If you have feedback or need assistance with the MCP directory API, please join our Discord server