Borrowing it
Nothing to install: this file belongs to adudley78/mcp-audit. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/adudley78/mcp-audit/main/CLAUDE.mdgit clone --depth 1 https://github.com/adudley78/mcp-auditWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/adudley78/mcp-audit/claude-md)<a href="https://agentmods.dev/instructions/adudley78/mcp-audit/claude-md"><img src="https://agentmods.dev/badge/instructions/adudley78/mcp-audit/claude-md.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.18605 | $0.18605 |
| Opus 5 | $0.09302 | $0.09302 |
| Sonnet 5 | $0.03721 | $0.03721 |
| Haiku 4.5 | $0.01861 | $0.01861 |
Grade A, and why
mcp-audit CLAUDE.md scanned grade A with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
│ └── client.py # post_registration() (PII POST, once); post_ping() (no-PII, per scan); _REGISTER_ENDPOINT constant; urllib.request only Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
- **`subprocess.run()` always uses list form with `shell=False` (implicit default).** How it starts
The opening of the file, as written. The whole thing — 714 lines — stays where its author put it; the contents beside it link to each section on GitHub.
mcp-audit
An open-source, privacy-first CLI tool that scans MCP (Model Context Protocol) server configurations for security vulnerabilities. Think "Snyk for MCP servers."
What this project does
Developers use MCP servers to give AI agents (Claude, Cursor, VS Code Copilot) access to tools — file systems, databases, APIs, etc. These servers are configured via JSON files and can be poisoned, misconfigured, or compromised. mcp-audit scans those configs and flags security issues.
Business model
Fully open source under Apache 2.0 — every feature is free for every user. There
is no Community / Pro / Enterprise split, no license-key gate, and no paid tier.
All paid-license plumbing (Ed25519 signing, revocation lists, activate /
license commands, the gate() shim) was removed in v0.2.0; anything that
still references licensing.py or _gate.py is stale. Funding is requested
via GitHub Sponsors (handle configured in .github/FUNDING.yml, with a
"Support" section in README.md), not through feature gating.
Tech stack
- Python 3.11+, managed with
uv - CLI: Typer + Rich
- Data models: Pydantic v2
- Testing: pytest + pytest-asyncio
- Linting: Ruff + Bandit
- Packaging: hatchling via pyproject.toml
Project layout
src/mcp_audit/
├── cli/ # Typer app package — one submodule per command group
│ ├── __init__.py # Defines `app` + sub-apps (baseline/rule/policy/extensions/
│ │ # agent-files); re-exports `run_scan`, `discover_configs`,
│ │ # `parse_config`, and `_REGISTRY_CACHE_PATH` so test
│ │ # patches at `mcp_audit.cli.*` continue to intercept.
│ │ # Imports the command submodules at the bottom so their
│ │ # `@app.command()` decorators register.
│ ├── __main__.py # `python -m mcp_audit.cli` entry (plus PyInstaller target)
│ ├── _helpers.py # Cross-cutting helpers (`_write_output`)
│ ├── scan.py # scan, discover, pin, watch (+ `_drift_to_findings`,
│ │ # `_scoped_state_path`, `_newest_last_seen`). The
│ │ # `scan` command is composed from `_apply_*` pipeline
│ │ # stages (baseline drift, governance, SAST, extensions,
│ │ # agent-files, severity filter) and `_write_*` output
│ │ # helpers — see "scan() pipeline conventions" below.
│ ├── check.py # check command: one-page practitioner verdict (+ _write_pdf_report)
│ ├── fix.py # fix command: apply safe remediations to config files
│ ├── diff.py # diff command: MCP-aware diff for PR review / CI gates
│ ├── baseline.py # baseline sub-app: save / list / compare / delete / export
│ ├── registry.py # update-registry, verify
│ ├── rules.py # rule sub-app: validate / test / list
│ ├── policy.py # policy sub-app: validate / init / check (+ `_POLICY_TEMPLATE`)
│ ├── extensions.py # extensions sub-app: discover / scan
│ ├── agent_files.py # agent-files sub-app: discover / scan (skills, memory, hooks)
│ ├── sast.py # sast command
│ ├── sbom.py # sbom command: CycloneDX 1.5 SBOM export
│ ├── vet.py # vet command: pre-install package verdict (offline, facts not grades)
│ ├── shadow.py # shadow command: shadow MCP server sweep (+ --continuous daemon)
│ ├── killchain.py # killchain command: top blast-radius-cutting changes
│ ├── snapshot.py # snapshot command: signed forensic snapshots (+ --rehydrate/--stream)
│ ├── dashboard.py # dashboard command
│ ├── fleet.py # merge command (+ `_collect_json_paths_from_dir`,
│ │ # `_print_fleet_report`)
│ ├── push_nucleus.py # push-nucleus command: scan + push to Nucleus FlexConnect API
│ ├── register.py # register command: interactive opt-in flow, --clear, --status
│ ├── advise.py # advise command + feed sub-app (feed verify): OSV advisory feed
│ └── version.py # version command
├── scanner.py # Orchestrator: discovery → parsing → analysis → output
├── scoring.py # Scan score calculation (0–100) and letter grade (A–F) formatting
├── discovery.py # Finds MCP config files across all supported clients
├── config_parser.py # Parses JSON configs, normalizes across client formats
├── models.py # Pydantic models: Finding, ServerConfig, ScanResult, ScanScore, Severity, AttackPath, MachineInfo
├── owasp_mcp.py # Single source of truth for OWASP MCP Top 10 codes/names (MCP01–MCP10)
├── verdict.py # Pure verdict builder for `vet` (shared with the mcp-audit.dev generator)
├── watcher.py # Filesystem watcher for continuous monitoring (mcp-audit watch); _McpConfigEventHandler serialises callbacks via _scan_lock with single-event coalesced re-trigger
├── mcp_client.py # Live MCP server connection via MCP SDK (--connect)
├── _paths.py # data_dir() and resolve_bundled_resource() — shared helpers for locating bundled data in source, wheel, and PyInstaller frozen contexts
├── _network.py # NetworkPolicy + require_offline_compatible() — centralised --offline mutual-exclusion enforcement for network-touching flags
├── analyzers/
│ ├── base.py # BaseAnalyzer abstract class — all analyzers inherit this
│ ├── poisoning.py # Tool description poisoning detection (regex-based); PATTERNS list reused by agent_files
│ ├── credentials.py # Secret/API key exposure in configs (SECRET_PATTERNS)
│ ├── transport.py # Transport security (TLS, localhost binding, etc.)
│ ├── supply_chain.py # Package provenance and typosquatting detection (registry-backed)
│ ├── config_hygiene.py # Config-file filesystem hygiene (CFHYG-001..006); hook-command checks HOOK-001/002 via analyze_config
│ ├── rug_pull.py # Description change detection via hashing
│ ├── toxic_flow.py # Cross-server capability tagging and dangerous pair detection
│ ├── auth.py # Remote server authentication checks (AUTH-001, AUTH-002)
│ ├── collision.py # Tool-name collision detection across --connect servers (COLLIDE-001)
│ └── attack_paths.py # Multi-hop attack path detection and greedy hitting set algorithm
├── agent_files/ # Agent instruction/memory file scanner (SKILL-001/002/003, MEM-001/002)
│ ├── __init__.py # Package marker; offline-only invariant docs
│ ├── models.py # AgentFile dataclass, AgentFileSurface StrEnum
│ ├── discovery.py # discover_agent_files(); user-global + project-tree walk (mirrors discovery.py conventions)
│ └── analyzer.py # analyze_agent_files(); imports PATTERNS from analyzers/poisoning.py (never forked). NB: HOOK-001/002 live in analyzers/config_hygiene.py, not here
├── advisory/ # OSV 1.6.0 advisory records + signed feed (mcp-audit advise / feed verify)
│ ├── __init__.py # Package marker; re-exports Advisory, build_advisory, write_feed, sign_feed, verify_feed
│ ├── schema.py # Advisory dataclass → OSV 1.6.0 JSON; stable `x_MCPSA-<12hex>` IDs; MCP metadata under affected[].database_specific; FINDING_CLASS_TO_OWASP + owasp_for(); rejects codes owasp_mcp.py does not define
│ ├── classify.py # finding ID → finding_class / observation / CVSS 3.1 vector (cvss_base_score reconciliation); owasp_codes_for() validates against owasp_mcp.py; is_advisable() excludes non-vulnerability findings
│ ├── canonical.py # RFC 8785 JCS canonicalization (UTF-16 key order, ECMAScript number format) — the bytes that get signed; depth/size bound (CanonicalError)
│ ├── freshness.py # snapshot_version / published_at / expires on index.json only; TTL; seen.json keyed on signing identity
│ ├── feed.py # build_advisory / build_advisories / write_feed (advisories/, index.json, osv/all.json+zip); resolve_package, redact; feed_version 1.1
│ ├── sign.py # cosign (default) + minisign backends, static project key; sign_feed / verify_feed / feed_is_signed; signing block embedded in index.json
│ ├── validate.py # validate_osv() against the vendored schema; ValidationUnavailableError when jsonschema is absent
│ └── osv_schema/ # Vendored osv-1.6.0.json — pinned, offline, bundled in wheel and PyInstaller binary
├── attestation/ # Supply-chain integrity verification (Layer 1 hashes, Layer 2 Sigstore)
│ ├── __init__.py # Package marker
│ ├── hasher.py # HashResult dataclass; compute_hash_from_file/url; resolve_npm/pip_tarball_url; verify_package_hash
│ ├── verifier.py # verify_server_hashes(); extract_version_from_server(); bridges registry → hasher → Finding objects
│ ├── sigstore_client.py # Layer 2 Sigstore bundle discovery/verification via npm + PyPI registry APIs
│ └── sigstore_findings.py # AttestationResult → Finding translation for Layer 2 Sigstore verification
├── baselines/
│ ├── __init__.py # Package marker
│ └── manager.py # BaselineManager, Baseline, BaselineServer, DriftFinding, DriftType; save/load/compare
├── registry/
│ ├── __init__.py # Package marker
│ └── loader.py # KnownServerRegistry, RegistryEntry, load_registry(); Levenshtein helper
├── rules/
│ ├── __init__.py # Package marker
│ └── engine.py # PolicyRule, RuleMatch, MatchCondition, RuleEngine; load_rules_from_file/dir; load_bundled_community_rules
├── governance/
│ ├── __init__.py # Package marker
│ ├── models.py # GovernancePolicy, ApprovedServers, ScoreThreshold, TransportPolicy, RegistryPolicy, FindingPolicy, ClientOverride, PolicyMode
│ ├── loader.py # load_policy(); resolution order: explicit → cwd → repo root → user config
│ └── evaluator.py # evaluate_governance(); per-server policy checks; produces Finding objects with analyzer="governance"
├── vulnerability/ # OSV.dev CVE lookups for `scan --check-vulns` (network, opt-in)
│ ├── __init__.py # Package marker
│ ├── models.py # ResolvedPackage, VulnAdvisory data models
│ ├── resolver.py # extract_ecosystem_and_version(); resolve_latest_version() from a ServerConfig
│ ├── depsdev.py # fetch_transitive_deps() — transitive dependency graph from deps.dev
│ ├── osv.py # query_vulns_batch() — OSV.dev batch CVE query
│ └── scanner.py # check_vulnerabilities() — orchestrates resolver → depsdev → osv → Finding objects
├── diff/ # MCP-aware diff engine (mcp-audit diff)
│ ├── __init__.py # Package marker
│ ├── loader.py # Load diff inputs (directory, JSON scan file, or git SHA) into ServerConfig lists
│ ├── comparator.py # Compare two ServerConfig lists → flat list of Change objects
│ ├── risk.py # Risk classification for diff changes
│ └── render.py # Render diff to terminal, JSON, and PR-comment Markdown
├── fixer/ # Safe-remediation engine (mcp-audit fix)
│ ├── __init__.py # Package marker
│ ├── fixer.py # Fixer orchestrator — load config, apply strategies, write atomically with .bak
│ └── strategies/
│ ├── __init__.py # Package marker
│ ├── base.py # FixStrategy abstract base
│ ├── credentials.py # CRED-001/002 — redact plaintext secrets with ${ENV_KEY}
│ ├── transport.py # TRANSPORT-001 — upgrade http:// URLs to https://
│ └── pinning.py # SC-001/002 — replace typosquat with verified registry name @version
├── killchain/ # Decision engine over the attack-path graph (mcp-audit killchain)
│ ├── __init__.py # Package marker
│ ├── recommender.py # Rank kill switches from the hitting-set output by incremental path reduction
│ ├── simulator.py # What-if simulation: re-run summarize_attack_paths against the modified server list
│ ├── patches.py # Generate governance-policy denylist / PR-comment patch snippets
│ └── render.py # Markdown and JSON output formatters for killchain results
├── shadow/ # Shadow MCP server detection (mcp-audit shadow)
│ ├── __init__.py # Package marker
│ ├── allowlist.py # Operator allowlist of sanctioned servers; load/match
│ ├── classifier.py # Pure sanctioned-vs-shadow classification given server + allowlist
│ ├── risk.py # RiskLevel scoring for a single server (toxic-flow capability logic)
│ ├── events.py # Structured events for --continuous daemon mode (new_shadow_server, server_drift, server_removed)
│ └── state.py # first_seen/last_seen state at <user-config-dir>/mcp-audit/shadow/state.json (0o600)
├── snapshot/ # Forensic snapshot rehydrate/diff (mcp-audit snapshot)
│ ├── __init__.py # Package marker
│ ├── rehydrate.py # Reconstruct the historical attack-path graph from a recorded snapshot JSON
│ └── diff.py # "What changed since the snapshot?" — servers added/removed/changed
├── output/
│ ├── __init__.py # Package marker
│ ├── base.py # BaseFormatter abstract class — all formatters inherit this
│ ├── terminal.py # Rich-formatted console output (default); renders score/grade panel
│ ├── sarif.py # SARIF for GitHub Security integration
│ ├── nucleus.py # Nucleus FlexConnect formatter
│ ├── dashboard.py # Self-contained HTML dashboard with embedded D3 v7 graph and grade badge
│ ├── check.py # One-page security verdict formatter for `mcp-audit check` (_HINTS)
│ ├── advisory.py # AdvisoryFormatter(BaseFormatter) — ScanResult → JSON array of OSV 1.6.0 records; byte-identical to feed/osv/all.json (feed *directories* stay in advisory/feed.py)
│ ├── cyclonedx.py # CycloneDX SBOM formatter (supports cyclonedx-python-lib 7.x–11.x)
│ ├── snapshot.py # Snapshot formatters: CycloneDX AI/ML-BOM and native JSON
│ └── pdf.py # Letter-size PDF compliance report (mcp-audit scan --report pdf)
├── extensions/
│ ├── __init__.py # Package marker
│ ├── models.py # ExtensionManifest, ExtensionVulnEntry Pydantic models
│ ├── discovery.py # discover_extensions(), parse_manifest(); EXTENSION_PATHS per-client config
│ └── analyzer.py # analyze_extensions(); check_known_vulns, check_permissions, check_wildcard_activation, check_provenance, check_sideloaded, check_stale; load_vuln_registry()
├── registration/
│ ├── __init__.py # Package marker; privacy-invariant docs
│ ├── models.py # RegistrationConfig, RegistrationPostPayload, RegistrationPingPayload Pydantic models
│ ├── manager.py # load/save/clear_registration(); build_registration(); 0o600 file write; platformdirs storage
│ └── client.py # post_registration() (PII POST, once); post_ping() (no-PII, per scan); _REGISTER_ENDPOINT constant; urllib.request only
├── sast/
│ ├── __init__.py # Package marker
│ ├── runner.py # SastResult; find_semgrep(); find_rules_dir(); run_semgrep(); parse_semgrep_output(); severity mapping
│ └── bundler.py # get_bundled_rules_path() — resolves semgrep-rules/ in PyInstaller builds
├── fleet/
│ ├── __init__.py # Package marker
│ └── merger.py # FleetMerger, MachineReport, DeduplicatedFinding, FleetStats, FleetReport; fleet HTML generation
└── data/
├── known_npm_packages.yaml # Legacy npm package list (retained for reference; superseded by registry)
└── d3.v7.min.js # Bundled D3 v7 (embedded inline in dashboard HTML)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today Changed · +54 lines · +1,009 tokens per session 5d8b950a0fbb
- 8d ago First seen · 660 lines · 17,596 tokens per session scan A 1bc95c6c84a3
mcp-audit CLAUDE.md is an instructions file published in the GitHub repository adudley78/mcp-audit (2 stars, last pushed today), licensed Apache-2.0. It adds 18,605 tokens to every session, about $0.0930 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.