PluginBench
MCP Server

io.github.mshegolev/sonarqube-mcp MCP Server

io.github.mshegolev/sonarqube-mcp

What is the io.github.mshegolev/sonarqube-mcp MCP server?

SonarQube MCP — projects, metrics, quality gate, issues, worst-metric ranking.

How to install io.github.mshegolev/sonarqube-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • SONARQUBE_URL
    required

    SonarQube URL (e.g. https://sonar.example.com or https://sonarcloud.io)

  • SONARQUBE_TOKEN
    required
    secret

    SonarQube authentication token (Bearer). Generate in: My Account → Security → Tokens.

  • SONARQUBE_SSL_VERIFY

    Verify SSL certificates (true/false). Set to 'false' for self-signed certs.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "sonarqube-mcp": {
      "command": "uvx",
      "args": [
        "sonarqube-mcp"
      ],
      "env": {
        "SONARQUBE_URL": "<YOUR_SONARQUBE_URL>",
        "SONARQUBE_TOKEN": "<YOUR_SONARQUBE_TOKEN>",
        "SONARQUBE_SSL_VERIFY": "<YOUR_SONARQUBE_SSL_VERIFY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "sonarqube-mcp": {
      "command": "uvx",
      "args": [
        "sonarqube-mcp"
      ],
      "env": {
        "SONARQUBE_URL": "<YOUR_SONARQUBE_URL>",
        "SONARQUBE_TOKEN": "<YOUR_SONARQUBE_TOKEN>",
        "SONARQUBE_SSL_VERIFY": "<YOUR_SONARQUBE_SSL_VERIFY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "sonarqube-mcp": {
      "command": "uvx",
      "args": [
        "sonarqube-mcp"
      ],
      "env": {
        "SONARQUBE_URL": "<YOUR_SONARQUBE_URL>",
        "SONARQUBE_TOKEN": "<YOUR_SONARQUBE_TOKEN>",
        "SONARQUBE_SSL_VERIFY": "<YOUR_SONARQUBE_SSL_VERIFY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "sonarqube-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "sonarqube-mcp"
      ],
      "env": {
        "SONARQUBE_URL": "<YOUR_SONARQUBE_URL>",
        "SONARQUBE_TOKEN": "<YOUR_SONARQUBE_TOKEN>",
        "SONARQUBE_SSL_VERIFY": "<YOUR_SONARQUBE_SSL_VERIFY>"
      }
    }
  }
}
Claude Code
claude mcp add sonarqube-mcp --env SONARQUBE_URL=<YOUR_SONARQUBE_URL> --env SONARQUBE_TOKEN=<YOUR_SONARQUBE_TOKEN> --env SONARQUBE_SSL_VERIFY=<YOUR_SONARQUBE_SSL_VERIFY> -- uvx sonarqube-mcp

Related MCP servers

Allure TestOps MCP — projects, launches, test cases, test results via REST API.

View repository →

GitLab CI/CD MCP — pipelines, jobs, schedules, MRs, files. Any GitLab (SaaS or self-hosted).

View repository →

Harbor Registry MCP — projects, repos, artifacts, storage reports, cleanup (with dry-run).

View repository →

Jaeger MCP — search traces, inspect spans, map service dependencies (read-only).

View repository →

Kibana/Elasticsearch MCP — log search, aggregations, index discovery, dashboards.

View repository →

Prometheus MCP — query metrics, inspect alerts, and explore scrape targets (read-only).

View repository →