A lightweight dependency vulnerability audit tool that works as both a CLI and an MCP Server — so your AI coding assistant can find and fix security issues for you. The Problem You run npm audit . You get a wall of text. Some vulnerabilities are direct, some are buried five levels deep in your dependency tree. The output tells you what's vulnerable, but figuring out how it got there and what to do about it takes manual effort. Now multiply that across every project you maintain. What It Does audit-mcp-cli runs a full dependency vulnerability audit and produces a clean, structured report with complete dependency chains — showing you the exact path from your package.json to each vulnerable package. npx audit-mcp-cli Enter fullscreen mode Exit fullscreen mode That's it. It auto-detects your package manager (npm or pnpm), runs the audit, and generates a Markdown or HTML report. But Here's the Interesting Part It also runs as an MCP Server .…