loading…
Search for a command to run...
loading…
An orchestrator that coordinates multiple security and quality tools like Semgrep and ESLint to provide comprehensive code analysis and scoring. It enables user
An orchestrator that coordinates multiple security and quality tools like Semgrep and ESLint to provide comprehensive code analysis and scoring. It enables users to perform vulnerability scanning, architecture metrics, and impact analysis through CLI, REST, or MCP interfaces.
MCP orchestrator for code security, quality, and architecture analysis. This tool coordinates multiple MCP servers to provide comprehensive code analysis.
┌─────────────────────────────────────────────────────────────────────┐
│ Interfaces │
├─────────────┬─────────────────────┬─────────────────────────────────┤
│ CLI │ REST API │ MCP Server (for Claude) │
└─────────────┴─────────────────────┴─────────────────────────────────┘
│
┌─────────▼─────────┐
│ MCP ORCHESTRATOR │
│ - Client Manager │
│ - Job Scheduler │
│ - Retry Logic │
│ - Normalizer │
│ - Score Engine │
└─────────┬─────────┘
│
┌─────────────────────┼─────────────────────┐
│ │ │
┌────▼────┐ ┌─────▼─────┐ ┌────▼────┐
│ Semgrep │ │ ESLint │ │ Snyk │
│ Trivy │ │ SonarQube │ │npm audit│
└─────────┘ └───────────┘ └─────────┘
npm install -g mcp-code-analyzer
Or run directly with npx:
npx mcp-code-analyzer analyze ./my-project
# Analyze a local project
mcp-analyze analyze ./my-project
# Analyze a GitHub repository
mcp-analyze analyze https://github.com/user/repo
# Specify scanners
mcp-analyze analyze ./my-project --scanners security,quality
# Generate report
mcp-analyze report <analysis-id> --format md
# View history
mcp-analyze history ./my-project
# Compare analyses
mcp-analyze compare <id1> <id2>
# Start REST API
mcp-analyze serve --port 3000
# Start MCP server (for Claude)
mcp-analyze mcp
Add to your Claude Desktop config:
{
"mcpServers": {
"code-analyzer": {
"command": "npx",
"args": ["-y", "mcp-code-analyzer", "mcp"]
}
}
}
Claude Code supports MCP servers at two scopes:
Create a .mcp.json file in your project root:
{
"mcpServers": {
"mcp-security": {
"command": "node",
"args": ["/path/to/mcp_security/dist/cli/index.js", "mcp"],
"cwd": "/path/to/mcp_security"
}
}
}
This makes the MCP server available only when working in that specific project.
Add to your ~/.claude.json file:
{
"mcpServers": {
"mcp-security": {
"command": "node",
"args": ["/path/to/mcp_security/dist/cli/index.js", "mcp"],
"cwd": "/path/to/mcp_security"
}
}
}
This makes the MCP server available globally across all your projects.
mcp__mcp-security__<tool_name>| Claude Code Tool | Description |
|---|---|
mcp__mcp-security__analyze_project |
Run full analysis on a project |
mcp__mcp-security__get_analysis_report |
Get detailed report |
mcp__mcp-security__compare_analyses |
Compare two analyses |
mcp__mcp-security__list_project_analyses |
View analysis history |
mcp__mcp-security__get_findings |
Get filtered findings |
mcp__mcp-security__get_code_graph |
Get semantic code graph |
mcp__mcp-security__analyze_impact |
Analyze impact of changes |
| Tool | Description |
|---|---|
analyze_project |
Run full analysis on a project |
get_analysis_report |
Get detailed report |
compare_analyses |
Compare two analyses |
list_project_analyses |
View analysis history |
get_findings |
Get filtered findings |
get_code_graph |
Get semantic code graph |
analyze_impact |
Analyze impact of changes |
Each category is scored 0-100:
| Category | Weight |
|---|---|
| Security | 35% |
| Quality | 25% |
| Dependencies | 25% |
| Architecture | 15% |
Grades: A (90-100), B (80-89), C (70-79), D (60-69), F (<60)
Create .mcp-analyzer.json in your project root:
{
"servers": {
"semgrep": { "enabled": true },
"eslint": { "enabled": true },
"snyk": { "enabled": false }
},
"scoring": {
"weights": {
"security": 0.4,
"quality": 0.3,
"dependencies": 0.2,
"architecture": 0.1
}
}
}
# Install dependencies
npm install
# Build
npm run build
# Run in development
npm run dev
# Run tests
npm test
# Type check
npm run typecheck
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mcp-code-analyzer": {
"command": "npx",
"args": []
}
}
}