.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/sonarsource/sonarqube-mcp-server
home/mcp-servers/sonarsource/sonarqube-mcp-server
sonarsource avatar

sonarqube-mcp-server

bysonarsource· 1 MCP server

Stars

608

Forks

90

Category

Code Review & Refactor

View on GitHub

TL;DR

The SonarQube MCP Server is a Model Context Protocol (MCP) server that enables seamless integration with SonarQube Server or Cloud for code quality and security. It also supports the analysis of code snippet directly within the agent context.

How to install sonarqube-mcp-server?

sonarsource/sonarqube-mcp-server
$git clone https://github.com/sonarsource/sonarqube-mcp-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install sonarqube-mcp-server by running `git clone https://github.com/sonarsource/sonarqube-mcp-server`, then use it for the current task and follow its documentation at https://github.com/sonarsource/sonarqube-mcp-server.

Files · 1

View on GitHub
README.md
1# SonarQube MCP Server
2 
3[![Build](https://github.com/SonarSource/sonarqube-mcp-server/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/SonarSource/sonarqube-mcp-server/actions/workflows/build.yml)
4[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=SonarSource_sonarqube-mcp-server&metric=alert_status&token=364a508a1e77096460f8571d8e66b41c99c95bea)](https://sonarcloud.io/summary/new_code?id=SonarSource_sonarqube-mcp-server)
5 
6The SonarQube MCP Server is a Model Context Protocol (MCP) server that enables seamless integration with SonarQube Server or Cloud for code quality and security.
7It also supports the analysis of code snippet directly within the agent context.
8 
9## Quick setup
10 
11<details>
12<summary>Security best practices</summary>
13 
14> 🔒 **Important**: Your SonarQube token is a sensitive credential. Follow these security practices:
15 
16**When using CLI commands:**
17- **Avoid hardcoding tokens** in command-line arguments – they get saved in shell history
18- **Use environment variables** – set tokens in environment variables before running commands
19 
20**When using configuration files:**
21- **Never commit tokens** to version control
22- **Use environment variable substitution** in config files when possible
23 
24</details>
25 
26### 🚀 Generate your configuration
27 
28The fastest way to get started is the **[SonarQube MCP Server Configuration Generator](https://mcp.sonarqube.com/config-generator.html)** – an interactive tool that produces a ready-to-use configuration for your preferred AI agent client.
29 
30### Manual setup
31 
32If you prefer to configure things yourself, the simplest method is to use our container image at [sonarsource/sonarqube-mcp](https://hub.docker.com/r/sonarsource/sonarqube-mcp/tags). Use `sonarsource/sonarqube-mcp` for automatic updates (with `--pull=always`), or pin to a version tag (e.g., `sonarsource/sonarqube-mcp:1.19.0.2785`) for reproducible deployments. Read below if you want to build it locally.
33 
34> **Note:** While the examples below use `docker`, any OCI-compatible container runtime works (e.g., Podman, nerdctl). Simply replace `docker` with your preferred tool.
35 
36<details>
37<summary>Antigravity</summary>
38 
39SonarQube MCP Server is available in the Antigravity MCP Store. Follow these instructions:
40 
411. Open the **Agent Side Panel**
422. Click the three dots (**...**) at the top right and select **MCP Servers**
433. Search for `SonarQube` and select **Install**
444. Provide the required SonarQube User token. You can also provide your organization key for SonarQube Cloud or the SonarQube URL if connecting to SonarQube Server.
45 
46For **SonarQube Cloud US**, set the URL to `https://sonarqube.us`.
47 
48Alternatively, you can manually configure the server via `mcp_config.json`:
49 
50* To connect with SonarQube Cloud:
51 
52In the Agent Side Panel, click the three dots (**...**) -> **MCP Store** -> **Manage MCP Servers** -> **View raw config**, and add the following:
53 
54```json
55{
56 "mcpServers": {
57 "sonarqube": {
58 "command": "docker",
59 "args": ["run", "--init", "--pull=always", "-i", "--rm", "-e", "SONARQUBE_TOKEN", "-e", "SONARQUBE_ORG", "sonarsource/sonarqube-mcp"],
60 "env": {
61 "SONARQUBE_TOKEN": "<YOUR_TOKEN>",
62 "SONARQUBE_ORG": "<YOUR_ORG>"
63 }
64 }
65 }
66}
67```
68 
69For **SonarQube Cloud US**, manually add `"SONARQUBE_URL": "https://sonarqube.us"` to the `env` section and `"-e", "SONARQUBE_URL"` to the `args` array.
70 
71* To connect with SonarQube Server:
72 
73```json
74{
75 "mcpServers": {
76 "sonarqube": {
77 "command": "docker",
78 "args": ["run", "--init", "--pull=always", "-i", "--rm", "-e", "SONARQUBE_TOKEN", "-e", "SONARQUBE_URL", "sonarsource/sonarqube-mcp"],
79 "env": {
80 "SONARQUBE_TOKEN": "<YOUR_USER_TOKEN>",
81 "SONARQUBE_URL": "<YOUR_SERVER_URL>"
82 }
83 }
84 }
85}
86```
87 
88</details>
89 
90<details>
91<summary>Claude Code</summary>
92 
93* To connect with SonarQube Cloud:
94 
95```bash
96claude mcp add sonarqube \
97 --env SONARQUBE_TOKEN=$SONAR_TOKEN \
98 --env SONARQUBE_ORG=

Preview

sonarsource/sonarqube-mcp-serversonarsource/sonarqube-mcp-server

# SonarQube MCP Server

[![Build](https://github.com/SonarSource/sonarqube-mcp-server/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/SonarSource/sonarqube-mcp

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=SonarSource_sonarqube-mcp-server&metric=alert_status&token=364a508a1e77096460f8

The SonarQube MCP Server is a Model Context Protocol (MCP) server that enables seamless integration with SonarQube Server or Cloud for code quality and security

Reposonarsource/sonarqube-mcp-server
TypeMCP Servers
CategoryCode Review & Refactor
UpdatedJul 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

MCPagentai

Related

6 picks
Type
  1. tirth8205 avatarcode-review-graphLocal-first knowledge graph for token-efficient code review through MCP and CLIMCP ServersJul 2026377k27k
  2. repowise-dev avatarrepowiseCodebase intelligence for AI coding agents — graph, git history, docs, decisions, code health.MCP ServersJul 202622k4.3k
  3. aashari avatarmcp-server-atlassian-bitbucketNode.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.MCP ServersMar 202612k159
  4. jamubc avatargemini-mcp-toolMCP server for Gemini CLI integrationMCP ServersJul 202611k2.3k
  5. giancarloerra avatarsocraticodeEnterprise-grade (40m+ LOC) codebase intelligence, zero-setup, local & private Plugin/Skill/Extension or MCP: hybrid semantic search, polyglot dependency graphs, symbol-level impact analysis & call-flow, interactive HTML viewer, cross-project & branch-aware search, DB/API/infra…MCP ServersJul 20269.7k3.2k
  6. chayan-1906 avatargithub-mcpProduction-ready Model Context Protocol server providing Claude with complete GitHub integration - comprehensive tools for repository management, branch operations, file handling, issue tracking, and collaboration features with OAuth 2.0 authentication and MongoDB persistence.MCP ServersJun 20267.5k5