Best for
- Developers who want security guidance while coding fast
- Users of AI coding tools like Claude Code and Cursor
- Teams using Jira and Confluence for issue tracking
AI Security Crew is a practical MCP server tailored for vibe coding, offering security review, dependency scanning, and threat modeling. It integrates OWASP guidelines and supports Jira/Confluence integration. It suits individuals and teams who prioritize security while developing rapidly, but users should be aware of configuration requirements and limitations in reachability analysis.
AI Security Crew is a lightweight MCP server for security reviews built for vibe coding. It injects security requirements before code generation, scans dependencies for CVEs, and verifies generated code without breaking your coding rhythm. It provides tools for security reviews, Jira ticket assessment, threat modeling, package verification, dependency scanning, and code security verification. It also works as a Claude Code plugin with commands /sec-review, /verify-code, and /threat-model.
{
"mcpServers": {
"sec-review": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"JIRA_URL",
"-e",
"JIRA_USERNAME",
"-e",
"JIRA_API_TOKEN",
"-e",
"CONFLUENCE_URL",
"-e",
"CONFLUENCE_USERNAME",
"-e",
"CONFLUENCE_API_TOKEN",
"mcp-security-review:latest"
],
"env": {
"PATH": "/usr/local/bin:/usr/bin:/bin",
"JIRA_URL": "https://your-domain.atlassian.net",
"JIRA_USERNAME": "[email protected]",
"JIRA_API_TOKEN": "your-token"
}
}
}
}