Server data from the Official MCP Registry
Audit a package-lock.json for integrity tampering and risky install scripts before npm install.
Audit a package-lock.json for integrity tampering and risky install scripts before npm install.
lockfile-guardian is a well-architected security auditing tool with clean code, proper authentication patterns for its MCP/HTTP API layer, and permissions well-aligned with its purpose. No critical vulnerabilities detected. Minor code quality observations exist but do not materially impact security. Supply chain analysis found 4 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
7 files analyzed Β· 10 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-baneado98-lockfile-guardian": {
"args": [
"-y",
"lockfile-guardian-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Audit your package-lock.json for supply-chain attacks BEFORE you run npm install.
npx -y lockfile-guardian-mcp # MCP server, ready for Claude / Cursor / any agent
Your lockfile is the artifact npm install actually executes β the fully
resolved dependency tree, with integrity hashes and install-script flags.
lockfile-guardian cross-checks every resolved entry against the live npm
registry and tells you what is about to run on your machine.
It completes the guardian trio β each one audits a different layer:
package-lock.json.| π΄ Integrity mismatch | the lockfile's sha512 doesn't match what npm serves for that exact version β the resolved tarball was swapped under you (lockfile poisoning). BLOCK. |
| π΄ Not on registry | the lockfile points at a package/version that doesn't exist or was unpublished. BLOCK. |
| π New install script | a newly-introduced dependency that runs preinstall/install/postinstall β a first-seen dep with an install script is the Axios / plain-crypto-js attack signal. REVIEW. |
| π Hidden gyp build | native build via binding.gyp / node-gyp, which executes code on install and dodges plain postinstall monitoring. REVIEW. |
| π Fresh + executing | a version published in the last 30 days that runs an install script β disproportionately used in supply-chain attacks. REVIEW. |
Verdicts: π’ CLEAN Β· π REVIEW Β· π΄ BLOCK.
PR-diff mode (the differentiator)
Pass the previous lockfile too and
lockfile-guardianaudits only what the change introduces. A first-seen dependency that runs an install script is the single highest-signal supply-chain tell β this surfaces it in one call, exactly where a code-review or CI gate needs it.
It runs read-only: it parses the lockfile and reads npm registry metadata. It never installs or executes anything.
Any MCP-compatible agent (Claude Desktop, Claude Code, Cursor, β¦) can call it.
{
"mcpServers": {
"lockfile-guardian": { "command": "npx", "args": ["-y", "lockfile-guardian-mcp"] }
}
}
Tools:
audit_lockfile β give it a package-lock.json (and optionally the previous one); get a CLEAN / REVIEW / BLOCK verdict per package.check_install_scripts β for an explicit list of packages, report which run install / native-build scripts (live registry manifest).verify_integrity β verify one pinned package: integrity match, install scripts, version age.POST /audit { "lockfile": "{β¦package-lock.jsonβ¦}", "previous_lockfile": "{β¦}" }
POST /scripts { "names": ["sharp@0.33.0","esbuild","node-sass"] }
GET /verify?name=lodash&version=4.17.21&integrity=sha512-...
POST /mcp # MCP-over-HTTP
Hosted at https://lockfile-guardian.vercel.app Β· try
/verify?name=esbuild&version=0.21.5
(runs a postinstall) vs
/verify?name=lodash&version=4.17.21
(clean).
The /pro/* routes are gated by x402. Your agent pays
$0.02 USDC per call automatically β no sign-up, no API key. Settles on-chain
to the operator wallet (Base). The server holds no private key.
POST /pro/audit { "lockfile": "...", "previous_lockfile": "..." } # 402 β pay β result
A coding agent reading the lockfile alone cannot know:
sha512 still matches what npm serves for that version
(an integrity mismatch is invisible without the live registry),hasInstallScript can be absent or stale),lockfile-guardian fetches the live per-version manifest and integrity from the
registry and applies a curated set of 2026 supply-chain rules. That's data +
rules the model can't fabricate.
MIT Β· Part of the guardian trio. Issues and PRs welcome.
Be the first to review this server!
by Toleno Β· Developer Tools
Toleno Network MCP Server β Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace Β· Developer Tools
Create, build, and publish Python MCP servers to PyPI β conversationally.
by Microsoft Β· Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption