Pre-install security for AI agents, npm packages, and MCP servers. Zero-dep local static analysis; normal scans never execute package code.
claude mcp add pkgxray -- npx -y --yes{
"mcpServers": {
"pkgxray": {
"command": "npx",
"args": ["-y", "--yes"]
}
}
}MCP Servers overview
<div align="center"> <img src="docs/banner.png" alt="pkgxray — analyze packages before you install them" width="820"> # pkgxray — pre-install security for npm packages, MCP servers, and AI agents Inspect an npm package or MCP server **before** you install or connect to it, and get a deterministic, evidence-backed `SAFE`, `REVIEW`, or `BLOCK` verdict. Local, zero-dependency static analysis — normal scans never execute package code. [](https://www.npmjs.com/package/pkgxray) [](https://www.npmjs.com/package/pkgxray) [](https://github.com/adamsjack711-ux/pkgxray/actions/workflows/pkgxray-test.yml) [](https://github.com/adamsjack711-ux/pkgxray/actions/workflows/pkgxray-benchmark.yml) [](LICENSE) [**Website**](https://pkgxray.ca) · [**Documentation**](docs/README.md) · [**Calibration**](https://pkgxray.ca/stats) · [**Report a bug**](https://github.com/adamsjack711-ux/pkgxray/issues) <img src="docs/demo/hero.gif" alt="pkgxray guard clearing express@4.21.0 with a SAFE A+ verdict, then blocking a trojaned sample with a BLOCK F verdict and a HIGH credential-access finding" width="820"> <sub>Real runs: <code>guard</code> clears <code>express@4.21.0</code>, then blocks a sample modeled on the 2024 <code>@solana/web3.js</code> compromise.</sub> </div> ## Highlights - **Zero runtime dependencies** — pure Node, runs entirely on your machine (~25 ms static pass). - **Normal scans never execute package code** — the tarball is read as bytes in quarantine. - **Deterministic, cited verdicts** — every finding names the file and evidence; no LLM in the verdict path, so injected text can't steer it. - **Built for the agent era** — vet MCP servers before connect, gate the installs an agent runs, and re-audit live MCP traffic. - **Calibrated and regression-gated** — zero heuristic false blocks on the top-1000 most-downloaded packages, enforced in CI. > **[1. Quick start](#quick-start)** · [2. What it scans & detects](#what-it-scans--detects) · [3. Verdicts](#verdicts) · [4. Usage](#usage) · [5. Integrations](#integrations) · [6. How it compares](#how-it-compares) · [7. Documentation](#documentation) ## Why AI coding assistants install packages and connect to MCP servers at machine speed, often without a human reading the code. Sonatype identified **more than 454,600 new malicious open-source packages across monitored ecosystems in 2025**, over 99% of them on npm ([Sonatype](https://www.sonatype.com/state-of-the-software-supply-chain/2026/open-source-malware)). `npm audit` asks *does this have a known CVE?*; pkgxray also asks *what does the code actually do* — before anything installs. ## Quick start **1. Scan a known-benign package** (no install of pkgxray needed): ```bash npx --yes pkgxray@1.0.5 guard npm:express@4.21.0 ``` It stages the tarball in quarantine and runs the static and supply-chain checks — no `npm install`, no lifecycle scripts, no package code executed. <details> <summary>Sample output</summary> ```text Decision: SAFE Grade: A+ (99/100) No high- or medium-risk indicators were found in the provided evidence. Notes: - INFO npm-vs-github-clean — npm tarball matches the linked GitHub repo at the published version. (15/16 files match GitHub @4.21.0) ``` </details> **2. Read the verdict:** | Verdict | Exit | Meaning | |---|---:|---| | `SAFE` | `0` | No high- or medium-risk indicators; default policy permits promotion. | | `REVIEW` | `3` | Evidence is incomplete or a privileged capability needs human review. | | `BLOCK` | `2` | High-severity cited evidence — reject or investigate. | `SAFE` is not a proof that a package is harmless; static analysis cannot see a payload downloaded only at runtime. See the [threat model](docs/threat-model.md). **3. See a BLOCK on the supplied inert fixture:** ```bash npx --yes pkgxray@1.0.5 --file examples/onboarding-malicious.json --format markdown ``` The fixture is inert source text modeling a split-string SSH-key read and exfiltration — **it is never executed**. It returns `BLOCK` (exit `2`) with the cited file and evidence. **4. Add it to your workflow** — [rechecks & CI](docs/reference.md#monitoring-pkgxray-recheck), [MCP](docs/mcp.md#the-pkgxray-mcp-server), [Hookshot install gate](examples/hookshot/). > **Two execution models.** Default `guard` and `audit` scans are **static** — > package code is never executed. Enumerating an MCP server may spawn it and > `mcp-proxy` runs it behind a gate; the opt-in > [`canary`](docs/canary-threat-model.md) is the one deliberate exception that > *executes* the package in a sandbox to confirm behavior — it can confirm > malice but never prove a package safe. Full boundary: [SECURITY.md](SECURITY.md#scope). ## What it scans & detects **Scans** — `pkgxray guard npm:name@version`, `github:owner/repo`, a local directory, whole lockfiles (`npm`, `yarn`, `pnpm`), MCP servers, and AI-agent extensions. **Detects** — credential theft (incl. split-fragment paths), cloud instance-metadata and secret-store harvesting, prompt injection, Unicode smuggling, base64 payloads and stage-2 loaders, exfiltration, persistence (shell profile, OS scheduler, and injected CI/CD workflows), self-deleting droppers, registry worm replication (install-time `npm publish`), obfuscated computed-arg execution, known CVEs (via OSV, before download), npm↔GitHub artifact divergence, trojaned updates (`recheck`), and MCP capability-surface abuse. The full coverage matrix — and the known download-later blind spot — is in the [threat model](docs/threat-model.md); a side-by-side comparison table is on the [website](https://pkgxray.ca/#catches). ## Verdicts | Verdict | You should | |---|---| | `SAFE` | Install. Only `safe` promotes out of quarantine by default. | | `REVIEW` | Inspect the quarantined copy before promoting. | | `BLOCK` | Do not install. Every finding names the file and evidence. | Exit codes are stable and CI-friendly: **`0`** safe/allow · **`2`** block · **`3`** review. ## Usage ```bash pkgxray guard npm:some-package@1.2.3 [--format json] # vet a package before install pkgxray mcp --package npm:some-mcp-server@1.4.2 npx some-mcp-server # vet an MCP server; --recheck catches the rug-pull pkgxray audit package-lock.json [--deep] # also: yarn.lock, pnpm-lock.yaml, package.json pkgxray recheck package-lock.json # scheduled: non-zero only on a regression ``` One optional `.pkgxray.json` (read by every surface) tunes policy; zero config means maximum strictness. CVEs can never be allowed away, every loosening is printed, and a scan that errors fails closed to `review`. Schema and invariants: [configuration.md](docs/configuration.md) · [`.pkgxray.example.json`](.pkgxray.example.json). ## Integrations One engine behind every entry point. "Works with" means a documented setup guide, not a vendor-endorsed integration. | Where | What it does | Guide | |---|---|---| | Coding agents — Codex, Claude Code, Cursor, Windsurf | Gate installs and expose the audit tools to the agent | [coding-agents.md](docs/integrations/coding-agents.md) | | MCP clients | Vet a server before connect; run pkgxray itself as an MCP server | [mcp.md](docs/mcp.md) | | GitHub Actions / CI | Fail a build when a dependency crosses policy | [github-actions.md](docs/integrations/github-actions.md) | | Install gate — Hookshot | Run `guard` on every package an agent tries to install | [examples/hookshot/](examples/hookshot/) | | Runtime MCP gate | Proxy a live MCP server and gate every tool call | [`mcp-proxy`](docs/mcp.md#per-call-runtime-gate-pkgxray-mcp-proxy) | | Dependency monitoring | Re-vet installed deps and pre-vet upgrades on a schedule | [`recheck`](docs/reference.md#monitoring-pkgxray-recheck) | ## How it compares Run pkgxray *alongside* `npm audit` / OSV-Scanner, not instead of them — they answer *"known CVE?"*. Against tools in the same lane (behavioral supply-chain vetting — Socket.dev, OpenSSF Package Analysis, Cisco MCP Scanner), the full capability comparison is in [docs/comparison.md](docs/comparison.md) and on the [website](https://pkgxray.ca/#comparison). ## Evidence The **zero-heuristic-false-block calibration on the top-1000 most-downloaded packages** is regression-gated in CI ([scope & methodology](docs/benchmark.md)), and the published runs live at [pkgxray.ca/stats](https://pkgxray.ca/stats). That claim is scoped to the most-installed set — not a claim of zero false blocks on every package. ## Documentation | Doc | What it covers | |---|---| | [architecture.md](docs/architecture.md) · [design.md](docs/design.md) | Pipeline, surfaces, principles | | [threat-model.md](docs/threat-model.md) | Scope, blind spots, prompt-injection stance | | [mcp.md](docs/mcp.md) · [mcp-registry.md](docs/mcp-registry.md) | MCP vetting, runtime proxy, registry entry | | [canary-threat-model.md](docs/canary-threat-model.md) | The opt-in behavioral canary | | [configuration.md](docs/configuration.md) · [reference.md](docs/reference.md) | `.pkgxray.json`, severity policy, `recheck`, cache server | | [benchmark.md](docs/benchmark.md) · [comparison.md](docs/comparison.md) | Calibration and how it compares | | [compatibility.md](docs/compatibility.md) · [json-schema.md](docs/json-schema.md) | 1.0 contract, `--format json` schema | Start at the [documentation index](docs/README.md). ## Contributing ```bash npm test # zero-dep node --test suite npm run benchmark # calibration corpus: precision/recall + 0-false-block gate npm run validate:website # regenerate + validate the calibration pages ``` Pull requests are welcome — read [CONTRIBUTING.md](
What people ask about pkgxray
What is adamsjack711-ux/pkgxray?
+
adamsjack711-ux/pkgxray is mcp servers for the Claude AI ecosystem. Pre-install security for AI agents, npm packages, and MCP servers. Zero-dep local static analysis; normal scans never execute package code. It has 11 GitHub stars and was last updated today.
How do I install pkgxray?
+
You can install pkgxray by cloning the repository (https://github.com/adamsjack711-ux/pkgxray) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is adamsjack711-ux/pkgxray safe to use?
+
adamsjack711-ux/pkgxray has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.
Who maintains adamsjack711-ux/pkgxray?
+
adamsjack711-ux/pkgxray is maintained by adamsjack711-ux. The last recorded GitHub activity is from today, with 0 open issues.
Are there alternatives to pkgxray?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy pkgxray 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/adamsjack711-ux-pkgxray)<a href="https://claudewave.com/repo/adamsjack711-ux-pkgxray"><img src="https://claudewave.com/api/badge/adamsjack711-ux-pkgxray" alt="Featured on ClaudeWave: adamsjack711-ux/pkgxray" 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.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!