home / mcp / vibecheck mcp server
Provides AI-powered security audits by combining MITRE CWE data and npm audit for codebase vulnerabilities.
Configuration
View docs{
"mcpServers": {
"bpn-solutions-vibecheck-mcp": {
"command": "npx",
"args": [
"-y",
"vibecheck-audit-mcp"
]
}
}
}VibeCheck MCP Server provides AI-powered security auditing for codebases by analyzing code with real-time vulnerability data from MITRE CWE and npm audit, all accessible through MCP clients for streamlined workflows.
You can run the VibeCheck MCP Server from an MCP client to perform comprehensive security audits on your codebase. The server leverages real-time CWE data and package vulnerability checks to identify authentication, API, and secrets risks, as well as dependency issues. Use it for periodic scans, pre-merge checks, or continuous integration security gates.
Prerequisites: ensure you have a modern Node.js and npm environment installed on your workstation or CI runner.
Option 1: Claude Code (Recommended) from the MCP marketplace is the quickest path to get started.
/plugin marketplace add BPN-Solutions/vibecheck-mcp
/plugin install vibecheck@vibecheckAdd the MCP server configuration to your Claude Desktop or equivalent MCP client configuration as shown.
{
"mcpServers": {
"vibecheck": {
"command": "npx",
"args": ["-y", "vibecheck-audit-mcp"]
}
}
}Clone the repository, install dependencies, and build the server locally.
git clone https://github.com/BPN-Solutions/vibecheck-mcp.git
cd vibecheck-mcp
npm install && npm run buildStart the MCP server through your chosen MCP client or by invoking the runtime as shown in the installation options. The runtime will initialize the audit tooling and connect to the configured data sources.
During setup, you do not need API keys for basic operation. The server uses MCP-based integration to run scans and report findings with CWE/OWASP references and remediation steps.
Performs a full AI-powered security audit across code files and dependencies, enriches findings with CWE/OWASP references and remediation steps.
Runs a quick dependency scan using npm audit to identify vulnerable npm packages.