SonarQube Integration
STDIOMCP server integrating with SonarQube to provide AI access to code quality metrics.
MCP server integrating with SonarQube to provide AI access to code quality metrics.
A Model Context Protocol (MCP) server that integrates with SonarQube to provide AI assistants with access to code quality metrics, issues, and analysis results.
files
), directories (directories
), or code scopes (scopes
)The SonarQube MCP Server enables AI assistants to interact with SonarQube's code quality analysis capabilities through the Model Context Protocol. This integration allows AI assistants to:
For SonarCloud:
For SonarQube:
{ "mcpServers": { "sonarqube": { "command": "npx", "args": ["-y", "sonarqube-mcp-server@latest"], "env": { "SONARQUBE_URL": "https://sonarcloud.io", "SONARQUBE_TOKEN": "your-token-here", "SONARQUBE_ORGANIZATION": "your-org (for SonarCloud)" } } } }
Alternative authentication methods:
Using Basic Authentication:
{ "mcpServers": { "sonarqube": { "command": "npx", "args": ["-y", "sonarqube-mcp-server@latest"], "env": { "SONARQUBE_URL": "https://your-sonarqube.com", "SONARQUBE_USERNAME": "your-username", "SONARQUBE_PASSWORD": "your-password" } } } }
Using System Passcode:
{ "mcpServers": { "sonarqube": { "command": "npx", "args": ["-y", "sonarqube-mcp-server@latest"], "env": { "SONARQUBE_URL": "https://your-sonarqube.com", "SONARQUBE_PASSCODE": "your-system-passcode" } } } }
Ask Claude to analyze your SonarQube projects:
"List all my SonarQube projects"
"Show me critical issues in project xyz"
"What's the code coverage for project xyz?"
"Check the quality gate status for project xyz"
"Retrieve security hotspots in project xyz and create a plan to address them"
"Retrieve the issues for pr 123 in project xyz and create a plan to address them"
The simplest way to use the SonarQube MCP Server is through npx:
{ "mcpServers": { "sonarqube": { "command": "npx", "args": ["-y", "sonarqube-mcp-server@latest"], "env": { "SONARQUBE_URL": "https://sonarqube.example.com", "SONARQUBE_TOKEN": "your-sonarqube-token", "SONARQUBE_ORGANIZATION": "your-organization-key" } } } }
Docker provides the most reliable deployment method by packaging all dependencies and ensuring consistent behavior across different environments.
For stdio transport (Claude Desktop):
{ "mcpServers": { "sonarqube": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "SONARQUBE_URL", "-e", "SONARQUBE_TOKEN", "-e", "SONARQUBE_ORGANIZATION", "sapientpants/sonarqube-mcp-server:latest" ], "env": { "SONARQUBE_URL": "https://sonarqube.example.com", "SONARQUBE_TOKEN": "your-sonarqube-token", "SONARQUBE_ORGANIZATION": "your-organization-key" } } } }
For SSE transport (Web applications):
docker run -d \ --name sonarqube-mcp \ -p 3000:3000 \ -e SONARQUBE_URL="https://sonarqube.example.com" \ -e SONARQUBE_TOKEN="your-token" \ -e SONARQUBE_ORGANIZATION="your-org" \ -e TRANSPORT="sse" \ sapientpants/sonarqube-mcp-server:latest
Official images are available on Docker Hub: sapientpants/sonarqube-mcp-server
Available tags:
latest
- Latest stable release1.3.2
- Specific version (recommended for production)1.3
- Latest patch version of 1.3.x1
- Latest minor version of 1.x.xPull the image:
docker pull sapientpants/sonarqube-mcp-server:latest
With logging enabled:
{ "mcpServers": { "sonarqube": { "command": "docker", "args": [ "run", "-i", "--rm", "-v", "/tmp/sonarqube-logs:/logs", "-e", "SONARQUBE_URL", "-e", "SONARQUBE_TOKEN", "-e", "SONARQUBE_ORGANIZATION", "-e", "LOG_FILE=/logs/sonarqube-mcp.log", "-e", "LOG_LEVEL=INFO", "sapientpants/sonarqube-mcp-server:latest" ], "env": { "SONARQUBE_URL": "https://sonarqube.example.com", "SONARQUBE_TOKEN": "your-sonarqube-token", "SONARQUBE_ORGANIZATION": "your-organization-key" } } } }
Using Docker Compose:
version: '3.8' services: sonarqube-mcp: image: sapientpants/sonarqube-mcp-server:latest environment: - SONARQUBE_URL=https://sonarqube.example.com - SONARQUBE_TOKEN=${SONARQUBE_TOKEN} - SONARQUBE_ORGANIZATION=${SONARQUBE_ORGANIZATION} - LOG_FILE=/logs/sonarqube-mcp.log - LOG_LEVEL=INFO volumes: - ./logs:/logs stdin_open: true tty: true
If you need to customize the server, you can build your own image:
# Clone the repository git clone https://github.com/sapientpants/sonarqube-mcp-server.git cd sonarqube-mcp-server # Build the Docker image docker build -t my-sonarqube-mcp-server . # Run your custom image docker run -i --rm \ -e SONARQUBE_URL="https://sonarqube.example.com" \ -e SONARQUBE_TOKEN="your-token" \ my-sonarqube-mcp-server
Version Pinning: Always use specific version tags in production:
sapientpants/sonarqube-mcp-server:1.3.2
Resource Limits: Set appropriate resource limits:
docker run -i --rm \ --memory="256m" \ --cpus="0.5" \ sapientpants/sonarqube-mcp-server:1.3.2
Security: Run as non-root user (default in our image):
docker run -i --rm \ --user node \ sapientpants/sonarqube-mcp-server:1.3.2
Health Checks: The container includes a health check that verifies the Node.js process is running
For development or customization:
{ "mcpServers": { "sonarqube": { "command": "node", "args": ["/path/to/sonarqube-mcp-server/dist/index.js"], "env": { "SONARQUBE_URL": "https://sonarqube.example.com", "SONARQUBE_TOKEN": "your-sonarqube-token", "SONARQUBE_ORGANIZATION": "your-organization-key" } } } }
Variable | Description | Required | Default |
---|---|---|---|
Token Authentication | |||
SONARQUBE_TOKEN | Authentication token for SonarQube API access | ✅ Yes* | - |
Basic Authentication | |||
SONARQUBE_USERNAME | Username for HTTP Basic authentication | ✅ Yes* | - |
SONARQUBE_PASSWORD | Password for HTTP Basic authentication | ✅ Yes* | - |
System Passcode | |||
SONARQUBE_PASSCODE | System passcode for SonarQube authentication | ✅ Yes* | - |
*One authentication method is required. Token authentication takes priority if multiple methods are configured.
Variable | Description | Required | Default |
---|---|---|---|
SONARQUBE_URL | URL of your SonarQube instance | ❌ No | https://sonarcloud.io |
SONARQUBE_ORGANIZATION | Organization key (required for SonarCloud) | ❌ No** | - |
LOG_FILE | Path to write log files (e.g., /tmp/sonarqube-mcp.log ) | ❌ No | - |
LOG_LEVEL | Minimum log level (DEBUG, INFO, WARN, ERROR) | ❌ No | DEBUG |
**Required when using SonarCloud
The server supports three authentication methods, with important differences between SonarQube versions:
SonarQube 10.0+ (Bearer Token)
{ "env": { "SONARQUBE_TOKEN": "your-token-here" } }
SonarQube < 10.0 (Token as Username)
SONARQUBE_USERNAME
with the token value:
{ "env": { "SONARQUBE_USERNAME": "your-token-here" } }
{ "env": { "SONARQUBE_USERNAME": "your-username", "SONARQUBE_PASSWORD": "your-password" } }
{ "env": { "SONARQUBE_PASSCODE": "your-system-passcode" } }
Note: Token authentication takes priority if multiple authentication methods are configured. The server will automatically use the appropriate authentication strategy based on your SonarQube version.
For SonarCloud:
SONARQUBE_URL
to https://sonarcloud.io
SONARQUBE_ORGANIZATION
is requiredFor SonarQube Server:
SONARQUBE_URL
to your instance URLSONARQUBE_ORGANIZATION
is typically not neededThe server supports file-based logging for debugging and monitoring. Since MCP servers use stdout for protocol communication, logs are written to a file instead of stdout/stderr to avoid interference.
Enable Logging:
{ "mcpServers": { "sonarqube": { "command": "npx", "args": ["-y", "sonarqube-mcp-server@latest"], "env": { "SONARQUBE_URL": "https://sonarcloud.io", "SONARQUBE_TOKEN": "your-token-here", "SONARQUBE_ORGANIZATION": "your-org", "LOG_FILE": "/tmp/sonarqube-mcp.log", "LOG_LEVEL": "INFO" } } } }
Log Levels:
DEBUG
: Detailed information for debuggingINFO
: General information about server operationWARN
: Warning events that might lead to issuesERROR
: Error events (server continues running)Example Log Output:
2024-01-15T10:30:45.123Z INFO [index] Starting SonarQube MCP server
2024-01-15T10:30:45.234Z INFO [index] Environment variables validated successfully
2024-01-15T10:30:45.345Z INFO [index] SonarQube client created successfully
2024-01-15T10:30:45.456Z INFO [index] SonarQube MCP server started successfully
2024-01-15T10:30:50.123Z DEBUG [index] Handling SonarQube projects request
2024-01-15T10:30:50.567Z INFO [index] Successfully retrieved projects {"count": 5}
projects
List all SonarQube projects with pagination support.
Parameters:
page
(optional): Page number for results paginationpage_size
(optional): Number of items per pagemetrics
Get available metrics from SonarQube.
Parameters:
page
(optional): Page number for results paginationpage_size
(optional): Number of items per pagemeasures_component
Get measures for a specific component.
Parameters:
component
(required): Component keymetric_keys
(required): Array of metric keysadditional_fields
(optional): Additional fields to returnbranch
(optional): Branch namepull_request
(optional): Pull request keyperiod
(optional): Period indexmeasures_components
Get measures for multiple components.
Parameters:
component_keys
(required): Array of component keysmetric_keys
(required): Array of metric keysmeasures_component
page
(optional): Page numberpage_size
(optional): Items per pagemeasures_history
Get measures history for a component.
Parameters:
component
(required): Component keymetrics
(required): Array of metric keysfrom
(optional): Start date (YYYY-MM-DD)to
(optional): End date (YYYY-MM-DD)branch
(optional): Branch namepull_request
(optional): Pull request keypage
(optional): Page numberpage_size
(optional): Items per pageissues
Search and filter SonarQube issues by severity, status, assignee, tag, file path, and more. Critical for dashboards, targeted clean-up sprints, security audits, and regression testing. Supports faceted search for aggregations.
Component/File Path Filters:
project_key
(optional): Single project key (backward compatible)projects
(optional): Array of project keys for multi-project analysiscomponent_keys
(optional): Array of component keys (file paths, directories, or modules) - use this to filter issues by specific files or folderscomponents
(optional): Alias for component_keyson_component_only
(optional): Boolean to return only issues on specified components, not sub-componentsBranch/PR Support:
branch
(optional): Branch name for branch analysispull_request
(optional): Pull request ID for PR analysisIssue Filters:
issues
(optional): Array of specific issue keys to retrieveseverity
(optional): Single severity (deprecated, use severities)severities
(optional): Array of severities (INFO, MINOR, MAJOR, CRITICAL, BLOCKER)statuses
(optional): Array of statuses (OPEN, CONFIRMED, REOPENED, RESOLVED, CLOSED)resolutions
(optional): Array of resolutions (FALSE-POSITIVE, WONTFIX, FIXED, REMOVED)resolved
(optional): Boolean filter for resolved/unresolvedtypes
(optional): Array of types (CODE_SMELL, BUG, VULNERABILITY, SECURITY_HOTSPOT)Clean Code Taxonomy (SonarQube 10.x+):
clean_code_attribute_categories
(optional): Array (ADAPTABLE, CONSISTENT, INTENTIONAL, RESPONSIBLE)impact_severities
(optional): Array (HIGH, MEDIUM, LOW)impact_software_qualities
(optional): Array (MAINTAINABILITY, RELIABILITY, SECURITY)issue_statuses
(optional): Array of new issue status valuesRules and Tags:
rules
(optional): Array of rule keystags
(optional): Array of issue tags - essential for security audits, regression testing, and categorized analysisDate Filters:
created_after
(optional): Issues created after date (YYYY-MM-DD)created_before
(optional): Issues created before date (YYYY-MM-DD)created_at
(optional): Issues created on date (YYYY-MM-DD)created_in_last
(optional): Issues created in last period (e.g., "30d", "1m")Assignment:
assigned
(optional): Boolean filter for assigned/unassignedassignees
(optional): Array of assignee logins - critical for targeted clean-up sprints and workload analysisauthor
(optional): Single author loginauthors
(optional): Array of author loginsSecurity Standards:
cwe
(optional): Array of CWE identifiersowasp_top10
(optional): Array of OWASP Top 10 categoriesowasp_top10_v2021
(optional): Array of OWASP Top 10 2021 categoriessans_top25
(optional): Array of SANS Top 25 categoriessonarsource_security
(optional): Array of SonarSource security categoriessonarsource_security_category
(optional): Additional security categoriesOther Filters:
languages
(optional): Array of programming languagesfacets
(optional): Array of facets to aggregatefacet_mode
(optional): Facet aggregation mode ('effort' or 'count')since_leak_period
(optional): Boolean for leak period filter (deprecated)in_new_code_period
(optional): Boolean for new code period filterSorting:
s
(optional): Sort field (e.g., 'SEVERITY', 'CREATION_DATE', 'UPDATE_DATE')asc
(optional): Boolean for ascending sort direction (default: false)Response Control:
additional_fields
(optional): Array of additional fields to includepage
(optional): Page number for paginationpage_size
(optional): Number of items per pageFaceted Search (Dashboard Support):
facets
(optional): Array of facets to compute for aggregations. Available facets: severities, statuses, resolutions, rules, tags, types, authors, assignees, languages, etc.facet_mode
(optional): Mode for facet computation: 'count' (number of issues) or 'effort' (remediation effort)Example Use Cases:
{ "project_key": "my-project", "facets": ["severities", "assignees", "tags"], "facet_mode": "count" }
{ "project_key": "my-project", "component_keys": ["src/auth/", "src/security/"], "tags": ["security", "vulnerability"], "severities": ["CRITICAL", "BLOCKER"], "statuses": ["OPEN", "REOPENED"] }
{ "project_key": "my-project", "assignees": ["[email protected]", "[email protected]"], "statuses": ["OPEN", "CONFIRMED"], "facets": ["severities", "types"], "facet_mode": "effort" }
{ "project_key": "my-project", "component_keys": ["src/main/java/com/example/PaymentService.java"], "on_component_only": true }
hotspots
Search for security hotspots with specialized filters for security review workflows.
Parameters:
project_key
(optional): Project key to filter hotspotsbranch
(optional): Branch name for branch analysispull_request
(optional): Pull request ID for PR analysisstatus
(optional): Hotspot status (TO_REVIEW, REVIEWED)resolution
(optional): Hotspot resolution (FIXED, SAFE)files
(optional): Array of file paths to filterassigned_to_me
(optional): Boolean to show only assigned hotspotssince_leak_period
(optional): Boolean for leak period filterin_new_code_period
(optional): Boolean for new code period filterpage
(optional): Page number for paginationpage_size
(optional): Number of items per pagehotspot
Get detailed information about a specific security hotspot including security context.
Parameters:
hotspot_key
(required): The unique key of the hotspotReturns:
update_hotspot_status
Update the status of a security hotspot (requires appropriate permissions).
Parameters:
hotspot_key
(required): The unique key of the hotspotstatus
(required): New status (TO_REVIEW, REVIEWED)resolution
(optional): Resolution when status is REVIEWED (FIXED, SAFE)comment
(optional): Comment explaining the status changequality_gates
List available quality gates.
No parameters required
quality_gate
Get quality gate conditions.
Parameters:
id
(required): Quality gate IDquality_gate_status
Get project quality gate status.
Parameters:
project_key
(required): Project keybranch
(optional): Branch namepull_request
(optional): Pull request keysource_code
View source code with issues highlighted.
Parameters:
key
(required): File keyfrom
(optional): Start lineto
(optional): End linebranch
(optional): Branch namepull_request
(optional): Pull request keyscm_blame
Get SCM blame information for source code.
Parameters:
source_code
system_health
Get the health status of the SonarQube instance.
No parameters required
system_status
Get the status of the SonarQube instance.
No parameters required
system_ping
Ping the SonarQube instance to check if it is up.
No parameters required
markIssueFalsePositive
Mark an issue as false positive.
Parameters:
issue_key
(required): The key of the issue to markcomment
(optional): Comment explaining why it's a false positivemarkIssueWontFix
Mark an issue as won't fix.
Parameters:
issue_key
(required): The key of the issue to markcomment
(optional): Comment explaining why it won't be fixedmarkIssuesFalsePositive
Mark multiple issues as false positive in bulk.
Parameters:
issue_keys
(required): Array of issue keys to markcomment
(optional): Comment applying to all issuesmarkIssuesWontFix
Mark multiple issues as won't fix in bulk.
Parameters:
issue_keys
(required): Array of issue keys to markcomment
(optional): Comment applying to all issuesaddCommentToIssue
Add a comment to a SonarQube issue.
Parameters:
issue_key
(required): The key of the issue to comment ontext
(required): The comment text (supports markdown formatting)assignIssue
Assign a SonarQube issue to a user or unassign it.
Parameters:
issueKey
(required): The key of the issue to assignassignee
(optional): Username of the assignee. Leave empty to unassign the issueExample usage:
{ "issueKey": "PROJECT-123", "assignee": "john.doe" }
"List all my SonarQube projects"
"Show me the code coverage for project xyz"
"What metrics are available for analysis?"
"Show me all critical bugs in project abc"
"Find security vulnerabilities in the main branch"
"List all code smells created in the last week"
"Show unresolved issues assigned to john.doe"
"Analyze issues in the feature/new-login branch"
"Compare issues between main and develop branches"
"Find issues across multiple projects: proj1, proj2, proj3"
"Show me issues sorted by severity in descending order"
"Find all issues with clean code impact on reliability"
"Assign issue PROJECT-123 to john.doe"
"Unassign issue PROJECT-456"
"Mark issue ABC-789 as false positive with comment: 'Test code only'"
"Add comment to issue XYZ-111: 'Fixed in commit abc123'"
"Bulk mark issues DEF-222, DEF-223 as won't fix"
"Check the quality gate status for my main project"
"Show me the code coverage history for the last month"
"What are the quality gate conditions?"
"Compare metrics between develop and main branches"
"Find all security hotspots that need review in project xyz"
"Show me hotspots in the authentication module"
"Get details for hotspot HSP-12345"
"List all hotspots assigned to me"
"Mark hotspot HSP-12345 as safe with explanation"
"Find hotspots in the new code period"
"Show security hotspots in pull request #42"
"Show me the source code for file xyz with issues highlighted"
"Get blame information for the problematic file"
"View issues in the authentication module"
"Check if SonarQube is running"
"What's the health status of the SonarQube instance?"
"Show me the system status"
The SonarQube MCP Server follows a modular architecture:
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ Claude Desktop │────▶│ MCP Server │────▶│ SonarQube API │
│ (MCP Client) │◀────│ (index.ts) │◀────│ │
└─────────────────┘ └──────────────────┘ └─────────────────┘
│
▼
┌──────────────────┐
│ SonarQube │
│ Client │
│ (sonarqube.ts) │
└──────────────────┘
│
▼
┌──────────────────┐
│ API Module │
│ (api.ts) │
└──────────────────┘
index.ts
): Main entry point that initializes the MCP server and registers all available toolssonarqube.ts
): Handles business logic and parameter transformationapi.ts
): Manages HTTP requests to the SonarQube APIgit clone https://github.com/sapientpants/sonarqube-mcp-server.git cd sonarqube-mcp-server
pnpm install
pnpm build
# Install dependencies pnpm install # Build the project pnpm build # Run in development mode with auto-reload pnpm dev # Run tests pnpm test # Run tests with coverage pnpm test:coverage # Lint the code pnpm lint # Fix linting issues pnpm lint:fix # Check types pnpm check-types # Format code pnpm format # Run all validations pnpm validate # Inspect MCP schema pnpm inspect
The project uses Jest for testing with:
nock
Run specific test files:
NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest src/__tests__/file-name.test.ts
The project maintains high code quality through:
SONARQUBE_ORGANIZATION
to your configurationSONARQUBE_URL
and network connectivityLOG_FILE
and check the log file for detailed error messagesQ: Can I use this with both SonarQube and SonarCloud?
A: Yes! Set the appropriate SONARQUBE_URL
and include SONARQUBE_ORGANIZATION
for SonarCloud.
Q: What permissions does my token need? A: The token needs "Execute Analysis" permission and access to the projects you want to analyze.
Q: How do I filter issues by multiple criteria?
A: The issues
tool supports extensive filtering. You can combine multiple parameters like severity, type, status, and date ranges.
Q: Can I analyze pull requests?
A: Yes! Many tools support branch
and pull_request
parameters for branch and PR analysis.
Error: "Authentication failed"
Error: "No SonarQube authentication configured"
SONARQUBE_TOKEN
for token-based authentication (recommended)SONARQUBE_USERNAME
and SONARQUBE_PASSWORD
for basic authenticationSONARQUBE_PASSCODE
for system passcode authenticationError: "Access denied"
Error: "Resource not found"
Error: "Connection refused"
Error: "Network error" or timeout errors
Error: "Rate limit exceeded"
Error: "Invalid SONARQUBE_URL"
https://sonarcloud.io
https://sonarqube.example.com
sonarcloud.io
(missing protocol)https://sonarqube.example.com/
(trailing slash)Enable Debug Logging:
export LOG_LEVEL=DEBUG
Check Environment Variables:
echo $SONARQUBE_URL echo $SONARQUBE_TOKEN echo $SONARQUBE_ORGANIZATION
Test Connection:
Use the ping
tool to verify connectivity:
# In your MCP client sonarqube.ping
Verify Permissions:
Use the projects
tool to list accessible projects:
# In your MCP client sonarqube.projects
The server automatically retries failed requests for transient errors:
Retry delays: 1s → 2s → 4s (capped at 10s)
If you continue to experience issues:
We welcome contributions! Please see our Contributing Guidelines for details.
git checkout -b feature/amazing-feature
)git commit -m 'Add amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by the SonarQube MCP Server community