Help us improve
Share bugs, ideas, or general feedback.
From developer-kit-tools
Connects to SonarQube for code quality analysis, retrieving project issues, metrics, and quality gates. Runs locally via Docker; requires SonarQube URL, organization, and token.
npx claudepluginhub giuseppe-trisciuoglio/developer-kit --plugin developer-kit-toolsCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"sonarqube-mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"SONARQUBE_TOKEN",
"-e",
"SONARQUBE_URL",
"-e",
"SONARQUBE_ORG",
"mcp/sonarqube"
],
"env": {
"SONARQUBE_ORG": "${SONARQUBE_ORG}",
"SONARQUBE_URL": "${SONARQUBE_URL}",
"SONARQUBE_TOKEN": "${SONARQUBE_TOKEN}"
}
}
}
}Replace placeholder values for: SONARQUBE_TOKEN
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
dockerCommand-line arguments passed to the server process
Environment variables set when the server starts
SONARQUBE_ORG=${SONARQUBE_ORG}SONARQUBE_URL=${SONARQUBE_URL}SONARQUBE_TOKEN=${SONARQUBE_TOKEN}Sensitive values you must provide — never committed to source control
Declared capabilities of this MCP server
Share bugs, ideas, or general feedback.