Code Quality Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Code Quality Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Hybrid Code Quality Analysis - Combines logic-based checks with AI-powered deep analysis
MCP (Model Context Protocol) system for code quality analysis. Supports two modes:
npm install
npm run buildnpm startAdd to ~/.config/Claude/claude_desktop_config.json:
{
"mcpServers": {
"code-quality": {
"command": "node",
"args": ["/absolute/path/to/code-quality-mcp/dist/index.js"]
}
}
}#### 1. check_quality - Full Code Quality Check
{
"tool": "check_quality",
"arguments": {
"projectPath": ".",
"deepAnalysis": false, // true = AI mode
"checkUnusedCode": true,
"checkComplexity": false, // requires AI
"checkSecurity": false, // requires AI
"page": 1, // pagination
"pageSize": 50 // items per page
}
}Returns: Complete list of issues with pagination
#### 2. get_smart_summary - Smart Summary ⭐
Instead of 500 issues, get a focused summary:
{
"tool": "get_smart_summary",
"arguments": {
"projectPath": "."
}
}Returns:
📊 Score: 68/100
📈 Issues: 500 (120 critical)
⏱️ Fix Time: 2 days
🔥 Top Problems:
• unused-code: 300 (60%)
• security: 50 (10%)
📁 Hotspot Files:
🔴 UserService.ts - 45 issues#### 3. get_quick_wins - Quick Wins ⚡
Get only actions that provide maximum impact in minimum time:
{
"tool": "get_quick_wins",
"arguments": {
"projectPath": "."
}
}Returns:
⚡ Quick Wins:
1. Remove 50 unused vars (10 min) → +15 points
2. Fix 30 console.log (5 min) → +8 points
3. Translate Hebrew comments (15 min) → +5 points
Total: 30 minutes → +28 points!#### 4. get_trends - Progress Tracking 📈
See how code quality improves over time:
{
"tool": "get_trends",
"arguments": {
"projectPath": "."
}
}Returns:
📈 Trends:
✅ Score: 45 → 68 (+23)
✅ Fixed: 120 issues
⚠️ New: 15 issues
Improving:
• unused-code: 300 → 180 (-120)
• security: 10 → 5 (-5)
Degrading:
• code-style: 50 → 65 (+15)#### 5. analyze_project - Project Type Detection
{
"tool": "analyze_project",
"arguments": {
"projectPath": ".",
"deep": true
}
}#### 6. get_recommendations - Quick Recommendations
{
"tool": "get_recommendations",
"arguments": {
"projectPath": ".",
"language": "en" // or "he" for Hebrew
}
}| Feature | Fast Mode | Deep Mode |
|---|---|---|
| Speed | ~20ms | ~1000ms |
| Cost | Free | API calls |
| Accuracy | Good | Excellent |
| AI insights | ❌ | ✅ |
When to use Fast Mode:
When to use Deep Mode:
✅ Smart Ignore Patterns - Automatically skips:
node_modules, build, dist, .gitandroid/gradle, ios/Pods, native build folders✅ Pagination - Handle large projects with many issues
✅ Smart Summaries - Get actionable insights instead of overwhelming lists
✅ Quick Wins - Find high-impact, low-effort fixes
✅ Trend Tracking - Monitor code quality improvements over time
Built with ❤️ using MCP and Claude
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.