Run Trivy, Semgrep, Gitleaks and more from one file. Consolidates SAST, SCA, secrets, IaC and container findings into one SARIF report and one pass/fail gate for CI — ranked by real risk, and can fail a PR on new findings only.
- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
- !Install pipes a remote script into a shell (curl | sh)
git clone https://github.com/draugr-dev/draugr{
"mcpServers": {
"draugr": {
"command": "draugr"
}
}
}MCP Servers overview
# Draugr
> Run Trivy, Semgrep, Gitleaks and more from one file. Get one SARIF report and one verdict.
[](https://github.com/draugr-dev/draugr/actions/workflows/ci.yml)
[](https://scorecard.dev/viewer/?uri=github.com/draugr-dev/draugr)
[](https://www.bestpractices.dev/projects/13631)
[](https://github.com/draugr-dev/draugr/releases)
[](LICENSE)
**Describe your app. Draugr figures out the rest.**
Every application carries problems nobody put there on purpose: a library that turned out to have a
hole in it, a password committed by accident, a server setting that leaves a door open. Draugr finds
them, works out which ones actually matter for *your* app, and answers the question you are really
asking before a release. **is this safe to ship?**
It runs the established open-source scanners for you, Trivy, Semgrep, Gitleaks and others, so there
is nothing to choose between, wire up, or read five of. You describe what you built, once, in one
file: where the repositories are, what images it builds, what it exposes, what infrastructure it
runs on. Draugr picks the checks that apply, runs the right tool for each, and produces evidence you
can hand to somebody else. Bring the scanners you already pay for, or use the open-source defaults.
Findings are **ranked**, not listed. A scanner's "critical" describes a flaw in the abstract. How
bad it could be at its worst, anywhere. The same flaw is act-now in the service strangers can reach
and backlog in the internal tool three people use, and no scanner can tell those apart because the
difference is in the file you wrote, not in the code. And [`draugr diff`](docs/guides/pr-diff.md)
gates a pull request on **new** findings only, so inheriting two hundred existing ones does not
block every change.
**[Quickstart](#quickstart)** · [See it in action](#see-it-in-action) ·
[What it checks](#what-it-checks) · [In your pipeline](#in-your-pipeline) ·
[Documentation](#documentation) · [What Draugr doesn't promise](#what-draugr-doesnt-promise) ·
[Security](#security--supply-chain)
## See it in action
```console
$ draugr scan .
DRAUGR FAIL draugr-demo 1.0 5.238s
P1 197 P2 632 P3 231 P4 18
CONTROLS
iac FAIL 7 high 10 medium 23 low
images FAIL 20 critical 153 high 251 medium 39 low
licenses FAIL 353 medium 176 low
sast FAIL 7 high 10 medium
sca FAIL 4 critical 10 high 13 medium 1 low
secrets FAIL 1 high
REACHABILITY
govulncheck 2 reachable, 2 unreachable
Unreachable findings are ranked down in priority, not removed from the report.
1 finding suppressed by config.exclude · 1 accepted by demo@example.com
FIX FIRST top 10 of 1078, by priority
Priority Severity Rule Scanner Location Upgrade
P1 critical CVE-2026-42010 trivy python:3.8-slim libgnutls30 3.7.9-2+deb12u3 → 3.7.9-2+deb12u7
gnutls: Authentication Bypass via NUL Character in Username
P1 critical CVE-2026-31789 trivy python:3.8-slim libssl3 3.0.14-1~deb12u2 → 3.0.19-1~deb12u2
OpenSSL: Heap buffer overflow on 32-bit systems from large X.509 certificate processing
P1 critical CVE-2019-20477 trivy app/requirements.txt:4 PyYAML 5.1 → 5.2
command execution through python/object/apply constructor in FullLoader
```
Abridged: the real run lists ten and says how many it did not. That last block is the point, a
thousand findings, ordered, with the three that matter this week at the top.
**Priority (P1–P4) is not severity.** Severity says how bad a flaw is at its worst, anywhere.
Priority weighs that against how exposed and how important the part of your app it sits in is, which
no scanner can work out, because it is not in the code.
**[draugr-dev/draugr-demo](https://github.com/draugr-dev/draugr-demo)** is a deliberately
vulnerable app wired to Draugr: every control lights up, findings land in the repo's
**Security → Code scanning** tab, and its example pull requests show the new-vs-fixed diff.
## Quickstart
```bash
curl -fsSL https://draugr.dev/install.sh | sh
```
Installs to `~/.local/bin`, no `sudo`. It verifies before it installs and says which checks ran, the
archive's SHA-256 against the release `checksums.txt`, plus the cosign signature on that file when
[cosign](https://docs.sigstore.dev/cosign/) is on your `PATH`, and installs nothing if a check
fails. The script is [readable in the repo](install.sh); other routes, including Homebrew and `go
install`, are in the [install guide](docs/getting-started/install.md).
```bash
draugr tools install # fetch the scanners, pinned and verified
draugr scan . # scan this repo with sensible defaults
draugr init # or scaffold a draugr.saga.yaml to customize
```
Then describe what you actually ship:
```yaml
project: my-app
release:
version: "1.0"
config:
controls:
images:
enabled: true
components:
- name: web
images:
- image: alpine:3.19
```
```bash
draugr scan draugr.saga.yaml # console summary; exits non-zero on fail
draugr scan draugr.saga.yaml -o out/ # also writes report.json + results.sarif
draugr scan draugr.saga.yaml --format markdown # or html, junit, json, sarif
```
**Your editor already knows this file.** Draugr's
[JSON Schema](https://draugr.dev/schema/draugr.saga.schema.json) is registered with
[SchemaStore](https://www.schemastore.org/), so any `*.saga.yaml` gets completion, hover docs and
typo warnings on open with nothing to configure.
Or let discovery write the descriptor for you:
```bash
draugr survey github repos --org my-org -o draugr.saga.yaml
draugr survey k8s images --namespace prod -o draugr.saga.yaml
```
Full walkthrough: [quickstart](docs/getting-started/quickstart.md).
## What it checks
Eleven controls, each backed by a tool Draugr executes rather than bundles, so every scanner stays
under its own license, and you can swap it.
| Control | Looks for | By default |
|---|---|---|
| `sca` | known flaws in the libraries you depend on | Trivy, Grype and Mend opt-in |
| `secrets` | passwords and keys committed by accident, history included | Gitleaks |
| `sast` | patterns in the code you wrote that let somebody in | Semgrep, gosec opt-in for Go |
| `iac` | settings that leave a door open, in Terraform, Kubernetes and Dockerfiles | Trivy |
| `images` | what is baked into your container images | Trivy, Grype opt-in |
| `licenses` | terms attached to code you did not write | Trivy |
| `dast` | problems only visible from outside a running app | Nuclei, authenticated, and from an OpenAPI spec |
| `headers` | how your site answers a browser | native |
| `tls` | certificates and encryption | native |
| `infrastructure` | your Kubernetes cluster, against the CIS benchmarks | native, kube-bench opt-in |
| `threats` | whether anything you talk to is on a public blocklist | abuse.ch URLhaus |
Every scanner, what it sends and whose terms it carries:
[integrations catalog](docs/reference/catalog.md).
Alongside them: content-hash caching, an SBOM per repository and image, KEV/EPSS enrichment,
per-control gate thresholds, and suppressions that stay in the report **with the reason someone
gave** rather than disappearing.
## In your pipeline
The first-party GitHub Action installs Draugr, provisions the scanners, and hands the merged SARIF
to code scanning, one clean **Draugr** tool in the Security tab:
```yaml
permissions:
contents: read
security-events: write
steps:
- uses: actions/checkout@v4
- id: draugr
uses: draugr-dev/draugr@v0 # pin @vX.Y.Z for reproducible CI
with:
saga: draugr.saga.yaml
tools: true # provision the scanners the controls need
- if: always() # publish findings even when the gate fails
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ steps.draugr.outputs.sarif }}
```
[GitHub Actions](docs/guides/github-action.md) · [GitLab](docs/guides/gitlab-ci.md), an include,
GitLab's own report formats, a sticky merge-request comment · [Azure
Pipelines](docs/guides/azure-pipelines.md), a step template
**From an AI coding assistant.** Ask one to check a change and it will, using whatever scanner it
finds over a scope it chose. `draugr mcp` serves Draugr over the [Model Context
Protocol](https://modelcontextprotocol.io) so it reads your *committed* descriptor instead, and
scanning is off by default, because it clones repositories and runs external tools.
```bash
claude mcp add draugr -- draugr mcp
```
See [use Draugr from an AI coding assistant](docs/guides/ai-agents-mcp.md).
## Documentation
**[Documentation index →](docs/README.md)**
- [Quickstart](docs/getting-started/quickstart.md), install, first scan, first survey, CI
- [Concepts](docs/concepts/saga.md), the descriptor, controls, scanners, the verdict
- [Saga schema](docs/reference/saga-schema.md) · [CLI reference](docs/reference/cli.md),
every field, every flag
- [Integrations catalog](docs/reference/catalog.md), every scanner, with licenses and terms
- [Contributing](CONTRIBUTING.md) · [Changelog](CHANGELOG.md)
## What Draugr doesn't promise
A passing verdict means the controls you configured found nothing they were looking for. It is not a
statement that your software is secure. It is silent about anything your descriptor does not
declare, controls you did not enable, and whatever the underlying scanners miss. License findings
are information, not legal advice. Draugr is provided under Apache-2.0 **without warranty**.
The details, including whose terms theWhat people ask about draugr
What is draugr-dev/draugr?
+
draugr-dev/draugr is mcp servers for the Claude AI ecosystem. Run Trivy, Semgrep, Gitleaks and more from one file. Consolidates SAST, SCA, secrets, IaC and container findings into one SARIF report and one pass/fail gate for CI — ranked by real risk, and can fail a PR on new findings only. It has 6 GitHub stars and its last recorded update is dated 2026-09-12.
How do I install draugr?
+
You can install draugr by cloning the repository (https://github.com/draugr-dev/draugr) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is draugr-dev/draugr safe to use?
+
Our security agent has analyzed draugr-dev/draugr and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains draugr-dev/draugr?
+
draugr-dev/draugr is maintained by draugr-dev. The last recorded GitHub activity is dated 2026-09-12, with 24 open issues.
Are there alternatives to draugr?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy draugr to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/draugr-dev-draugr)<a href="https://claudewave.com/repo/draugr-dev-draugr"><img src="https://claudewave.com/api/badge/draugr-dev-draugr" alt="Featured on ClaudeWave: draugr-dev/draugr" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!